Skip to content

Commit

Permalink
Fix group id & gradle weird build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
serivesmejia committed Nov 20, 2024
1 parent 32b7c50 commit c42f610
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-central.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ jobs:
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.JRELEASER_GPG_SECRET_KEY }}
DELTACV_PLUGINSIGNING_PRIVATE: ${{ secrets.DELTACV_PLUGINSIGNING_PRIVATE }}
run: |
./gradlew :Shared:publishToMavenCentral :PaperVision:publishToMavenCentral :LwjglPlatform:publishToMavenCentral :EOCVSimPlugin:publishToMavenCentral --no-configuration-cache -x test
./gradlew :Shared:publishToMavenCentral :PaperVision:publishToMavenCentral :LwjglPlatform:publishToMavenCentral :EOCVSimPlugin:publishToMavenCentral --no-configuration-cache -x test -x :EOCVSimPlugin:shadowJar
2 changes: 1 addition & 1 deletion EOCVSimPlugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
id 'org.jetbrains.kotlin.jvm'
id 'com.gradleup.shadow' version '8.3.5'
id 'signing'
id "com.vanniktech.maven.publish" version "0.30.0"
id "com.vanniktech.maven.publish"
}

apply from: '../build.common.gradle'
Expand Down
2 changes: 1 addition & 1 deletion LwjglPlatform/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'org.jetbrains.kotlin.jvm'
id 'signing'
id "com.vanniktech.maven.publish" version "0.30.0"
id "com.vanniktech.maven.publish"
}

apply from: '../build.common.gradle'
Expand Down
2 changes: 1 addition & 1 deletion PaperVision/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
id 'com.google.devtools.ksp' version '2.0.20-1.0.24'
id 'org.jetbrains.kotlin.jvm'
id 'signing'
id "com.vanniktech.maven.publish" version "0.30.0"
id "com.vanniktech.maven.publish"
}

apply from: '../build.common.gradle'
Expand Down
2 changes: 1 addition & 1 deletion Shared/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'org.jetbrains.kotlin.jvm'
id 'signing'
id "com.vanniktech.maven.publish" version "0.30.0"
id "com.vanniktech.maven.publish"
}

apply from: '../build.common.gradle'
Expand Down
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,12 @@ buildscript {

dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.30.0'
}
}

allprojects {
group 'org.deltacv'
group 'org.deltacv.PaperVision'
version '1.0.0'

repositories {
Expand Down

0 comments on commit c42f610

Please sign in to comment.