Skip to content

Commit 6618fa5

Browse files
sgramponegenexusbot
authored andcommitted
Cherry pick branch 'genexuslabs:securityapicommons' into beta
1 parent dd66d97 commit 6618fa5

Some content is hidden

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

41 files changed

+4936
-0
lines changed

gxcryptography/pom.xml

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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>gxcryptography</artifactId>
13+
<name>GeneXus Cryptography</name>
14+
15+
<dependencies>
16+
<dependency>
17+
<groupId>org.bouncycastle</groupId>
18+
<artifactId>bcpkix-jdk18on</artifactId>
19+
<version>${org.bouncycastle.version}</version>
20+
</dependency>
21+
<dependency>
22+
<groupId>org.bouncycastle</groupId>
23+
<artifactId>bcprov-jdk18on</artifactId>
24+
<version>${org.bouncycastle.version}</version>
25+
</dependency>
26+
<dependency>
27+
<groupId>${project.groupId}</groupId>
28+
<artifactId>securityapicommons</artifactId>
29+
<version>${project.version}</version>
30+
</dependency>
31+
<dependency>
32+
<groupId>${project.groupId}</groupId>
33+
<artifactId>securityapicommons</artifactId>
34+
<type>test-jar</type>
35+
<version>${revision}${changelist}</version>
36+
<scope>test</scope>
37+
</dependency>
38+
</dependencies>
39+
<build>
40+
<finalName>GeneXusCryptography</finalName>
41+
<plugins>
42+
<plugin>
43+
<groupId>org.apache.maven.plugins</groupId>
44+
<artifactId>maven-compiler-plugin</artifactId>
45+
<version>3.8.0</version>
46+
<configuration>
47+
<source>1.8</source>
48+
<target>1.8</target>
49+
</configuration>
50+
</plugin>
51+
<plugin>
52+
<groupId>org.apache.maven.plugins</groupId>
53+
<artifactId>maven-jar-plugin</artifactId>
54+
<version>3.1.1</version>
55+
<executions>
56+
<execution>
57+
<goals>
58+
<goal>test-jar</goal>
59+
</goals>
60+
</execution>
61+
</executions>
62+
</plugin>
63+
</plugins>
64+
</build>
65+
66+
</project>

0 commit comments

Comments
 (0)