Skip to content

Commit

Permalink
Fixed #123 - Upgraded outdated dependency: native2ascii-maven-plugin …
Browse files Browse the repository at this point in the history
…(2.0.0 instead of 1.0-beta-1)
  • Loading branch information
dzc34 committed Jan 23, 2018
1 parent e0be716 commit 5ab4081
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ none
- [#119 - Upgraded maven-javadoc-plugin (3.0.0 instead of 3.0.0-M1)](https://github.com/Asqatasun/Contrast-Finder/issues/119)
- [#120 - Upgraded jacoco-maven-plugin (0.8.0 instead of 0.7.9)](https://github.com/Asqatasun/Contrast-Finder/issues/120)
- [#121 - Upgraded maven-checkstyle-plugin (3.0.0 instead of 2.17)](https://github.com/Asqatasun/Contrast-Finder/issues/121)


- [#123 - Upgraded native2ascii-maven-plugin (2.0.0 instead of 1.0-beta-1)](https://github.com/Asqatasun/Contrast-Finder/issues/123)

### Bug
none
Expand Down
8 changes: 5 additions & 3 deletions webapp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<!-- Plugin Versions -->
<maven-war-plugin.version>3.2.0</maven-war-plugin.version>
<maven-dependency-plugin.version>3.0.2</maven-dependency-plugin.version>
<native2ascii-maven-plugin.version>1.0-beta-1</native2ascii-maven-plugin.version>
<native2ascii-maven-plugin.version>2.0.0</native2ascii-maven-plugin.version>
<yuicompressor-maven-plugin.version>1.5.1</yuicompressor-maven-plugin.version>
<jdeb.version>1.6</jdeb.version>
</properties>
Expand Down Expand Up @@ -98,11 +98,13 @@
<execution>
<id>native2ascii-utf8-properties</id>
<goals>
<goal>native2ascii</goal>
<goal>resources</goal>
</goals>
<phase>process-resources</phase><!-- default -->
<configuration>
<encoding>UTF8</encoding>
<src>src/main/resources</src>
<!-- <encoding>${project.build.sourceEncoding}</encoding> --> <!-- default -->
<srcDir>src/main/resources</srcDir>
<includes>
<include>**/*_utf8*.properties</include>
</includes>
Expand Down

0 comments on commit 5ab4081

Please sign in to comment.