Skip to content

Commit 3b3fc33

Browse files
committed
buildscript comments
1 parent 3fb954d commit 3b3fc33

2 files changed

Lines changed: 6 additions & 8 deletions

File tree

common.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
// Gradle settings and tasks common to all Archer Game Template subprojects
1+
// Gradle settings and tasks common to all Archer-Game-Template2 subprojects
22

3-
apply plugin: 'application'
4-
apply plugin: 'java'
3+
apply plugin: 'application' // to build JVM applications
4+
apply plugin: 'java' // to compile and test Java projects
55

66
java {
77
sourceCompatibility = JavaVersion.VERSION_11

settings.gradle

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1-
/*
2-
* settings.gradle: global settings shared by all subprojects
3-
*/
1+
// global build settings for the Archer-Game-Template2 project
42

53
rootProject.name = 'Archer-Game-Template2'
64

75
/*
86
* Enumerate subdirectories in the project's root directory that contain a
9-
* "build.gradle" file. Any subdirectory with a "build.gradle" file is
10-
* automatically a subproject of this project.
7+
* "build.gradle" file. Any subdirectory that contains a "build.gradle" file is
8+
* automatically included as a subproject.
119
*/
1210
def subDirs = rootDir.listFiles(
1311
new FileFilter() {

0 commit comments

Comments
 (0)