Skip to content

Commit

Permalink
Gradle fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Nightenom committed Nov 4, 2023
1 parent 5244fad commit 5d4c0b4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ plugins {
id 'idea'
id 'eclipse'
id 'maven-publish'
id 'net.neoforged.gradleutils'
}

repositories {
Expand Down Expand Up @@ -31,8 +32,7 @@ tasks.named('test', Test) {
}

group = 'cz.nightenom'
//archivesBaseName = project.name
version = 1.0
version = gradleutils.getTagOffsetVersion()

java.toolchain.languageVersion = JavaLanguageVersion.of(8)
java.withSourcesJar()
Expand Down
11 changes: 9 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.7.0'
pluginManagement {
repositories {
maven { url = 'https://maven.neoforged.net/' }
}

plugins {
id 'net.neoforged.gradleutils' version '2.0.+'
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.7.0'
}
}
rootProject.name = 'VscLaunchJavaWriter'

0 comments on commit 5d4c0b4

Please sign in to comment.