Skip to content

Commit 469a962

Browse files
committed
Revert this:
Remove implementation of deprecated Cryptography data types Issue: 105496
1 parent 4ee6e96 commit 469a962

22 files changed

+2021
-1
lines changed

gxcryptocommon/pom.xml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
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+
7+
<parent>
8+
<groupId>com.genexus</groupId>
9+
<artifactId>parent</artifactId>
10+
<version>${revision}${changelist}</version>
11+
</parent>
12+
13+
<artifactId>gxcryptocommon</artifactId>
14+
<name>GeneXus Cryptography</name>
15+
16+
<dependencies>
17+
<dependency>
18+
<groupId>${project.groupId}</groupId>
19+
<artifactId>gxcommon</artifactId>
20+
<version>${project.version}</version>
21+
</dependency>
22+
<dependency>
23+
<groupId>org.bouncycastle</groupId>
24+
<artifactId>bcpkix-jdk18on</artifactId>
25+
<version>${org.bouncycastle.version}</version>
26+
</dependency>
27+
<dependency>
28+
<groupId>org.apache.santuario</groupId>
29+
<artifactId>xmlsec</artifactId>
30+
<version>2.2.3</version>
31+
<exclusions>
32+
<exclusion>
33+
<groupId>*</groupId>
34+
<artifactId>*</artifactId>
35+
</exclusion>
36+
</exclusions>
37+
</dependency>
38+
<dependency>
39+
<groupId>org.slf4j</groupId>
40+
<artifactId>slf4j-nop</artifactId>
41+
<version>1.7.7</version>
42+
<exclusions>
43+
<exclusion>
44+
<groupId>*</groupId>
45+
<artifactId>*</artifactId>
46+
</exclusion>
47+
</exclusions>
48+
</dependency>
49+
</dependencies>
50+
51+
<build>
52+
<finalName>gxcryptocommon</finalName>
53+
</build>
54+
</project>

0 commit comments

Comments
 (0)