Joaquín Reñé
2024-11-07 9841314c7528049aab90bd990fdc5118467b398b
#4385 - update pom
1 files modified
changed files
securis/pom.xml patch | view | blame | history
securis/pom.xml
....@@ -9,46 +9,43 @@
99
1010 <description>CurisTEC Server Licenses</description>
1111
12
- <properties>
13
- <maven.version>3.10.0</maven.version>
14
- </properties>
12
+ <organization>
13
+ <name>CURISTEC</name>
14
+ </organization>
1515
16
+ <properties>
17
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18
+ <lifecycle.version>1.0.0</lifecycle.version>
19
+ <maven.version>3.10.0</maven.version>
20
+ <maven.resources.overwrite>true</maven.resources.overwrite>
21
+ <maven.compiler.debug>true</maven.compiler.debug>
22
+ <maven.compiler.source>11</maven.compiler.source>
23
+ <maven.compiler.target>11</maven.compiler.target>
24
+ <maven-assembly-plugin.version>3.4.2</maven-assembly-plugin.version>
25
+ <ant.version>2.7.7</ant.version>
26
+ <java.version>11</java.version>
27
+
28
+ <ci.version>0.0.2-SNAPSHOT</ci.version>
29
+ <securis.client.version>1.2.0</securis.client.version>
30
+
31
+ <lang.version>2.6</lang.version>
32
+ <javax.version>3.1.0</javax.version>
33
+ <resteasy.version>3.0.13.Final</resteasy.version>
34
+ <log4j.version>2.17.2</log4j.version>
35
+ <httpclient.version>4.5.6</httpclient.version>
36
+ <jackson.version>2.4.3</jackson.version>
37
+ <weld.version>2.2.9.Final</weld.version>
38
+ <jandex.version>1.2.2.Final</jandex.version>
39
+ <hibernate.version>4.3.6.Final</hibernate.version>
40
+ <http.version>4.4-beta1</http.version>
41
+ <cdi.version>1.2</cdi.version>
42
+ </properties>
43
+
1644 <dependencies>
17
- <dependency>
18
- <groupId>commons-lang</groupId>
19
- <artifactId>commons-lang</artifactId>
20
- <version>2.6</version>
21
- </dependency>
22
- <dependency>
23
- <groupId>javax.servlet</groupId>
24
- <artifactId>javax.servlet-api</artifactId>
25
- <version>3.1.0</version>
26
- <scope>provided</scope>
27
- </dependency>
28
- <dependency>
29
- <groupId>org.jboss.resteasy</groupId>
30
- <artifactId>resteasy-multipart-provider</artifactId>
31
- <version>3.0.13.Final</version>
32
- </dependency>
33
- <dependency>
34
- <groupId>org.jboss.resteasy</groupId>
35
- <artifactId>resteasy-jaxrs</artifactId>
36
- <version>3.0.13.Final</version>
37
- </dependency>
38
- <dependency>
39
- <groupId>org.jboss.weld.servlet</groupId>
40
- <artifactId>weld-servlet</artifactId>
41
- <version>2.2.9.Final</version>
42
- </dependency>
43
- <dependency>
44
- <groupId>org.jboss</groupId>
45
- <artifactId>jandex</artifactId>
46
- <version>1.2.2.Final</version>
47
- </dependency>
4845 <dependency>
4946 <groupId>net.curisit.integrity</groupId>
5047 <artifactId>commons-curis</artifactId>
51
- <version>3.3.0</version>
48
+ <version>${ci.version}</version>
5249 <exclusions>
5350 <exclusion>
5451 <groupId>org.apache.logging.log4j</groupId>
....@@ -65,14 +62,9 @@
6562 </exclusions>
6663 </dependency>
6764 <dependency>
68
- <groupId>org.hibernate</groupId>
69
- <artifactId>hibernate-entitymanager</artifactId>
70
- <version>4.3.6.Final</version>
71
- </dependency>
72
- <dependency>
7365 <groupId>net.curisit</groupId>
7466 <artifactId>securis-client</artifactId>
75
- <version>1.2.0</version>
67
+ <version>${securis.client.version}</version>
7668 <exclusions>
7769 <exclusion>
7870 <artifactId>jackson-databind</artifactId>
....@@ -80,20 +72,42 @@
8072 </exclusion>
8173 </exclusions>
8274 </dependency>
75
+
8376 <dependency>
84
- <groupId>org.apache.httpcomponents</groupId>
85
- <artifactId>httpclient</artifactId>
86
- <version>4.4-beta1</version>
77
+ <groupId>org.apache.logging.log4j</groupId>
78
+ <artifactId>log4j-web</artifactId>
79
+ <version>${log4j.version}</version>
8780 </dependency>
8881 <dependency>
89
- <groupId>org.apache.httpcomponents</groupId>
90
- <artifactId>httpmime</artifactId>
91
- <version>4.4-beta1</version>
82
+ <groupId>commons-lang</groupId>
83
+ <artifactId>commons-lang</artifactId>
84
+ <version>2.6</version>
85
+ </dependency>
86
+ <dependency>
87
+ <groupId>javax.servlet</groupId>
88
+ <artifactId>javax.servlet-api</artifactId>
89
+ <version>${javax.version}</version>
90
+ <scope>provided</scope>
91
+ </dependency>
92
+ <dependency>
93
+ <groupId>org.jboss.resteasy</groupId>
94
+ <artifactId>resteasy-multipart-provider</artifactId>
95
+ <version>${resteasy.version}</version>
96
+ </dependency>
97
+ <dependency>
98
+ <groupId>org.jboss.resteasy</groupId>
99
+ <artifactId>resteasy-jaxrs</artifactId>
100
+ <version>${resteasy.version}</version>
101
+ </dependency>
102
+ <dependency>
103
+ <groupId>org.jboss.resteasy</groupId>
104
+ <artifactId>resteasy-cdi</artifactId>
105
+ <version>${resteasy.version}</version>
92106 </dependency>
93107 <dependency>
94108 <groupId>org.jboss.resteasy</groupId>
95109 <artifactId>resteasy-jackson2-provider</artifactId>
96
- <version>3.0.13.Final</version>
110
+ <version>${resteasy.version}</version>
97111 <exclusions>
98112 <exclusion>
99113 <artifactId>jackson-core</artifactId>
....@@ -105,10 +119,32 @@
105119 </exclusion>
106120 </exclusions>
107121 </dependency>
122
+
108123 <dependency>
109
- <groupId>org.apache.logging.log4j</groupId>
110
- <artifactId>log4j-web</artifactId>
111
- <version>2.17.2</version>
124
+ <groupId>org.jboss.weld.servlet</groupId>
125
+ <artifactId>weld-servlet</artifactId>
126
+ <version>${weld.version}</version>
127
+ </dependency>
128
+ <dependency>
129
+ <groupId>org.jboss</groupId>
130
+ <artifactId>jandex</artifactId>
131
+ <version>${jandex.version}</version>
132
+ </dependency>
133
+
134
+ <dependency>
135
+ <groupId>org.hibernate</groupId>
136
+ <artifactId>hibernate-entitymanager</artifactId>
137
+ <version>${hibernate.version}</version>
138
+ </dependency>
139
+ <dependency>
140
+ <groupId>org.apache.httpcomponents</groupId>
141
+ <artifactId>httpclient</artifactId>
142
+ <version>${http.version}</version>
143
+ </dependency>
144
+ <dependency>
145
+ <groupId>org.apache.httpcomponents</groupId>
146
+ <artifactId>httpmime</artifactId>
147
+ <version>${http.version}</version>
112148 </dependency>
113149 <dependency>
114150 <groupId>javax.enterprise</groupId>
....@@ -117,19 +153,14 @@
117153 <scope>provided</scope>
118154 </dependency>
119155 <dependency>
120
- <groupId>org.jboss.resteasy</groupId>
121
- <artifactId>resteasy-cdi</artifactId>
122
- <version>3.0.13.Final</version>
123
- </dependency>
124
- <dependency>
125156 <groupId>com.fasterxml.jackson.jaxrs</groupId>
126157 <artifactId>jackson-jaxrs-json-provider</artifactId>
127
- <version>2.4.1</version>
158
+ <version>${jackson.version}</version>
128159 </dependency>
129160 <dependency>
130161 <groupId>com.fasterxml.jackson.core</groupId>
131162 <artifactId>jackson-annotations</artifactId>
132
- <version>2.4.1</version>
163
+ <version>${jackson.version}</version>
133164 </dependency>
134165 </dependencies>
135166 <build>
....@@ -139,13 +170,13 @@
139170 <artifactId>maven-compiler-plugin</artifactId>
140171 <version>${maven.version}</version>
141172 <configuration>
142
- <source>1.8</source>
143
- <target>1.8</target>
173
+ <source>11</source>
174
+ <target>11</target>
144175 </configuration>
145176 </plugin>
146177 <plugin>
147178 <artifactId>maven-assembly-plugin</artifactId>
148
- <version>2.4</version>
179
+ <version>${maven-assembly-plugin.version}</version>
149180 <configuration>
150181 <formats>
151182 <format>zip</format>