Skip to content

Commit

Permalink
chore: Rename all artifacts to new names
Browse files Browse the repository at this point in the history
  • Loading branch information
Berstanio committed Oct 7, 2024
1 parent 4c48a74 commit e2a9dc6
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 10 deletions.
6 changes: 3 additions & 3 deletions compiling/gdx-jnigen-gradle/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ plugins {
}

dependencies {
implementation project(":gdx-jnigen")
implementation project(":jnigen-core")
implementation gradleApi()
implementation project(":gdx-jnigen-generator")
implementation project(":jnigen-generator")
}

gradlePlugin {
plugins {
register('gdxJniGen') {

id = 'com.badlogicgames.gdx.gdx-jnigen'
id = 'com.badlogicgames.gdx.jnigen-gradle'

displayName = POM_NAME
description = POM_DESCRIPTION
Expand Down
2 changes: 1 addition & 1 deletion compiling/gdx-jnigen/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies {
implementation "com.github.javaparser:javaparser-core:3.14.14"
api project(':gdx-jnigen-commons')
api project(':jnigen-commons')
}

eclipse {
Expand Down
5 changes: 5 additions & 0 deletions compiling/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,8 @@ include ':gdx-jnigen'
include ':gdx-jnigen-gradle'
include ':gdx-jnigen-generator'
include ':gdx-jnigen-commons'

project(":gdx-jnigen").name = "jnigen-core"
project(":gdx-jnigen-gradle").name = "jnigen-gradle"
project(":gdx-jnigen-generator").name = "jnigen-generator"
project(":gdx-jnigen-commons").name = "jnigen-commons"
6 changes: 3 additions & 3 deletions gdx-jnigen-generator-test/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "com.badlogicgames.gdx.gdx-jnigen"
id "com.badlogicgames.gdx.jnigen-gradle"
}

sourceCompatibility = 1.8
Expand All @@ -13,8 +13,8 @@ dependencies {
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
testRuntimeOnly fileTree(dir: file("build/libs/"), include: '*natives-desktop.jar')
testImplementation project(path: ":gdx-jnigen-runtime")
testImplementation project(path: ":gdx-jnigen-runtime", configuration: "archives")
testImplementation project(path: ":jnigen-runtime")
testImplementation project(path: ":jnigen-runtime", configuration: "archives")
}


Expand Down
2 changes: 1 addition & 1 deletion gdx-jnigen-loader/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ sourceCompatibility = 1.7
targetCompatibility = 1.7

dependencies {
api "com.badlogicgames.gdx:gdx-jnigen-commons"
api "com.badlogicgames.gdx:jnigen-commons"
}

eclipse {
Expand Down
4 changes: 2 additions & 2 deletions gdx-jnigen-runtime/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ import java.nio.file.Files
import java.util.function.Supplier

plugins {
id "com.badlogicgames.gdx.gdx-jnigen"
id "com.badlogicgames.gdx.jnigen-gradle"
id "de.undercouch.download" version "5.0.1"
}

dependencies {
api project(":gdx-jnigen-loader")
api project(":jnigen-loader")
}

tasks.register("fetchLibFFI", Download) {
Expand Down
4 changes: 4 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,7 @@ includeBuild("compiling")
include ':gdx-jnigen-loader'
include ':gdx-jnigen-runtime'
include ':gdx-jnigen-generator-test'

project(":gdx-jnigen-loader").name = "jnigen-loader"
project(":gdx-jnigen-runtime").name = "jnigen-runtime"
project(":gdx-jnigen-generator-test").name = "jnigen-generator-test"

0 comments on commit e2a9dc6

Please sign in to comment.