Skip to content

Commit 849bf01

Browse files
committed
Change groupId
I didn't understand the naming conventions right away, it seems I should add a subdomain like this.
1 parent a2d7585 commit 849bf01

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

Diff for: pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55

6-
<groupId>dev.sevora</groupId>
6+
<groupId>dev.sevora.simplecalculator</groupId>
77
<artifactId>simple-calculator</artifactId>
88
<version>1.5.0-SNAPSHOT</version>
99

@@ -18,7 +18,7 @@
1818
<maven.compiler.target>11</maven.compiler.target>
1919
<javafx.version>11.0.2</javafx.version>
2020
<javafx.plugin.version>0.0.4</javafx.plugin.version>
21-
<main.class>dev.sevora.Main</main.class>
21+
<main.class>dev.sevora.simplecalculator.Main</main.class>
2222
</properties>
2323

2424
<dependencies>

Diff for: src/main/java/dev/sevora/App.java renamed to src/main/java/dev/sevora/simplecalculator/App.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package dev.sevora;
1+
package dev.sevora.simplecalculator;
22

33
import javafx.application.Application;
44
import javafx.event.ActionEvent;

Diff for: src/main/java/dev/sevora/Calculator.java renamed to src/main/java/dev/sevora/simplecalculator/Calculator.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package dev.sevora;
1+
package dev.sevora.simplecalculator;
22

33
/**
44
* The simple calculator for the application.

Diff for: src/main/java/dev/sevora/Keybindings.java renamed to src/main/java/dev/sevora/simplecalculator/Keybindings.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package dev.sevora;
1+
package dev.sevora.simplecalculator;
22

33
import java.util.Map;
44
import static java.util.Map.entry;

Diff for: src/main/java/dev/sevora/Layout.java renamed to src/main/java/dev/sevora/simplecalculator/Layout.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package dev.sevora;
1+
package dev.sevora.simplecalculator;
22

33
import javafx.animation.PauseTransition;
44
import javafx.geometry.Insets;

Diff for: src/main/java/dev/sevora/Main.java renamed to src/main/java/dev/sevora/simplecalculator/Main.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package dev.sevora;
1+
package dev.sevora.simplecalculator;
22

33
/**
44
* Runs the application, I needed a class without "extends Application" as the main class

Diff for: src/test/java/dev/sevora/AppTest.java renamed to src/test/java/dev/sevora/simplecalculator/AppTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package dev.sevora;
1+
package dev.sevora.simplecalculator;
22

33
import static org.junit.Assert.assertTrue;
44

Diff for: src/test/java/dev/sevora/CalculatorTest.java renamed to src/test/java/dev/sevora/simplecalculator/CalculatorTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package dev.sevora;
1+
package dev.sevora.simplecalculator;
22

33
import static org.junit.Assert.assertTrue;
44

0 commit comments

Comments
 (0)