refactor: package name

This commit is contained in:
Daniel Langbein 2024-11-19 19:22:32 +01:00
parent fdf4d9a89c
commit d682b08642
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002
3 changed files with 4 additions and 4 deletions

View File

@ -34,7 +34,7 @@ java {
application { application {
// Define the main class for the application. // Define the main class for the application.
mainClass = "org.example.App" mainClass = "de.uni_marburg.powersort.App"
} }
tasks.named<Test>("test") { tasks.named<Test>("test") {

View File

@ -1,11 +1,11 @@
/* /*
* This source file was generated by the Gradle 'init' task * This source file was generated by the Gradle 'init' task
*/ */
package org.example; package de.uni_marburg.powersort;
public class App { public class App {
public String getGreeting() { public String getGreeting() {
return "Hello World!"; return "Let's bring Powersort to Java!";
} }
public static void main(String[] args) { public static void main(String[] args) {

View File

@ -1,7 +1,7 @@
/* /*
* This source file was generated by the Gradle 'init' task * This source file was generated by the Gradle 'init' task
*/ */
package org.example; package de.uni_marburg.powersort;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*; import static org.junit.jupiter.api.Assertions.*;