Skip to content

Commit

Permalink
buildscripts: comments
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Nov 19, 2023
1 parent 8010905 commit 35b68a3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions WesExamples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dependencies {
implementation project(':WesLibrary') // for latest sourcecode
}

// cleanup tasks:
// Register cleanup tasks:

clean.dependsOn('cleanDLLs', 'cleanDyLibs', 'cleanLogs', 'cleanSandbox', 'cleanSOs')

Expand All @@ -44,7 +44,7 @@ tasks.register('cleanSOs', Delete) { // extracted Linux and Android native libra
delete fileTree(dir: '.', include: '*.so')
}

// tasks to run the example apps:
// Register tasks to run the example apps:

tasks.register('AppChooser', JavaExec) {
mainClass = 'jme3utilities.test.wes.AppChooser'
Expand Down
4 changes: 2 additions & 2 deletions WesLibrary/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies {
api heartCoordinates
}

// publishing tasks:
// Register publishing tasks:

tasks.register('install') {
dependsOn 'publishMavenPublicationToMavenLocal'
Expand Down Expand Up @@ -142,7 +142,7 @@ publishMavenPublicationToMavenLocal.doLast {
}
publishMavenPublicationToOSSRHRepository.dependsOn('assemble')

// signing tasks:
// Register signing tasks:

// Signing relies on the existence of 3 properties
// (signing.keyId, signing.password, and signing.secretKeyRingFile)
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ subprojects {
}

configurations.configureEach {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds' // to disable caching of SNAPSHOTs
resolutionStrategy.cacheChangingModulesFor 0, 'seconds' // to disable caching of snapshots
}

tasks.register('checkstyle') {
Expand All @@ -33,7 +33,7 @@ tasks.register('AppChooser') {
description 'Runs the example apps.'
}

// publishing tasks:
// Register publishing tasks:

tasks.register('install') {
dependsOn ':WesLibrary:install'
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencyResolutionManagement {
//mavenLocal() // to find libraries installed locally
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
//maven { url 'https://s01.oss.sonatype.org/content/repositories/snapshots' } // to find public snapshots of libraries
}
}

Expand Down

0 comments on commit 35b68a3

Please sign in to comment.