Projekt

Obecné

Profil

Stáhnout (12.8 KB) Statistiky
| Větev: | Tag: | Revize:
1 28be3f78 Pavel Fidranský
<?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 f11864a9 Pavel Fidranský
12 28be3f78 Pavel Fidranský
    <build>
13 f11864a9 Pavel Fidranský
        <finalName>${project.artifactId}</finalName>
14 28be3f78 Pavel Fidranský
        <plugins>
15
            <plugin>
16
                <groupId>org.apache.maven.plugins</groupId>
17
                <artifactId>maven-compiler-plugin</artifactId>
18
                <configuration>
19
                    <source>8</source>
20
                    <target>8</target>
21
                </configuration>
22
            </plugin>
23
            <plugin>
24
                <groupId>org.apache.tomcat.maven</groupId>
25
                <artifactId>tomcat7-maven-plugin</artifactId>
26
                <version>2.2</version>
27
            </plugin>
28
            <plugin>
29
                <groupId>org.apache.maven.plugins</groupId>
30
                <artifactId>maven-war-plugin</artifactId>
31
                <configuration>
32
                    <webXml>src\main\webapp\WEB-INF\web.xml</webXml>
33
                </configuration>
34
            </plugin>
35
        </plugins>
36
    </build>
37 f11864a9 Pavel Fidranský
38 28be3f78 Pavel Fidranský
    <dependencies>
39
        <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin -->
40
        <dependency>
41
            <groupId>org.apache.maven.plugins</groupId>
42
            <artifactId>maven-compiler-plugin</artifactId>
43
            <version>3.7.0</version>
44
        </dependency>
45
46
        <dependency>
47
            <groupId>log4j</groupId>
48
            <artifactId>log4j</artifactId>
49
            <version>1.2.12</version>
50
        </dependency>
51
        <dependency>
52
            <groupId>commons-codec</groupId>
53
            <artifactId>commons-codec</artifactId>
54
            <version>1.3</version>
55
        </dependency>
56
        <dependency>
57
            <groupId>org.junit.jupiter</groupId>
58
            <artifactId>junit-jupiter-api</artifactId>
59
            <version>RELEASE</version>
60
            <scope>test</scope>
61
        </dependency>
62
63
        <dependency>
64
            <groupId>com.google.code.gson</groupId>
65
            <artifactId>gson</artifactId>
66
            <version>2.6.2</version>
67
        </dependency>
68
69
        <dependency>
70
            <groupId>javax.ejb</groupId>
71
            <artifactId>ejb-api</artifactId>
72
            <version>3.0</version>
73
            <scope>provided</scope>
74
        </dependency>
75
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
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>
107
        <dependency>
108
            <groupId>javax.servlet</groupId>
109
            <artifactId>javax.servlet-api</artifactId>
110
            <version>3.1.0</version>
111
            <scope>provided</scope>
112
        </dependency>
113
        <!-- https://mvnrepository.com/artifact/javax.servlet.jsp/javax.servlet.jsp-api -->
114
        <dependency>
115
            <groupId>javax.servlet.jsp</groupId>
116
            <artifactId>javax.servlet.jsp-api</artifactId>
117
            <version>2.3.1</version>
118
            <scope>provided</scope>
119
        </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 -->
127
        <dependency>
128
            <groupId>junit</groupId>
129
            <artifactId>junit</artifactId>
130
            <version>4.12</version>
131
            <scope>test</scope>
132
        </dependency>
133
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
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 -->
166
        <dependency>
167
            <groupId>commons-lang</groupId>
168
            <artifactId>commons-lang</artifactId>
169
            <version>2.6</version>
170
        </dependency>
171
        <!-- https://mvnrepository.com/artifact/commons-logging/commons-logging -->
172
        <dependency>
173
            <groupId>commons-logging</groupId>
174
            <artifactId>commons-logging</artifactId>
175
            <version>1.2</version>
176
        </dependency>
177
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
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
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 -->
211
        <dependency>
212
            <groupId>jgrapht</groupId>
213
            <artifactId>jgrapht</artifactId>
214
            <version>0.7.3</version>
215
        </dependency>
216
        <dependency>
217
            <groupId>net.sf.json-lib</groupId>
218
            <artifactId>json-lib</artifactId>
219
            <version>2.4</version>
220
            <classifier>jdk15</classifier>
221
        </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 -->
236
        <dependency>
237
            <groupId>jstl</groupId>
238
            <artifactId>jstl</artifactId>
239
            <version>1.2</version>
240
        </dependency>
241
        <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
242
        <dependency>
243
            <groupId>mysql</groupId>
244
            <artifactId>mysql-connector-java</artifactId>
245
            <version>5.1.6</version>
246
        </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
    </dependencies>
325
  
326
    <properties>
327 f11864a9 Pavel Fidranský
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
328
    </properties>
329 28be3f78 Pavel Fidranský
</project>