From 2d54124e5e74eb30733f80ba71f8d6b968b96796 Mon Sep 17 00:00:00 2001 From: TheBrokenRail Date: Sun, 31 May 2020 15:35:00 -0400 Subject: [PATCH] Fix Build --- docs/ARCHITECTURE.md | 2 +- examples/typescript/build.gradle.kts | 2 +- plugin/build.gradle.kts | 6 +++--- scriptcraft/build.gradle.kts | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/ARCHITECTURE.md b/docs/ARCHITECTURE.md index bd8b51f..9f9261e 100644 --- a/docs/ARCHITECTURE.md +++ b/docs/ARCHITECTURE.md @@ -7,7 +7,7 @@ Inside the JAR, JS source files are in ```/scriptcraft```, and inside An external libraries API can be accessed using an ```import``` statement. ## TypeScript -TypeScript-based projects use thw ```com.thebrokenrail.scriptcraft``` Gradle plugin, this plugin will handle installing TypeScript and download any API type declarations. The TypeScript root using this Gradle plugin is at ```src/main/ts```. +TypeScript-based projects use thw ```com.thebrokenrail.scriptcraft.plugin``` Gradle plugin, this plugin will handle installing TypeScript and download any API type declarations. The TypeScript root using this Gradle plugin is at ```src/main/ts```. ### External Libraries To access an external libraries' API in addition to an ```import``` statement, the TypeScript compiler must have access to the external libraries' type declarations. The ScriptCraft Gradle plugin generates and downloads these using JAR files called API JARs. diff --git a/examples/typescript/build.gradle.kts b/examples/typescript/build.gradle.kts index 318dc10..388669a 100644 --- a/examples/typescript/build.gradle.kts +++ b/examples/typescript/build.gradle.kts @@ -1,6 +1,6 @@ plugins { id("fabric-loom") version "0.2.7-SNAPSHOT" - id("com.thebrokenrail.scriptcraft") version "1.0.0-SNAPSHOT" + id("com.thebrokenrail.scriptcraft.plugin") version "1.0.0" } java { diff --git a/plugin/build.gradle.kts b/plugin/build.gradle.kts index fa963d9..e97e492 100644 --- a/plugin/build.gradle.kts +++ b/plugin/build.gradle.kts @@ -8,9 +8,9 @@ plugins { `maven-publish` } -group = "com.thebrokenrail" -base.archivesBaseName = "scriptcraft" -version = "1.0.0-SNAPSHOT" +group = "com.thebrokenrail.scriptcraft" +base.archivesBaseName = "plugin" +version = "1.0.0" gradlePlugin { plugins { diff --git a/scriptcraft/build.gradle.kts b/scriptcraft/build.gradle.kts index 5567ac8..fd71058 100644 --- a/scriptcraft/build.gradle.kts +++ b/scriptcraft/build.gradle.kts @@ -1,7 +1,7 @@ plugins { id("fabric-loom") version "0.2.7-SNAPSHOT" id("jni") - id("com.thebrokenrail.scriptcraft") version "1.0.0-SNAPSHOT" + id("com.thebrokenrail.scriptcraft.plugin") version "1.0.0-SNAPSHOT" `maven-publish` }