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

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

Loading…
Cancel
Save