Compare commits

..

No commits in common. 'a247fde6bd3c4fd57f8281de6578a554eb62a238' and '5f2f60b038acadd0c43c9e0565bb05f9660ceb83' have entirely different histories.

  1. 7
      pom.xml
  2. 8
      src/main/java/de/kreth/property2java/processor/Format.java

@ -29,7 +29,7 @@
<dependency> <dependency>
<groupId>org.apache.commons</groupId> <groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId> <artifactId>commons-text</artifactId>
<version>1.10.0</version> <version>1.6</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>commons-cli</groupId> <groupId>commons-cli</groupId>
@ -120,15 +120,16 @@
<distributionManagement> <distributionManagement>
<snapshotRepository> <snapshotRepository>
<id>nexus-snapshots</id> <id>kreth.snapshots</id>
<url>https://nexus.kreth-development.de/repository/maven-snapshots/</url> <url>https://nexus.kreth-development.de/repository/maven-snapshots/</url>
</snapshotRepository> </snapshotRepository>
<repository> <repository>
<id>nexus-releases</id> <id>kreth.releases</id>
<url>https://nexus.kreth-development.de/repository/maven-releases/</url> <url>https://nexus.kreth-development.de/repository/maven-releases/</url>
</repository> </repository>
</distributionManagement> </distributionManagement>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>

@ -5,8 +5,8 @@ import java.util.PropertyResourceBundle;
public enum Format { public enum Format {
/** /**
* Offers a getString(UnaryOperator resourceFunction) method to access the * Offers a getString(UnaryOperator<String> resourceFunction) method to access
* String value * the String value
*/ */
WithUnaryOperatorParameter, WithUnaryOperatorParameter,
/** /**
@ -20,8 +20,8 @@ public enum Format {
*/ */
WithInnerPropertyLoader, WithInnerPropertyLoader,
/** /**
* Offers a static init(UnaryOperator resourceFunction) method to offer a * Offers a static init(UnaryOperator<String> resourceFunction) method to offer
* getText() method. The init method must be called before any getText() call. * a getText() method. The init method must be called before any getText() call.
*/ */
WithInitializer WithInitializer
} }

Loading…
Cancel
Save