Skip to content

Commit

Permalink
Changed version to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonMykolaienko committed Nov 11, 2017
1 parent 039c26c commit 113acce
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Changelog
All notable changes to this project will be documented in this file.

## [1.2.0] - [Unreleased]
## [1.2.0] - 11/12/2017
- Added support for batch converting via command line by pattern
- Fixed issue when input file not exists
- Fixed issue when output file must be placed into folder which haven't been created yet
Expand Down
36 changes: 18 additions & 18 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>

<name>xml2json</name>
<description>Simple tool for converting large XML-files to JSON or JSON to XML</description>

<groupId>com.fs</groupId>
<artifactId>xml2json</artifactId>
<version>1.2.0-SNAPSHOT</version>
<version>1.2.0</version>
<packaging>jar</packaging>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>

<!-- will be updated by profile -->
<platform>default</platform>
<fxBundle>windows.app</fxBundle>
</properties>

<developers>
<developer>
<name>Anton Mykolaienko</name>
Expand All @@ -29,7 +29,7 @@
</roles>
</developer>
</developers>

<dependencies>
<dependency>
<groupId>de.odysseus.staxon</groupId>
Expand Down Expand Up @@ -57,15 +57,15 @@
<artifactId>jackson-dataformat-xml</artifactId>
<version>2.9.2</version>
</dependency>

<!-- command line supoport -->
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.4</version>
</dependency>


<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
Expand Down Expand Up @@ -93,7 +93,7 @@
<artifactId>log4j-core</artifactId>
<version>2.9.1</version>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down Expand Up @@ -187,7 +187,7 @@
</execution>
</executions>
</plugin>

<plugin>
<groupId>com.zenjava</groupId>
<artifactId>javafx-maven-plugin</artifactId>
Expand Down Expand Up @@ -258,16 +258,16 @@
</plugin>
</plugins>
</build>


<profiles>
<profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>

<profile>
<id>windows</id>
<activation>
Expand All @@ -278,7 +278,7 @@
<properties>
<platform>windows</platform>
</properties>

<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -390,8 +390,8 @@
</properties>
</profile>
</profiles>


<reporting>
<plugins>
<plugin>
Expand All @@ -404,5 +404,5 @@
</plugin>
</plugins>
</reporting>

</project>

0 comments on commit 113acce

Please sign in to comment.