Skip to content

Commit

Permalink
buildscripts: comments
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed May 22, 2024
1 parent d34af51 commit b08f735
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ tasks.register('sourcesJar', Jar) {
archiveBaseName = project.ext.baseName
archiveClassifier = 'sources'
description 'Creates a JAR of Java sourcecode.'
from 'src/main/java'
from 'src/main/java' // default is ".allSource", which includes resources
}

// add javadoc/source jar tasks as artifacts
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## TOML version catalog for the Libbulletjme project
## catalog of libraries and plugins used to build the Libbulletjme project

[versions]

Expand Down
11 changes: 9 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,16 +1,23 @@
// global build settings for the Libbulletjme project

pluginManagement {
repositories {
gradlePluginPortal()
google()
google() // to find plugins released to Google's Maven Repository
mavenCentral() // to find plugins released to the Maven Central repository
}
}

dependencyResolutionManagement {
repositories {
google()
//mavenLocal() // to find libraries installed locally
google() // to find libraries released to Google's Maven Repository
mavenCentral() // to find libraries released to the Maven Central repository
//maven { url 'https://s01.oss.sonatype.org/content/groups/staging' } // to find libraries staged but not yet released
//maven { url 'https://s01.oss.sonatype.org/content/repositories/snapshots' } // to find public snapshots of libraries
}
}

rootProject.name = 'Libbulletjme'

// no subprojects

0 comments on commit b08f735

Please sign in to comment.