Skip to content

Commit

Permalink
buildscripts: comments
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed May 21, 2024
1 parent 96cbf55 commit 6efebe6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
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 V-Sport project
## catalog of libraries and plugins used to build the V-Sport project

[versions]

Expand Down
2 changes: 1 addition & 1 deletion lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ tasks.register('sourcesJar', Jar) {
archiveBaseName = project.ext.baseName
archiveClassifier = 'sources'
description 'Creates a JAR of sourcecode.'
from sourceSets.main.allJava
from sourceSets.main.allJava // default is ".allSource", which includes resources
}

assemble.dependsOn('module', 'moduleAsc', 'pom', 'pomAsc')
Expand Down
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// global settings shared by all V-Sport subprojects
// global build settings for the V-Sport project

rootProject.name = 'V-Sport'

Expand All @@ -15,7 +15,7 @@ dependencyResolutionManagement {
/*
* Enumerate subdirectories in the project's root directory that contain a
* "build.gradle" file. Any subdirectory that contains a "build.gradle" file is
* automatically a subproject of this project.
* automatically included as a subproject.
*/
def subDirs = rootDir.listFiles(
new FileFilter() {
Expand Down

0 comments on commit 6efebe6

Please sign in to comment.