mirror of
https://gitlab.uni-marburg.de/langbeid/powersort.git
synced 2025-01-21 19:50:35 +01:00
refactor: package name
This commit is contained in:
parent
fdf4d9a89c
commit
d682b08642
@ -34,7 +34,7 @@ java {
|
||||
|
||||
application {
|
||||
// Define the main class for the application.
|
||||
mainClass = "org.example.App"
|
||||
mainClass = "de.uni_marburg.powersort.App"
|
||||
}
|
||||
|
||||
tasks.named<Test>("test") {
|
||||
|
@ -1,11 +1,11 @@
|
||||
/*
|
||||
* This source file was generated by the Gradle 'init' task
|
||||
*/
|
||||
package org.example;
|
||||
package de.uni_marburg.powersort;
|
||||
|
||||
public class App {
|
||||
public String getGreeting() {
|
||||
return "Hello World!";
|
||||
return "Let's bring Powersort to Java!";
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* 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 static org.junit.jupiter.api.Assertions.*;
|
Loading…
x
Reference in New Issue
Block a user