Skip to content

Commit 7b4e179

Browse files
committed
update package
1 parent d66c2b2 commit 7b4e179

24 files changed

Lines changed: 26 additions & 26 deletions

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ java {
4040

4141
application {
4242
// Define the main class for the application.
43-
mainClass = 'io.github.project516.NumberGuessingGame.Main'
43+
mainClass = 'dev.project516.NumberGuessingGame.Main'
4444
}
4545

4646
compileJava.dependsOn spotlessApply
@@ -57,7 +57,7 @@ spotless {
5757
jar {
5858
manifest {
5959
attributes(
60-
'Main-Class': 'io.github.project516.NumberGuessingGame.Main'
60+
'Main-Class': 'dev.project516.NumberGuessingGame.Main'
6161
)
6262
}
6363
}

app/src/main/java/io/github/project516/NumberGuessingGame/CheckGuess.java renamed to app/src/main/java/dev/project516/NumberGuessingGame/CheckGuess.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// SPDX-License-Identifier: GPL-3.0-or-later
44

5-
package io.github.project516.NumberGuessingGame;
5+
package dev.project516.NumberGuessingGame;
66

77
/**
88
* Validates user guesses in the Number Guessing Game. This class ensures that user input falls

app/src/main/java/io/github/project516/NumberGuessingGame/DebugInfo.java renamed to app/src/main/java/dev/project516/NumberGuessingGame/DebugInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// SPDX-License-Identifier: GPL-3.0-or-later
44

5-
package io.github.project516.NumberGuessingGame;
5+
package dev.project516.NumberGuessingGame;
66

77
/**
88
* Provides debugging information for the Number Guessing Game. This class displays system

app/src/main/java/io/github/project516/NumberGuessingGame/GUI.java renamed to app/src/main/java/dev/project516/NumberGuessingGame/GUI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// SPDX-License-Identifier: GPL-3.0-or-later
44

5-
package io.github.project516.NumberGuessingGame;
5+
package dev.project516.NumberGuessingGame;
66

77
import java.awt.*;
88
import java.awt.event.*;

app/src/main/java/io/github/project516/NumberGuessingGame/GameInfo.java renamed to app/src/main/java/dev/project516/NumberGuessingGame/GameInfo.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// SPDX-License-Identifier: GPL-3.0-or-later
44

5-
package io.github.project516.NumberGuessingGame;
5+
package dev.project516.NumberGuessingGame;
66

77
/**
88
* Provides information about the Number Guessing Game application. This class contains methods to
@@ -42,6 +42,6 @@ String projectURL() {
4242
* @return the online Javadoc URL
4343
*/
4444
String onlineJavadoc() {
45-
return "https://project516.github.io/NumberGuessingGame";
45+
return "https://project516.dev/NumberGuessingGame";
4646
}
4747
}

app/src/main/java/io/github/project516/NumberGuessingGame/GameLogic.java renamed to app/src/main/java/dev/project516/NumberGuessingGame/GameLogic.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// SPDX-License-Identifier: GPL-3.0-or-later
44

5-
package io.github.project516.NumberGuessingGame;
5+
package dev.project516.NumberGuessingGame;
66

77
import java.util.List;
88

app/src/main/java/io/github/project516/NumberGuessingGame/HighScore.java renamed to app/src/main/java/dev/project516/NumberGuessingGame/HighScore.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// SPDX-License-Identifier: GPL-3.0-or-later
44

5-
package io.github.project516.NumberGuessingGame;
5+
package dev.project516.NumberGuessingGame;
66

77
/**
88
* Represents a single high score entry in the Number Guessing Game. Each entry contains a username

app/src/main/java/io/github/project516/NumberGuessingGame/HighScoreManager.java renamed to app/src/main/java/dev/project516/NumberGuessingGame/HighScoreManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// SPDX-License-Identifier: GPL-3.0-or-later
44

5-
package io.github.project516.NumberGuessingGame;
5+
package dev.project516.NumberGuessingGame;
66

77
import java.io.File;
88
import java.io.FileInputStream;

app/src/main/java/io/github/project516/NumberGuessingGame/Main.java renamed to app/src/main/java/dev/project516/NumberGuessingGame/Main.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// SPDX-License-Identifier: GPL-3.0-or-later
44

5-
package io.github.project516.NumberGuessingGame;
5+
package dev.project516.NumberGuessingGame;
66

77
import javax.swing.SwingUtilities;
88

app/src/main/java/io/github/project516/NumberGuessingGame/NumberGuessingGame.java renamed to app/src/main/java/dev/project516/NumberGuessingGame/NumberGuessingGame.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// SPDX-License-Identifier: GPL-3.0-or-later
44

5-
package io.github.project516.NumberGuessingGame;
5+
package dev.project516.NumberGuessingGame;
66

77
/**
88
* Console-based Number Guessing Game implementation. This class manages the console version of the

0 commit comments

Comments
 (0)