Skip to content

Commit 113acce

Browse files
Changed version to 1.2.0
1 parent 039c26c commit 113acce

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4-
## [1.2.0] - [Unreleased]
4+
## [1.2.0] - 11/12/2017
55
- Added support for batch converting via command line by pattern
66
- Fixed issue when input file not exists
77
- Fixed issue when output file must be placed into folder which haven't been created yet

pom.xml

+18-18
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<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">
33
<modelVersion>4.0.0</modelVersion>
4-
4+
55
<name>xml2json</name>
66
<description>Simple tool for converting large XML-files to JSON or JSON to XML</description>
7-
7+
88
<groupId>com.fs</groupId>
99
<artifactId>xml2json</artifactId>
10-
<version>1.2.0-SNAPSHOT</version>
10+
<version>1.2.0</version>
1111
<packaging>jar</packaging>
12-
12+
1313
<properties>
1414
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1515
<maven.compiler.source>1.8</maven.compiler.source>
1616
<maven.compiler.target>1.8</maven.compiler.target>
17-
17+
1818
<!-- will be updated by profile -->
1919
<platform>default</platform>
2020
<fxBundle>windows.app</fxBundle>
2121
</properties>
22-
22+
2323
<developers>
2424
<developer>
2525
<name>Anton Mykolaienko</name>
@@ -29,7 +29,7 @@
2929
</roles>
3030
</developer>
3131
</developers>
32-
32+
3333
<dependencies>
3434
<dependency>
3535
<groupId>de.odysseus.staxon</groupId>
@@ -57,15 +57,15 @@
5757
<artifactId>jackson-dataformat-xml</artifactId>
5858
<version>2.9.2</version>
5959
</dependency>
60-
60+
6161
<!-- command line supoport -->
6262
<dependency>
6363
<groupId>commons-cli</groupId>
6464
<artifactId>commons-cli</artifactId>
6565
<version>1.4</version>
6666
</dependency>
6767

68-
68+
6969
<dependency>
7070
<groupId>org.apache.commons</groupId>
7171
<artifactId>commons-lang3</artifactId>
@@ -93,7 +93,7 @@
9393
<artifactId>log4j-core</artifactId>
9494
<version>2.9.1</version>
9595
</dependency>
96-
96+
9797
<dependency>
9898
<groupId>junit</groupId>
9999
<artifactId>junit</artifactId>
@@ -187,7 +187,7 @@
187187
</execution>
188188
</executions>
189189
</plugin>
190-
190+
191191
<plugin>
192192
<groupId>com.zenjava</groupId>
193193
<artifactId>javafx-maven-plugin</artifactId>
@@ -258,16 +258,16 @@
258258
</plugin>
259259
</plugins>
260260
</build>
261-
262-
261+
262+
263263
<profiles>
264264
<profile>
265265
<id>default</id>
266266
<activation>
267267
<activeByDefault>true</activeByDefault>
268268
</activation>
269269
</profile>
270-
270+
271271
<profile>
272272
<id>windows</id>
273273
<activation>
@@ -278,7 +278,7 @@
278278
<properties>
279279
<platform>windows</platform>
280280
</properties>
281-
281+
282282
<build>
283283
<plugins>
284284
<plugin>
@@ -390,8 +390,8 @@
390390
</properties>
391391
</profile>
392392
</profiles>
393-
394-
393+
394+
395395
<reporting>
396396
<plugins>
397397
<plugin>
@@ -404,5 +404,5 @@
404404
</plugin>
405405
</plugins>
406406
</reporting>
407-
407+
408408
</project>

0 commit comments

Comments
 (0)