File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/main/java/org/example Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ plugins {
33 id(" application" )
44}
55
6- group = " io.github.noah_devtech "
6+ group = " org.example "
77version = " 1.0-SNAPSHOT"
88
99repositories {
@@ -48,7 +48,7 @@ dependencies {
4848}
4949
5050application {
51- mainClass.set(" io.github.noah_devtech .Main" )
51+ mainClass.set(" org.example .Main" )
5252 applicationDefaultJvmArgs =
5353 listOf (
5454 " --add-exports=java.desktop/sun.awt=ALL-UNNAMED" ,
Original file line number Diff line number Diff line change 1- package io . github . noah_devtech ;
1+ package org . example ;
22
33import processing .core .PApplet ;
44
55
66public class Main extends PApplet {
77 public static void main (String [] args ) {
8- PApplet .main ("io.github.noah_devtech.Main" );
8+ PApplet .main (Main . class . getName () );
99 }
1010
1111 @ Override
You can’t perform that action at this time.
0 commit comments