fixing gradle (*again*)

This commit is contained in:
2025-05-22 11:35:04 +03:00
parent 6e9250ffd1
commit a1a2293af4
7 changed files with 24 additions and 22 deletions

View File

@@ -1,5 +1,5 @@
plugins { plugins {
id("common"); id("j2s-common");
} }
java { java {

View File

@@ -22,7 +22,7 @@ dependencies {
testRuntimeOnly("org.junit.platform:junit-platform-launcher"); testRuntimeOnly("org.junit.platform:junit-platform-launcher");
} }
if (System.getenv("REPO_URL") != null) {
publishing { publishing {
repositories { repositories {
maven { maven {
@@ -45,3 +45,5 @@ publishing {
} }
} }
} }
}

View File

@@ -1,5 +1,5 @@
plugins { plugins {
id("common-java"); id("j2s-common-java");
} }
description = "A collection of utils and structures for the rest of the project"; description = "A collection of utils and structures for the rest of the project";

View File

@@ -1,5 +1,5 @@
plugins { plugins {
id("common-java"); id("j2s-common-java");
} }
description = "A compiler of EcmaScript 5 code to J2S bytecode"; description = "A compiler of EcmaScript 5 code to J2S bytecode";

View File

@@ -1,7 +1,7 @@
import com.github.gradle.node.npm.task.NpmTask; import com.github.gradle.node.npm.task.NpmTask;
plugins { plugins {
id("common-java"); id("j2s-common-java");
id("com.github.node-gradle.node") version "5.0.0"; id("com.github.node-gradle.node") version "5.0.0";
} }

View File

@@ -1,5 +1,5 @@
plugins { plugins {
id("common-java"); id("j2s-common-java");
id("com.gradleup.shadow") version "9.0.0-beta4"; id("com.gradleup.shadow") version "9.0.0-beta4";
} }

View File

@@ -1,5 +1,5 @@
plugins { plugins {
id("common-java"); id("j2s-common-java");
} }
description = "The runtime of J2S, used to execute J2S bytecode"; description = "The runtime of J2S, used to execute J2S bytecode";