Projekt

Obecné

Profil

« Předchozí | Další » 

Revize 4722abdd

Přidáno uživatelem Tomáš Šimandl před více než 6 roky(ů)

cleanup pom.xml

Zobrazit rozdíly:

sources/pom.xml
15 15
            <plugin>
16 16
                <groupId>org.apache.maven.plugins</groupId>
17 17
                <artifactId>maven-compiler-plugin</artifactId>
18
                <version>3.8.0</version>
18 19
                <configuration>
19 20
                    <source>8</source>
20 21
                    <target>8</target>
......
28 29
            <plugin>
29 30
                <groupId>org.apache.maven.plugins</groupId>
30 31
                <artifactId>maven-war-plugin</artifactId>
32
                <version>3.2.2</version>
31 33
                <configuration>
32 34
                    <webXml>src\main\webapp\WEB-INF\web.xml</webXml>
33 35
                </configuration>
......
40 42
        <dependency>
41 43
            <groupId>org.apache.maven.plugins</groupId>
42 44
            <artifactId>maven-compiler-plugin</artifactId>
43
            <version>3.7.0</version>
45
            <version>3.8.0</version>
44 46
        </dependency>
45 47

  
48
        <!-- https://mvnrepository.com/artifact/com.google.code.findbugs/jsr305 -->
46 49
        <dependency>
47
            <groupId>log4j</groupId>
48
            <artifactId>log4j</artifactId>
49
            <version>1.2.12</version>
50
            <groupId>com.google.code.findbugs</groupId>
51
            <artifactId>jsr305</artifactId>
52
            <version>3.0.2</version>
50 53
        </dependency>
54
        <!-- https://mvnrepository.com/artifact/log4j/log4j -->
51 55
        <dependency>
52
            <groupId>commons-codec</groupId>
53
            <artifactId>commons-codec</artifactId>
54
            <version>1.3</version>
56
            <groupId>log4j</groupId>
57
            <artifactId>log4j</artifactId>
58
            <version>1.2.17</version>
55 59
        </dependency>
60
        <!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload -->
56 61
        <dependency>
57
            <groupId>org.junit.jupiter</groupId>
58
            <artifactId>junit-jupiter-api</artifactId>
59
            <version>RELEASE</version>
60
            <scope>test</scope>
62
            <groupId>commons-fileupload</groupId>
63
            <artifactId>commons-fileupload</artifactId>
64
            <version>1.3.3</version>
61 65
        </dependency>
62

  
66
        <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
63 67
        <dependency>
64
            <groupId>com.google.code.gson</groupId>
65
            <artifactId>gson</artifactId>
66
            <version>2.6.2</version>
68
            <groupId>commons-io</groupId>
69
            <artifactId>commons-io</artifactId>
70
            <version>2.6</version>
67 71
        </dependency>
68 72

  
69
        <dependency>
70
            <groupId>javax.ejb</groupId>
71
            <artifactId>ejb-api</artifactId>
72
            <version>3.0</version>
73
            <scope>provided</scope>
74
        </dependency>
75 73

  
76
        <!-- https://mvnrepository.com/artifact/javax.jms/javax.jms-api -->
77
        <dependency>
78
            <groupId>javax.jms</groupId>
79
            <artifactId>javax.jms-api</artifactId>
80
            <version>2.0.1</version>
81
        </dependency>
82 74

  
83
        <!-- https://mvnrepository.com/artifact/javax.annotation/javax.annotation-api -->
84
        <dependency>
85
            <groupId>javax.annotation</groupId>
86
            <artifactId>javax.annotation-api</artifactId>
87
            <version>1.2</version>
88
        </dependency>
89
        <!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
90
        <dependency>
91
            <groupId>org.seleniumhq.selenium</groupId>
92
            <artifactId>selenium-java</artifactId>
93
            <version>3.12.0</version>
94
        </dependency>
95
        <!-- https://mvnrepository.com/artifact/javax.persistence/persistence-api -->
96
        <dependency>
97
            <groupId>javax.persistence</groupId>
98
            <artifactId>persistence-api</artifactId>
99
            <version>1.0.2</version>
100
        </dependency>
101
        <!-- https://mvnrepository.com/artifact/javax.resource/javax.resource-api -->
102
        <dependency>
103
            <groupId>javax.resource</groupId>
104
            <artifactId>javax.resource-api</artifactId>
105
            <version>1.7</version>
106
        </dependency>
75
        <!-- Servlets and JSP-->
76
        <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
107 77
        <dependency>
108 78
            <groupId>javax.servlet</groupId>
109 79
            <artifactId>javax.servlet-api</artifactId>
......
117 87
            <version>2.3.1</version>
118 88
            <scope>provided</scope>
119 89
        </dependency>
120
        <!-- https://mvnrepository.com/artifact/javax.transaction/jta -->
121
        <dependency>
122
            <groupId>javax.transaction</groupId>
123
            <artifactId>jta</artifactId>
124
            <version>1.1</version>
125
        </dependency>
126
        <!-- https://mvnrepository.com/artifact/junit/junit -->
