1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
3
3
<modelVersion >4.0.0</modelVersion >
4
-
4
+
5
5
<name >xml2json</name >
6
6
<description >Simple tool for converting large XML-files to JSON or JSON to XML</description >
7
-
7
+
8
8
<groupId >com.fs</groupId >
9
9
<artifactId >xml2json</artifactId >
10
- <version >1.2.0-SNAPSHOT </version >
10
+ <version >1.2.0</version >
11
11
<packaging >jar</packaging >
12
-
12
+
13
13
<properties >
14
14
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
15
15
<maven .compiler.source>1.8</maven .compiler.source>
16
16
<maven .compiler.target>1.8</maven .compiler.target>
17
-
17
+
18
18
<!-- will be updated by profile -->
19
19
<platform >default</platform >
20
20
<fxBundle >windows.app</fxBundle >
21
21
</properties >
22
-
22
+
23
23
<developers >
24
24
<developer >
25
25
<name >Anton Mykolaienko</name >
29
29
</roles >
30
30
</developer >
31
31
</developers >
32
-
32
+
33
33
<dependencies >
34
34
<dependency >
35
35
<groupId >de.odysseus.staxon</groupId >
57
57
<artifactId >jackson-dataformat-xml</artifactId >
58
58
<version >2.9.2</version >
59
59
</dependency >
60
-
60
+
61
61
<!-- command line supoport -->
62
62
<dependency >
63
63
<groupId >commons-cli</groupId >
64
64
<artifactId >commons-cli</artifactId >
65
65
<version >1.4</version >
66
66
</dependency >
67
67
68
-
68
+
69
69
<dependency >
70
70
<groupId >org.apache.commons</groupId >
71
71
<artifactId >commons-lang3</artifactId >
93
93
<artifactId >log4j-core</artifactId >
94
94
<version >2.9.1</version >
95
95
</dependency >
96
-
96
+
97
97
<dependency >
98
98
<groupId >junit</groupId >
99
99
<artifactId >junit</artifactId >
187
187
</execution >
188
188
</executions >
189
189
</plugin >
190
-
190
+
191
191
<plugin >
192
192
<groupId >com.zenjava</groupId >
193
193
<artifactId >javafx-maven-plugin</artifactId >
258
258
</plugin >
259
259
</plugins >
260
260
</build >
261
-
262
-
261
+
262
+
263
263
<profiles >
264
264
<profile >
265
265
<id >default</id >
266
266
<activation >
267
267
<activeByDefault >true</activeByDefault >
268
268
</activation >
269
269
</profile >
270
-
270
+
271
271
<profile >
272
272
<id >windows</id >
273
273
<activation >
278
278
<properties >
279
279
<platform >windows</platform >
280
280
</properties >
281
-
281
+
282
282
<build >
283
283
<plugins >
284
284
<plugin >
390
390
</properties >
391
391
</profile >
392
392
</profiles >
393
-
394
-
393
+
394
+
395
395
<reporting >
396
396
<plugins >
397
397
<plugin >
404
404
</plugin >
405
405
</plugins >
406
406
</reporting >
407
-
407
+
408
408
</project >
0 commit comments