File tree 4 files changed +7
-4
lines changed
4 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ apply plugin: "idea"
10
10
11
11
apply from : " version.gradle"
12
12
13
- subprojects {
13
+ configure( subprojects - project( ' :axelor-front ' )) {
14
14
apply from : " ${ rootDir} /gradle/libs.gradle"
15
15
apply from : " ${ rootDir} /gradle/common.gradle"
16
16
apply from : " ${ rootDir} /gradle/jacoco.gradle"
Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ def projectsToSkipJavadocs = ext.projectsToSkipJavadocs = [
2
2
' axelor-gradle' ,
3
3
' axelor-tomcat' ,
4
4
' axelor-tools' ,
5
- ' axelor-web'
5
+ ' axelor-web' ,
6
+ ' axelor-front'
6
7
]
7
8
8
9
def projectsIncludeInJavadocs = subprojects. findAll {
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ spotless {
43
43
// Sub projects
44
44
// ///
45
45
46
- subprojects { p ->
46
+ configure( subprojects - project( ' :axelor-front ' )) { p ->
47
47
48
48
apply plugin : com.diffplug.gradle.spotless.SpotlessPlugin
49
49
@@ -83,7 +83,8 @@ subprojects { p ->
83
83
// formatCode task
84
84
// ///
85
85
86
- allprojects {
86
+ configure([rootProject] + (subprojects - project(' :axelor-front' ))) {
87
+
87
88
tasks. register(' formatCode' ) {
88
89
description " Add license and format code."
89
90
group " Axelor"
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ include "axelor-gradle"
5
5
include " axelor-test"
6
6
include " axelor-core"
7
7
include " axelor-web"
8
+ include " axelor-front"
8
9
9
10
if (JavaVersion . current() != JavaVersion . VERSION_11 ) {
10
11
throw new GradleException (" This build requires JDK-11." )
You can’t perform that action at this time.
0 commit comments