Skip to content

Commit

Permalink
Prepare for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
Morten Haraldsen committed Dec 27, 2023
1 parent 0c66315 commit d731eef
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ limitations under the License.
<groupId>com.ethlo.time</groupId>
<packaging>bundle</packaging>
<artifactId>itu</artifactId>
<version>1.7.4</version>
<version>1.7.5-SNAPSHOT</version>
<name>Internet Time Utility</name>
<description>Very fast date-time parser and formatter - RFC 3339 (ISO 8601 profile) and W3C format
</description>
Expand Down Expand Up @@ -155,7 +155,7 @@ limitations under the License.
<plugin>
<groupId>com.github.wvengen</groupId>
<artifactId>proguard-maven-plugin</artifactId>
<version>2.5.2</version>
<version>2.6.0</version>
<executions>
<execution>
<phase>package</phase>
Expand All @@ -167,11 +167,13 @@ limitations under the License.
<configuration>
<obfuscate>true</obfuscate>
<injar>${project.build.finalName}.jar</injar>
<outjar>${project.build.finalName}.jar</outjar>
<outjar>${project.build.finalName}-small.jar</outjar>
<outputDirectory>${project.build.directory}</outputDirectory>
<proguardInclude>${basedir}/proguard.conf</proguardInclude>
<options>
<option>-dontnote</option>
<option>-allowaccessmodification</option>
<option>-repackageclasses</option>
<option>-flattenpackagehierarchy a</option>
<option>-keep public class com.ethlo.time.ITU { *; }</option>
<option>-keep public class com.ethlo.time.DateTime { *; }</option>
<option>-keep public class com.ethlo.time.Field { *; }</option>
Expand Down

0 comments on commit d731eef

Please sign in to comment.