Skip to content

Commit

Permalink
🚀 Renamed app to mychecksum
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 4, 2022
1 parent 55d7148 commit 86a2c32
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion jreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#

project:
name: MyCheckSum
name: mychecksum
description: Reference Java CLI program - Jumpstart Repo Template
longDescription: Reference Java CLI program - Jumpstart Repo Template
website: https://github.com/rrajesh1979/ref-java-cli
Expand Down
12 changes: 6 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>

<groupId>org.rrajesh1979.demo</groupId>
<artifactId>MyCheckSum</artifactId>
<artifactId>mychecksum</artifactId>
<version>0.0.4</version>
<name>ref-java-cli</name>

Expand Down Expand Up @@ -216,7 +216,7 @@
<configuration>
<attach>false</attach>
<appendAssemblyId>false</appendAssemblyId>
<finalName>MyCheckSum-${project.version}-${os.detected.classifier}</finalName>
<finalName>mychecksum-${project.version}-${os.detected.classifier}</finalName>
<outputDirectory>${app.distribution.directory}</outputDirectory>
<workDirectory>${project.build.directory}/assembly/work</workDirectory>
<skipAssembly>true</skipAssembly>
Expand Down Expand Up @@ -340,7 +340,7 @@
</execution>
</executions>
<configuration>
<imageName>MyCheckSum-${project.version}</imageName>
<imageName>mychecksum-${project.version}</imageName>
<mainClass>org.rrajesh1979.demo.MyCheckSum</mainClass>
<buildArgs>
<buildArg>--no-fallback</buildArg>
Expand Down Expand Up @@ -420,8 +420,8 @@
</github>
</release>
<distributions>
<MyCheckSum>
<name>MyCheckSum</name>
<mychecksum>
<name>mychecksum</name>
<type>NATIVE_IMAGE</type>
<artifacts>
<artifact>
Expand All @@ -445,7 +445,7 @@
<platform>osx-x86_64</platform>
</artifact>
</artifacts>
</MyCheckSum>
</mychecksum>
</distributions>
</jreleaser>
</configuration>
Expand Down
2 changes: 1 addition & 1 deletion src/main/assembly/assembly.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<file>
<source>${project.build.directory}/${project.artifactId}-${project.version}${executable-suffix}</source>
<outputDirectory>./bin</outputDirectory>
<destName>MyCheckSum${executable-suffix}</destName>
<destName>mychecksum${executable-suffix}</destName>
</file>
</files>
</assembly>

0 comments on commit 86a2c32

Please sign in to comment.