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