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 fe82edd commit 98d1e18
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 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: CheckSum
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
16 changes: 8 additions & 8 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>CheckSum</artifactId>
<artifactId>MyCheckSum</artifactId>
<version>0.0.4-SNAPSHOT</version>
<name>ref-java-cli</name>

Expand All @@ -29,7 +29,7 @@
</licenses>

<properties>
<mainClass>org.rrajesh1979.demo.CheckSum</mainClass>
<mainClass>org.rrajesh1979.demo.MyCheckSum</mainClass>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>17</java.version>
Expand Down Expand Up @@ -216,7 +216,7 @@
<configuration>
<attach>false</attach>
<appendAssemblyId>false</appendAssemblyId>
<finalName>CheckSum-${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,8 +340,8 @@
</execution>
</executions>
<configuration>
<imageName>CheckSum-${project.version}</imageName>
<mainClass>org.rrajesh1979.demo.CheckSum</mainClass>
<imageName>MyCheckSum-${project.version}</imageName>
<mainClass>org.rrajesh1979.demo.MyCheckSum</mainClass>
<buildArgs>
<buildArg>--no-fallback</buildArg>
<buildArg>-H:+ReportExceptionStackTraces</buildArg>
Expand Down Expand Up @@ -420,8 +420,8 @@
</github>
</release>
<distributions>
<CheckSum>
<name>CheckSum</name>
<MyCheckSum>
<name>MyCheckSum</name>
<type>NATIVE_IMAGE</type>
<artifacts>
<artifact>
Expand All @@ -445,7 +445,7 @@
<platform>osx-x86_64</platform>
</artifact>
</artifacts>
</CheckSum>
</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>CheckSum${executable-suffix}</destName>
<destName>MyCheckSum${executable-suffix}</destName>
</file>
</files>
</assembly>
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;

public class CheckSum {
public class MyCheckSum {
static String algorithm = "MD5";

public static void main(String[] args) {
Expand Down

0 comments on commit 98d1e18

Please sign in to comment.