Revize 28be3f78
Přidáno uživatelem Pavel Fidranský před více než 6 roky(ů)
sources/pom.xml | ||
---|---|---|
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 |
<groupId>cz.zcu.kiv</groupId> |
|
8 |
<artifactId>imiger</artifactId> |
|
9 |
<version>1.0-SNAPSHOT</version> |
|
10 |
<packaging>war</packaging> |
|
11 |
<build> |
|
12 |
<plugins> |
|
13 |
<plugin> |
|
14 |
<groupId>org.apache.maven.plugins</groupId> |
|
15 |
<artifactId>maven-compiler-plugin</artifactId> |
|
16 |
<configuration> |
|
17 |
<source>8</source> |
|
18 |
<target>8</target> |
|
19 |
</configuration> |
|
20 |
</plugin> |
|
21 |
<plugin> |
|
22 |
<groupId>org.apache.tomcat.maven</groupId> |
|
23 |
<artifactId>tomcat7-maven-plugin</artifactId> |
|
24 |
<version>2.2</version> |
|
25 |
</plugin> |
|
26 |
<plugin> |
|
27 |
<groupId>org.apache.maven.plugins</groupId> |
|
28 |
<artifactId>maven-war-plugin</artifactId> |
|
29 |
<configuration> |
|
30 |
<webXml>src\main\webapp\WEB-INF\web.xml</webXml> |
|
31 |
</configuration> |
|
32 |
</plugin> |
|
33 |
</plugins> |
|
34 |
</build> |
|
35 |
<dependencies> |
|
36 |
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin --> |
|
37 |
<dependency> |
|
38 |
<groupId>org.apache.maven.plugins</groupId> |
|
39 |
<artifactId>maven-compiler-plugin</artifactId> |
|
40 |
<version>3.7.0</version> |
|
41 |
</dependency> |
|
42 |
|
|
43 |
<dependency> |
|
44 |
<groupId>log4j</groupId> |
|
45 |
<artifactId>log4j</artifactId> |
|
46 |
<version>1.2.12</version> |
|
47 |
</dependency> |
|
48 |
<dependency> |
|
49 |
<groupId>commons-codec</groupId> |
|
50 |
<artifactId>commons-codec</artifactId> |
|
51 |
<version>1.3</version> |
|
52 |
</dependency> |
|
53 |
<dependency> |
|
54 |
<groupId>org.junit.jupiter</groupId> |
|
55 |
<artifactId>junit-jupiter-api</artifactId> |
|
56 |
<version>RELEASE</version> |
|
57 |
<scope>test</scope> |
|
58 |
</dependency> |
|
59 |
|
|
60 |
<dependency> |
|
61 |
<groupId>com.google.code.gson</groupId> |
|
62 |
<artifactId>gson</artifactId> |
|
63 |
<version>2.6.2</version> |
|
64 |
</dependency> |
|
65 |
|
|
66 |
<dependency> |
|
67 |
<groupId>javax.ejb</groupId> |
|
68 |
<artifactId>ejb-api</artifactId> |
|
69 |
<version>3.0</version> |
|
70 |
<scope>provided</scope> |
|
71 |
</dependency> |
|
72 |
|
|
73 |
<!-- https://mvnrepository.com/artifact/javax.jms/javax.jms-api --> |
|
74 |
<dependency> |
|
75 |
<groupId>javax.jms</groupId> |
|
76 |
<artifactId>javax.jms-api</artifactId> |
|
77 |
<version>2.0.1</version> |
|
78 |
</dependency> |
|
79 |
|
|
80 |
<!-- https://mvnrepository.com/artifact/javax.annotation/javax.annotation-api --> |
|
81 |
<dependency> |
|
82 |
<groupId>javax.annotation</groupId> |
|
83 |
<artifactId>javax.annotation-api</artifactId> |
|
84 |
<version>1.2</version> |
|
85 |
</dependency> |
|
86 |
<!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java --> |
|
87 |
<dependency> |
|
88 |
<groupId>org.seleniumhq.selenium</groupId> |
|
89 |
<artifactId>selenium-java</artifactId> |
|
90 |
<version>3.12.0</version> |
|
91 |
</dependency> |
|
92 |
<!-- https://mvnrepository.com/artifact/javax.persistence/persistence-api --> |
|
93 |
<dependency> |
|
94 |
<groupId>javax.persistence</groupId> |
|
95 |
<artifactId>persistence-api</artifactId> |
|
96 |
<version>1.0.2</version> |
|
97 |
</dependency> |
|
98 |
<!-- https://mvnrepository.com/artifact/javax.resource/javax.resource-api --> |
|
99 |
<dependency> |
|
100 |
<groupId>javax.resource</groupId> |
|
101 |
<artifactId>javax.resource-api</artifactId> |
|
102 |
<version>1.7</version> |
|
103 |
</dependency> |
|
104 |
<dependency> |
|
105 |
<groupId>javax.servlet</groupId> |
|
106 |
<artifactId>javax.servlet-api</artifactId> |
|
107 |
<version>3.1.0</version> |
|
108 |
<scope>provided</scope> |
|
109 |
</dependency> |
|
110 |
<!-- https://mvnrepository.com/artifact/javax.servlet.jsp/javax.servlet.jsp-api --> |
|
111 |
<dependency> |
|
112 |
<groupId>javax.servlet.jsp</groupId> |
|
113 |
<artifactId>javax.servlet.jsp-api</artifactId> |
|
114 |
<version>2.3.1</version> |
|
115 |
<scope>provided</scope> |
|
116 |
</dependency> |
|
117 |
<!-- https://mvnrepository.com/artifact/javax.transaction/jta --> |
|
118 |
<dependency> |
|
119 |
<groupId>javax.transaction</groupId> |
|
120 |
<artifactId>jta</artifactId> |
|
121 |
<version>1.1</version> |
|
122 |
</dependency> |
|
123 |
<!-- https://mvnrepository.com/artifact/junit/junit --> |
|
124 |
<dependency> |
|
125 |
<groupId>junit</groupId> |
|
126 |
<artifactId>junit</artifactId> |
|
127 |
<version>4.12</version> |
|
128 |
<scope>test</scope> |
|
129 |
</dependency> |
|
130 |
|
|
131 |
<!-- https://mvnrepository.com/artifact/aopalliance/aopalliance --> |
|
132 |
<dependency> |
|
133 |
<groupId>aopalliance</groupId> |
|
134 |
<artifactId>aopalliance</artifactId> |
|
135 |
<version>1.0</version> |
|
136 |
</dependency> |
|
137 |
|
|
138 |
<!-- https://mvnrepository.com/artifact/commons-beanutils/commons-beanutils --> |
|
139 |
<dependency> |
|
140 |
<groupId>commons-beanutils</groupId> |
|
141 |
<artifactId>commons-beanutils</artifactId> |
|
142 |
<version>1.9.3</version> |
|
143 |
</dependency> |
|
144 |
<!-- https://mvnrepository.com/artifact/commons-collections/commons-collections --> |
|
145 |
<dependency> |
|
146 |
<groupId>commons-collections</groupId> |
|
147 |
<artifactId>commons-collections</artifactId> |
|
148 |
<version>3.2.2</version> |
|
149 |
</dependency> |
|
150 |
<!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload --> |
|
151 |
<dependency> |
|
152 |
<groupId>commons-fileupload</groupId> |
|
153 |
<artifactId>commons-fileupload</artifactId> |
|
154 |
<version>1.3.3</version> |
|
155 |
</dependency> |
|
156 |
<!-- https://mvnrepository.com/artifact/commons-io/commons-io --> |
|
157 |
<dependency> |
|
158 |
<groupId>commons-io</groupId> |
|
159 |
<artifactId>commons-io</artifactId> |
|
160 |
<version>2.6</version> |
|
161 |
</dependency> |
|
162 |
<!-- https://mvnrepository.com/artifact/commons-lang/commons-lang --> |
|
163 |
<dependency> |
|
164 |
<groupId>commons-lang</groupId> |
|
165 |
<artifactId>commons-lang</artifactId> |
|
166 |
<version>2.6</version> |
|
167 |
</dependency> |
|
168 |
<!-- https://mvnrepository.com/artifact/commons-logging/commons-logging --> |
|
169 |
<dependency> |
|
170 |
<groupId>commons-logging</groupId> |
|
171 |
<artifactId>commons-logging</artifactId> |
|
172 |
<version>1.2</version> |
|
173 |
</dependency> |
|
174 |
|
|
175 |
<!-- https://mvnrepository.com/artifact/net.sf.ezmorph/ezmorph --> |
|
176 |
<dependency> |
|
177 |
<groupId>net.sf.ezmorph</groupId> |
|
178 |
<artifactId>ezmorph</artifactId> |
|
179 |
<version>1.0.4</version> |
|
180 |
</dependency> |
|
181 |
|
|
182 |
<!-- https://mvnrepository.com/artifact/com.google.inject/guice --> |
|
183 |
<dependency> |
|
184 |
<groupId>com.google.inject</groupId> |
|
185 |
<artifactId>guice</artifactId> |
|
186 |
<version>4.0</version> |
|
187 |
</dependency> |
|
188 |
|
|
189 |
<!-- https://mvnrepository.com/artifact/com.google.inject.extensions/guice-assistedinject --> |
|
190 |
<dependency> |
|
191 |
<groupId>com.google.inject.extensions</groupId> |
|
192 |
<artifactId>guice-assistedinject</artifactId> |
|
193 |
<version>3.0</version> |
|
194 |
</dependency> |
|
195 |
<!-- https://mvnrepository.com/artifact/org.ow2.asm/asm-debug-all --> |
|
196 |
<dependency> |
|
197 |
<groupId>org.ow2.asm</groupId> |
|
198 |
<artifactId>asm-debug-all</artifactId> |
|
199 |
<version>5.2</version> |
|
200 |
</dependency> |
|
201 |
<!-- https://mvnrepository.com/artifact/javax.inject/javax.inject --> |
|
202 |
<dependency> |
|
203 |
<groupId>javax.inject</groupId> |
|
204 |
<artifactId>javax.inject</artifactId> |
|
205 |
<version>1</version> |
|
206 |
</dependency> |
|
207 |
<!-- https://mvnrepository.com/artifact/jgrapht/jgrapht --> |
|
208 |
<dependency> |
|
209 |
<groupId>jgrapht</groupId> |
|
210 |
<artifactId>jgrapht</artifactId> |
|
211 |
<version>0.7.3</version> |
|
212 |
</dependency> |
|
213 |
<dependency> |
|
214 |
<groupId>net.sf.json-lib</groupId> |
|
215 |
<artifactId>json-lib</artifactId> |
|
216 |
<version>2.4</version> |
|
217 |
<classifier>jdk15</classifier> |
|
218 |
</dependency> |
|
219 |
|
|
220 |
<!-- https://mvnrepository.com/artifact/com.metaparadigm/json-rpc --> |
|
221 |
<dependency> |
|
222 |
<groupId>com.metaparadigm</groupId> |
|
223 |
<artifactId>json-rpc</artifactId> |
|
224 |
<version>1.0</version> |
|
225 |
</dependency> |
|
226 |
<!-- https://mvnrepository.com/artifact/com.google.code.findbugs/jsr305 --> |
|
227 |
<dependency> |
|
228 |
<groupId>com.google.code.findbugs</groupId> |
|
229 |
<artifactId>jsr305</artifactId> |
|
230 |
<version>3.0.2</version> |
|
231 |
</dependency> |
|
232 |
<!-- https://mvnrepository.com/artifact/jstl/jstl --> |
|
233 |
<dependency> |
|
234 |
<groupId>jstl</groupId> |
|
235 |
<artifactId>jstl</artifactId> |
|
236 |
<version>1.2</version> |
|
237 |
</dependency> |
|
238 |
<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java --> |
|
239 |
<dependency> |
|
240 |
<groupId>mysql</groupId> |
|
241 |
<artifactId>mysql-connector-java</artifactId> |
|
242 |
<version>5.1.6</version> |
|
243 |
</dependency> |
|
244 |
|
|
245 |
<!-- https://mvnrepository.com/artifact/regexp/regexp --> |
|
246 |
<dependency> |
|
247 |
<groupId>regexp</groupId> |
|
248 |
<artifactId>regexp</artifactId> |
|
249 |
<version>1.3</version> |
|
250 |
</dependency> |
|
251 |
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api --> |
|
252 |
<dependency> |
|
253 |
<groupId>org.slf4j</groupId> |
|
254 |
<artifactId>slf4j-api</artifactId> |
|
255 |
<version>1.7.25</version> |
|
256 |
</dependency> |
|
257 |
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-log4j12 --> |
|
258 |
<dependency> |
|
259 |
<groupId>org.slf4j</groupId> |
|
260 |
<artifactId>slf4j-log4j12</artifactId> |
|
261 |
<version>1.7.25</version> |
|
262 |
<scope>test</scope> |
|
263 |
</dependency> |
|
264 |
|
|
265 |
<dependency> |
|
266 |
<groupId>cz.zcu.kiv.comav</groupId> |
|
267 |
<artifactId>core</artifactId> |
|
268 |
<version>1.0.0</version> |
|
269 |
<scope>system</scope> |
|
270 |
<systemPath>${basedir}/src/main/webapp/WEB-INF/lib/cz.zcu.kiv.comav.core_1.0.0.201204091346.jar</systemPath> |
|
271 |
</dependency> |
|
272 |
<dependency> |
|
273 |
<groupId>cz.zcu.kiv.comav</groupId> |
|
274 |
<artifactId>entmm</artifactId> |
|
275 |
<version>1.0.0</version> |
|
276 |
<scope>system</scope> |
|
277 |
<systemPath>${basedir}/src/main/webapp/WEB-INF/lib/cz.zcu.kiv.comav.entmm_1.0.0.jar</systemPath> |
|
278 |
</dependency> |
|
279 |
<dependency> |
|
280 |
<groupId>cz.zcu.kiv.comav</groupId> |
|
281 |
<artifactId>libraries</artifactId> |
|
282 |
<version>1.0.0</version> |
|
283 |
<scope>system</scope> |
|
284 |
<systemPath>${basedir}/src/main/webapp/WEB-INF/lib/cz.zcu.kiv.comav.libraries_1.0.0.201204091346.jar</systemPath> |
|
285 |
</dependency> |
|
286 |
<dependency> |
|
287 |
<groupId>cz.zcu.kiv.comav.loaders</groupId> |
|
288 |
<artifactId>ejb3</artifactId> |
|
289 |
<version>1.0.0</version> |
|
290 |
<scope>system</scope> |
|
291 |
<systemPath>${basedir}/src/main/webapp/WEB-INF/lib/cz.zcu.kiv.comav.loaders.ejb3_1.0.0.201204091346.jar</systemPath> |
|
292 |
</dependency> |
|
293 |
<dependency> |
|
294 |
<groupId>cz.zcu.kiv.comav.loaders</groupId> |
|
295 |
<artifactId>osgi</artifactId> |
|
296 |
<version>1.0.0</version> |
|
297 |
<scope>system</scope> |
|
298 |
<systemPath>${basedir}/src/main/webapp/WEB-INF/lib/cz.zcu.kiv.comav.loaders.osgi_1.0.0.201204091346.jar</systemPath> |
|
299 |
</dependency> |
|
300 |
<dependency> |
|
301 |
<groupId>cz.zcu.kiv.comav.loaders</groupId> |
|
302 |
<artifactId>sofa2</artifactId> |
|
303 |
<version>1.0.0</version> |
|
304 |
<scope>system</scope> |
|
305 |
<systemPath>${basedir}/src/main/webapp/WEB-INF/lib/cz.zcu.kiv.comav.loaders.sofa2_1.0.0.201204091346.jar</systemPath> |
|
306 |
</dependency> |
|
307 |
<dependency> |
|
308 |
<groupId>cz.zcu.kiv.comav.loaders</groupId> |
|
309 |
<artifactId>template</artifactId> |
|
310 |
<version>1.0.0</version> |
|
311 |
<scope>system</scope> |
|
312 |
<systemPath>${basedir}/src/main/webapp/WEB-INF/lib/cz.zcu.kiv.comav.loaders.template_1.0.0.201204091346.jar</systemPath> |
|
313 |
</dependency> |
|
314 |
<dependency> |
|
315 |
<groupId>cz.zcu.kiv.comav.visualizations</groupId> |
|
316 |
<artifactId>jgraphbasic</artifactId> |
|
317 |
<version>1.0.0</version> |
|
318 |
<scope>system</scope> |
|
319 |
<systemPath>${basedir}/src/main/webapp/WEB-INF/lib/cz.zcu.kiv.comav.visualizations.jgraphbasic_1.0.0.201204091346.jar</systemPath> |
|
320 |
</dependency> |
|
321 |
</dependencies> |
|
322 |
|
|
323 |
<properties> |
|
324 |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
325 |
</properties> |
|
326 |
</project> |
Také k dispozici: Unified diff
added Maven POM