-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpom.xml
More file actions
82 lines (70 loc) · 2.3 KB
/
pom.xml
File metadata and controls
82 lines (70 loc) · 2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>imixs-security</artifactId>
<groupId>org.imixs.security</groupId>
<version>3.0.2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>imixs-oidc</artifactId>
<name>Imixs-OIDC for Jakarta EE 10</name>
<description>
A OpenID Connect library for Jakarta EE 10 Application server.
</description>
<url>https://github.com/imixs/imixs-workflow</url>
<organization>
<name>Imixs Software Solutions GmbH</name>
<url>http://www.imixs.com</url>
</organization>
<inceptionYear>2017</inceptionYear>
<developers>
<developer>
<id>rsoika</id>
<name>Ralph Soika</name>
<email>ralph.soika@imixs.com</email>
<url>http://blog.imixs.org/</url>
<organization>Imixs Software Solutions GmbH</organization>
<organizationUrl>http://www.imixs.com</organizationUrl>
<roles>
<role>developer</role>
<role>testing</role>
</roles>
<timezone>2</timezone>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:imixs/imixs-security.git</connection>
<developerConnection>scm:git:git@github.com:imixs/imixs-security.git</developerConnection>
<url>https://github.com/imixs/imixs-security/</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/imixs/imixs-security/issues</url>
</issueManagement>
<mailingLists>
<!-- no mailing lists supported -->
</mailingLists>
<licenses>
<license>
<name>Eclipse Public License - v 2.0</name>
<url>https://www.eclipse.org/legal/epl-2.0/</url>
<distribution>repo</distribution>
<comments>All the results of thi project are subject to the Eclipse Public License - v 2.0 licensing model. </comments>
</license>
</licenses>
<dependencies>
<!-- Microprofile -->
<dependency>
<groupId>org.eclipse.microprofile</groupId>
<artifactId>microprofile</artifactId>
<version>${microprofile.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.nimbusds</groupId>
<artifactId>nimbus-jose-jwt</artifactId>
<version>10.3</version>
</dependency>
</dependencies>
</project>