File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,6 +14,11 @@ plugins{
1414}
1515
1616group = rootProject.group
17+ tasks.withType<JavaExec > {
18+ systemProperty(" processing.version" , version)
19+ systemProperty(" processing.revision" , " 1296" )
20+ }
21+
1722
1823repositories{
1924 mavenCentral()
@@ -93,6 +98,8 @@ dependencies {
9398 implementation(libs.compottie)
9499 implementation(libs.kaml)
95100}
101+
102+ // LEGACY ACTIONS
96103tasks.register<Copy >(" copyCore" ){
97104 dependsOn(project(" :core" ).tasks.jar)
98105 from(project(" :core" ).layout.buildDirectory.dir(" libs" ))
Original file line number Diff line number Diff line change 5454public class Base {
5555 // Added accessors for 0218 because the UpdateCheck class was not properly
5656 // updating the values, due to javac inlining the static final values.
57- static private final int REVISION = 1295 ;
57+ static private final int REVISION = Integer . parseInt ( System . getProperty ( "processing.revision" , " 1295" )) ;
5858 /** This might be replaced by main() if there's a lib/version.txt file. */
59- static private String VERSION_NAME = " 1295" ; //$NON-NLS-1$
59+ static private String VERSION_NAME = System . getProperty ( "processing.version" , " 1295") ; //$NON-NLS-1$
6060
6161 static final public String SKETCH_BUNDLE_EXT = ".pdez" ;
6262 static final public String CONTRIB_BUNDLE_EXT = ".pdex" ;
Original file line number Diff line number Diff line change 66}
77
88group = " org.processing"
9- version = " 4.3.1"
109
1110repositories{
1211 mavenCentral()
You can’t perform that action at this time.
0 commit comments