Skip to content

Commit

Permalink
remove of unused versions in gradle.properties file
Browse files Browse the repository at this point in the history
  • Loading branch information
astrapisixtynine committed Jul 3, 2024
1 parent 3acbde7 commit 0cf7cda
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 31 deletions.
40 changes: 15 additions & 25 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -28,36 +28,26 @@ projectRepositoriesPasswordKey=ossrhPassword
projectRepositoriesReleasesName=Sonatype Nexus Releases
projectRepositoriesSnapshotsName=Sonatype Nexus Snapshots
projectRepositoriesMavenUrl=https://plugins.gradle.org/m2/
###########################
# gradle-plugins versions #
###########################
gradlePluginVersionsVersion=0.49.0
licenseGradlePluginVersion=0.16.1
grgitGradlePluginVersion=5.2.1
spotlessGradlePluginVersion=6.22.0
#########################
# dependencies versions #
#########################
jobjCoreVersion=8.1
jobjReflectVersion=2.4
sillyCollectionVersion=27
vintageTimeVersion=6
sillyMathVersion=2.3
jobjCopyVersion=4.2
##############################
# test dependencies versions #
##############################
commonsLang3Version=3.13.0
equalsverifierVersion=3.15.3
sillyStringsVersion=9
testObjectVersion=8.2
meanbeanVersion=3.0.0-M9
testngVersion=7.8.0
##########################
# for deploy on sonatype #
##########################
systemProp.org.gradle.internal.publish.checksums.insecure=true
#############################
# gradle related properties #
#############################
# Enable the Gradle daemon
org.gradle.daemon=true
# Enable the build cache
org.gradle.caching=true
# Enable parallel execution
org.gradle.parallel=true
# Run Gradle in offline mode
org.gradle.offline=false
# Configure console output
org.gradle.console=auto
# Set the warning mode
org.gradle.warning.mode=summary
# Enable Configure on Demand to improve configuration time
org.gradle.configureondemand=true
# Enable VFS watching for better performance
org.gradle.vfs.watch=true
2 changes: 0 additions & 2 deletions gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ dependencies {
testImplementation libs.commons.lang3
testImplementation libs.equalsverifier
testImplementation libs.silly.strings
testImplementation libs.test.object
testImplementation libs.meanbean
// Note: use of bundles...
testImplementation libs.bundles.unit.testing
testRuntimeOnly libs.junit.platform.launcher
Expand Down
15 changes: 11 additions & 4 deletions gradle/repositories.gradle
Original file line number Diff line number Diff line change
@@ -1,16 +1,23 @@
repositories {
mavenLocal()
mavenCentral()
/**
* This repository is intended for release versions
**/
maven {
name "Sonatype Nexus Releases"
url "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
name "$projectRepositoriesReleasesName"
url "$projectRepositoriesReleasesRepoUrl"
mavenContent {
releasesOnly()
}
}
/**
* This repository is intended for snapshot versions that are previously deployed
* on the specified url for snapshots
**/
maven {
name "Sonatype Nexus Snapshots"
url "https://oss.sonatype.org/content/repositories/snapshots"
name "$projectRepositoriesSnapshotsName"
url "$projectRepositoriesSnapshotsRepoUrl"
mavenContent {
snapshotsOnly()
}
Expand Down

0 comments on commit 0cf7cda

Please sign in to comment.