Merge pull request #19 from gnh1201/worker-java

Java base worker (Experimental)
This commit is contained in:
Namhyeon Go 2024-03-07 16:57:09 +09:00 committed by GitHub
commit 9ac4801118
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View File

@ -32,7 +32,7 @@ dependencies {
application {
// Define the main class for the application.
mainClass = 'com.catswords.caterpillar.App'
mainClass = 'com.github.gnh1201.caterpillar.App'
}
tasks.named('test') {

View File

@ -1,4 +1,4 @@
package com.catswords.caterpillar;
package com.github.gnh1201.caterpillar;
public class App {
public static void main(String[] args) {

View File

@ -1,4 +1,4 @@
package com.catswords.caterpillar;
package com.github.gnh1201.caterpillar;
import java.io.BufferedReader;
import java.io.DataOutputStream;

View File

@ -1,4 +1,4 @@
package com.catswords.caterpillar;
package com.github.gnh1201.caterpillar;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;