Skip to content

Commit

Permalink
Update build script comments
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianMichael committed Aug 21, 2024
1 parent 36142e8 commit d01ccad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,12 @@ allprojects {
toolchain.languageVersion = JavaLanguageVersion.of(21)
}

// We define the configuration here so we can use it across all conventions and platforms
// To define which projects/source files should be included in the jar
// Configuration used to include dependencies to the final jars
configurations {
library
implementation.extendsFrom(library)
}

// Repositories for the ViaVersion dependencies defined below
repositories {
maven {
url = "https://maven.minecraftforge.net/"
Expand All @@ -43,6 +41,8 @@ allprojects {
maven {
url = "https://repo.viaversion.com"
metadataSources {
// Prevent Gradle from checking against correct Java version, needed since we downgrade libraries
// on include
mavenPom()
artifact()
}
Expand Down

0 comments on commit d01ccad

Please sign in to comment.