Compare commits

..

3 Commits

Author SHA1 Message Date
Markus Kreth a247fde6bd fixed javadoc and changed repository id. 3 years ago
Markus Kreth 3a9fd82ecd Merge remote-tracking branch 'origin/dependabot/maven/org.apache.commons-commons-text-1.10.0' 3 years ago
dependabot[bot] 00409cc6e9
Bump commons-text from 1.6 to 1.10.0 3 years ago
  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.6</version> <version>1.10.0</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>commons-cli</groupId> <groupId>commons-cli</groupId>
@ -120,16 +120,15 @@
<distributionManagement> <distributionManagement>
<snapshotRepository> <snapshotRepository>
<id>kreth.snapshots</id> <id>nexus-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>kreth.releases</id> <id>nexus-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<String> resourceFunction) method to access * Offers a getString(UnaryOperator resourceFunction) method to access the
* the String value * String value
*/ */
WithUnaryOperatorParameter, WithUnaryOperatorParameter,
/** /**
@ -20,8 +20,8 @@ public enum Format {
*/ */
WithInnerPropertyLoader, WithInnerPropertyLoader,
/** /**
* Offers a static init(UnaryOperator<String> resourceFunction) method to offer * Offers a static init(UnaryOperator resourceFunction) method to offer a
* a getText() method. The init method must be called before any getText() call. * getText() method. The init method must be called before any getText() call.
*/ */
WithInitializer WithInitializer
} }

Loading…
Cancel
Save