Skip to content

Commit 443f896

Browse files
committed
Make build the default task for all projects
1 parent 997c37c commit 443f896

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

build.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11

2-
defaultTasks 'build'
3-
42
ext {
3+
54
}
65

76
allprojects {
7+
8+
defaultTasks 'build'
9+
810
ext {
911
isSnapshot = true
1012
fjBaseVersion = "3.2.1"

consume/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11

22
apply plugin: 'java'
33

4-
defaultTasks 'build'
5-
64
archivesBaseName = "${project.projectName}-${project.name}"
75

86
repositories {

core/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
apply plugin: 'java'
33
apply plugin: 'maven'
44

5-
defaultTasks 'build'
6-
75
sourceCompatibility = "1.6"
86
targetCompatibility = "1.6"
97

demo/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
apply plugin: 'java'
33
apply plugin: 'application'
44

5-
defaultTasks 'build'
6-
75
mainClassName = "fj.demo.euler.Problem2"
86

97
archivesBaseName = "${project.projectName}-${project.name}"

0 commit comments

Comments
 (0)