90
        <!-- https://mvnrepository.com/artifact/jstl/jstl -->
127 91
        <dependency>
128
            <groupId>junit</groupId>
129
            <artifactId>junit</artifactId>
130
            <version>4.12</version>
131
            <scope>test</scope>
92
            <groupId>jstl</groupId>
93
            <artifactId>jstl</artifactId>
94
            <version>1.2</version>
132 95
        </dependency>
133 96

  
134
        <!-- https://mvnrepository.com/artifact/aopalliance/aopalliance -->
135
        <dependency>
136
            <groupId>aopalliance</groupId>
137
            <artifactId>aopalliance</artifactId>
138
            <version>1.0</version>
139
        </dependency>
140 97

  
141
        <!-- https://mvnrepository.com/artifact/commons-beanutils/commons-beanutils -->
142
        <dependency>
143
            <groupId>commons-beanutils</groupId>
144
            <artifactId>commons-beanutils</artifactId>
145
            <version>1.9.3</version>
146
        </dependency>
147
        <!-- https://mvnrepository.com/artifact/commons-collections/commons-collections -->
148
        <dependency>
149
            <groupId>commons-collections</groupId>
150
            <artifactId>commons-collections</artifactId>
151
            <version>3.2.2</version>
152
        </dependency>
153
        <!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload -->
154
        <dependency>
155
            <groupId>commons-fileupload</groupId>
156
            <artifactId>commons-fileupload</artifactId>
157
            <version>1.3.3</version>
158
        </dependency>
159
        <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
160
        <dependency>
161
            <groupId>commons-io</groupId>
162
            <artifactId>commons-io</artifactId>
163
            <version>2.6</version>
164
        </dependency>
165
        <!-- https://mvnrepository.com/artifact/commons-lang/commons-lang -->
98

  
99
        <!-- testing -->
100
        <!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
166 101
        <dependency>
167
            <groupId>commons-lang</groupId>
168
            <artifactId>commons-lang</artifactId>
169
            <version>2.6</version>
102
            <groupId>org.seleniumhq.selenium</groupId>
103
            <artifactId>selenium-java</artifactId>
104
            <version>3.12.0</version>
170 105
        </dependency>
171
        <!-- https://mvnrepository.com/artifact/commons-logging/commons-logging -->
106
        <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
172 107
        <dependency>
173
            <groupId>commons-logging</groupId>
174
            <artifactId>commons-logging</artifactId>
175
            <version>1.2</version>
108
            <groupId>org.junit.jupiter</groupId>
109
            <artifactId>junit-jupiter-api</artifactId>
110
            <version>5.3.2</version>
111
            <scope>test</scope>
176 112
        </dependency>
177 113

  
178
        <!-- https://mvnrepository.com/artifact/net.sf.ezmorph/ezmorph -->
179
        <dependency>
180
            <groupId>net.sf.ezmorph</groupId>
181
            <artifactId>ezmorph</artifactId>
182
            <version>1.0.4</version>
183
        </dependency>
184 114

  
185
        <!-- https://mvnrepository.com/artifact/com.google.inject/guice -->
186
        <dependency>
187
            <groupId>com.google.inject</groupId>
188
            <artifactId>guice</artifactId>
189
            <version>4.0</version>
190
        </dependency>
191 115

  
192
        <!-- https://mvnrepository.com/artifact/com.google.inject.extensions/guice-assistedinject -->
193
        <dependency>
194
            <groupId>com.google.inject.extensions</groupId>
195
            <artifactId>guice-assistedinject</artifactId>
196
            <version>3.0</version>
197
        </dependency>
198
        <!-- https://mvnrepository.com/artifact/org.ow2.asm/asm-debug-all -->
199
        <dependency>
200
            <groupId>org.ow2.asm</groupId>
201
            <artifactId>asm-debug-all</artifactId>
202
            <version>5.2</version>
203
        </dependency>
204
        <!-- https://mvnrepository.com/artifact/javax.inject/javax.inject -->
205
        <dependency>
206
            <groupId>javax.inject</groupId>
207
            <artifactId>javax.inject</artifactId>
208
            <version>1</version>
209
        </dependency>
210
        <!-- https://mvnrepository.com/artifact/jgrapht/jgrapht -->
116
        <!-- Libs fro JSON parsing and creating -->
117
        <!-- TODO use only one lib (gson)-->
118
        <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
211 119
        <dependency>
212
            <groupId>jgrapht</groupId>
213
            <artifactId>jgrapht</artifactId>
214
            <version>0.7.3</version>
120
            <groupId>com.google.code.gson</groupId>
121
            <artifactId>gson</artifactId>
122
            <version>2.8.5</version>
215 123
        </dependency>
124
        <!-- https://mvnrepository.com/artifact/net.sf.json-lib/json-lib -->
216 125
        <dependency>
217 126
            <groupId>net.sf.json-lib</groupId>
218 127
            <artifactId>json-lib</artifactId>
219 128
            <version>2.4</version>
220 129
            <classifier>jdk15</classifier>
