Skip to content

Commit 552c607

Browse files
committed
First commit, GeneXusJWT module + some tests and test resources
1 parent d291dc4 commit 552c607

File tree

147 files changed

+4223
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

147 files changed

+4223
-0
lines changed

gxjwt/pom.xml

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<parent>
7+
<groupId>com.genexus</groupId>
8+
<artifactId>parent</artifactId>
9+
<version>${revision}${changelist}</version>
10+
</parent>
11+
12+
<artifactId>gxjwt</artifactId>
13+
<name>GeneXus JWT</name>
14+
15+
<dependencies>
16+
<dependency>
17+
<groupId>com.auth0</groupId>
18+
<artifactId>java-jwt</artifactId>
19+
<version>4.0.0</version>
20+
</dependency>
21+
<dependency>
22+
<groupId>com.fasterxml.jackson.core</groupId>
23+
<artifactId>jackson-databind</artifactId>
24+
<version>${jackson.version}</version>
25+
</dependency>
26+
<dependency>
27+
<groupId>com.fasterxml.jackson.core</groupId>
28+
<artifactId>jackson-annotations</artifactId>
29+
<version>${jackson.version}</version>
30+
</dependency>
31+
<dependency>
32+
<groupId>com.fasterxml.jackson.core</groupId>
33+
<artifactId>jackson-core</artifactId>
34+
<version>${jackson.version}</version>
35+
</dependency>
36+
<dependency>
37+
<groupId>org.bouncycastle</groupId>
38+
<artifactId>bcpkix-jdk18on</artifactId>
39+
<version>${org.bouncycastle.version}</version>
40+
</dependency>
41+
<dependency>
42+
<groupId>org.bouncycastle</groupId>
43+
<artifactId>bcprov-jdk18on</artifactId>
44+
<version>${org.bouncycastle.version}</version>
45+
</dependency>
46+
<dependency>
47+
<groupId>commons-codec</groupId>
48+
<artifactId>commons-codec</artifactId>
49+
<version>1.11</version>
50+
</dependency>
51+
<dependency>
52+
<groupId>${project.groupId}</groupId>
53+
<artifactId>securityapicommons</artifactId>
54+
<version>${project.version}</version>
55+
</dependency>
56+
<dependency>
57+
<groupId>${project.groupId}</groupId>
58+
<artifactId>securityapicommons</artifactId>
59+
<type>test-jar</type>
60+
<version>${project.version}</version>
61+
<scope>test</scope>
62+
</dependency>
63+
</dependencies>
64+
65+
66+
<build>
67+
<finalName>GeneXusJWT</finalName>
68+
<plugins>
69+
<plugin>
70+
<groupId>org.apache.maven.plugins</groupId>
71+
<artifactId>maven-compiler-plugin</artifactId>
72+
<version>3.8.0</version>
73+
</plugin>
74+
</plugins>
75+
</build>
76+
77+
</project>

0 commit comments

Comments
 (0)