Skip to content

Commit

Permalink
buildscripts: comments
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed May 10, 2024
1 parent 34fbb37 commit e245dfc
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 11 deletions.
4 changes: 2 additions & 2 deletions apps/build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// Gradle script to build the MonkeyWrench/apps sub-project
// Gradle script to build the "apps" subproject of MonkeyWrench

// Note: "common.gradle" in the root project contains additional initialization
// for this project. This initialization is applied in the "build.gradle"
// of the root project.

plugins {
id 'application' // to build Java applications
id 'application' // to build JVM applications
}

// Register tasks to run specific applications:
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 MonkeyWrench 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
8 changes: 4 additions & 4 deletions lib/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// Gradle script to build the MonkeyWrench/lib sub-project
// Gradle script to build the "lib" subproject of MonkeyWrench

// Note: "common.gradle" in the root project contains additional initialization
// for this project. This initialization is applied in the "build.gradle"
// 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
4 changes: 1 addition & 3 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
/*
* settings.gradle: global settings shared by all MonkeyWrench subprojects
*/
// global settings shared by all MonkeyWrench subprojects

dependencyResolutionManagement {
repositories {
Expand Down

0 comments on commit e245dfc

Please sign in to comment.