221 130
        </dependency>
222

  
223
        <!-- https://mvnrepository.com/artifact/com.metaparadigm/json-rpc -->
224
        <dependency>
225
            <groupId>com.metaparadigm</groupId>
226
            <artifactId>json-rpc</artifactId>
227
            <version>1.0</version>
228
        </dependency>
229
        <!-- https://mvnrepository.com/artifact/com.google.code.findbugs/jsr305 -->
230
        <dependency>
231
            <groupId>com.google.code.findbugs</groupId>
232
            <artifactId>jsr305</artifactId>
233
            <version>3.0.2</version>
234
        </dependency>
235
        <!-- https://mvnrepository.com/artifact/jstl/jstl -->
131
        <!-- https://mvnrepository.com/artifact/org.json/json -->
236 132
        <dependency>
237
            <groupId>jstl</groupId>
238
            <artifactId>jstl</artifactId>
239
            <version>1.2</version>
133
            <groupId>org.json</groupId>
134
            <artifactId>json</artifactId>
135
            <version>20180813</version>
240 136
        </dependency>
137

  
138

  
139

  
140
        <!-- Database -->
241 141
        <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
242 142
        <dependency>
243 143
            <groupId>mysql</groupId>
244 144
            <artifactId>mysql-connector-java</artifactId>
245 145
            <version>5.1.6</version>
246 146
        </dependency>
247

  
248
        <!-- https://mvnrepository.com/artifact/regexp/regexp -->
249
        <dependency>
250
            <groupId>regexp</groupId>
251
            <artifactId>regexp</artifactId>
252
            <version>1.3</version>
253
        </dependency>
254
        <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
255
        <dependency>
256
            <groupId>org.slf4j</groupId>
257
            <artifactId>slf4j-api</artifactId>
258
            <version>1.7.25</version>
259
        </dependency>
260
        <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-log4j12 -->
261
        <dependency>
262
            <groupId>org.slf4j</groupId>
263
            <artifactId>slf4j-log4j12</artifactId>
264
            <version>1.7.25</version>
265
            <scope>test</scope>
266
        </dependency>
267

  
268
        <dependency>
269
            <groupId>cz.zcu.kiv.comav</groupId>
270
            <artifactId>core</artifactId>
271
            <version>1.0.0</version>
272
            <scope>system</scope>
273
            <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/cz.zcu.kiv.comav.core_1.0.0.201204091346.jar</systemPath>
274
        </dependency>
275
        <dependency>
276
            <groupId>cz.zcu.kiv.comav</groupId>
277
            <artifactId>entmm</artifactId>
278
            <version>1.0.0</version>
279
            <scope>system</scope>
280
            <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/cz.zcu.kiv.comav.entmm_1.0.0.jar</systemPath>
281
        </dependency>
282
        <dependency>
283
            <groupId>cz.zcu.kiv.comav</groupId>
284
            <artifactId>libraries</artifactId>
285
            <version>1.0.0</version>
286
            <scope>system</scope>
287
            <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/cz.zcu.kiv.comav.libraries_1.0.0.201204091346.jar</systemPath>
288
        </dependency>
289
        <dependency>
290
            <groupId>cz.zcu.kiv.comav.loaders</groupId>
291
            <artifactId>ejb3</artifactId>
292
            <version>1.0.0</version>
293
            <scope>system</scope>
294
            <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/cz.zcu.kiv.comav.loaders.ejb3_1.0.0.201204091346.jar</systemPath>
295
        </dependency>
296
        <dependency>
297
            <groupId>cz.zcu.kiv.comav.loaders</groupId>
298
            <artifactId>osgi</artifactId>
299
            <version>1.0.0</version>
300
            <scope>system</scope>
301
            <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/cz.zcu.kiv.comav.loaders.osgi_1.0.0.201204091346.jar</systemPath>
302
        </dependency>
303
        <dependency>
304
            <groupId>cz.zcu.kiv.comav.loaders</groupId>
305
            <artifactId>sofa2</artifactId>
306
            <version>1.0.0</version>
307
            <scope>system</scope>
308
            <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/cz.zcu.kiv.comav.loaders.sofa2_1.0.0.201204091346.jar</systemPath>
309
        </dependency>
310
        <dependency>
311
            <groupId>cz.zcu.kiv.comav.loaders</groupId>
312
            <artifactId>template</artifactId>
313
            <version>1.0.0</version>
314
            <scope>system</scope>
315
            <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/cz.zcu.kiv.comav.loaders.template_1.0.0.201204091346.jar</systemPath>
316
        </dependency>
317
        <dependency>
318
            <groupId>cz.zcu.kiv.comav.visualizations</groupId>
319
            <artifactId>jgraphbasic</artifactId>
320
            <version>1.0.0</version>
321
            <scope>system</scope>
322
            <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/cz.zcu.kiv.comav.visualizations.jgraphbasic_1.0.0.201204091346.jar</systemPath>
323
        </dependency>
324 147
    </dependencies>
325 148
  
326 149
    <properties>

Také k dispozici: Unified diff