Skip to content

Commit

Permalink
buildscripts: comments
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed May 9, 2024
1 parent 395e6bb commit 35a096f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions apps/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ if (!hasProperty('mainClass')) {
jar.manifest.attributes('Main-Class': application.mainClass)

ext {
// which BTF (buildType + flavor) of the native physics library to use:
//btf = 'DebugSp'
// which BTF (buildType + flavor) of the native physics library to download:
btf = 'ReleaseSp'
//btf = 'DebugSp'

fs = System.getProperty('file.separator')
downloadsDir = System.getProperty('user.home') + fs + 'Downloads' + fs
Expand Down
4 changes: 2 additions & 2 deletions common.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Gradle settings and tasks common to all V-Sport subprojects

apply plugin: 'checkstyle'
apply plugin: 'java'
apply plugin: 'checkstyle' // to analyze Java sourcecode for style violations
apply plugin: 'java' // to compile and test Java projects

java {
sourceCompatibility = JavaVersion.VERSION_1_8
Expand Down
6 changes: 3 additions & 3 deletions lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
// of the root project.

plugins {
id 'java-library'
id 'maven-publish'
id 'signing'
id 'java-library' // to build JVM libraries
id 'maven-publish' // to publish artifacts to Maven repositories
id 'signing' // to sign artifacts for publication
}

ext {
Expand Down

0 comments on commit 35a096f

Please sign in to comment.