-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
49 lines (42 loc) · 1.19 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:3.4.0"
classpath 'com.adarshr:gradle-test-logger-plugin:3.2.0'
}
}
allprojects {
apply from: "$rootDir/gradle/java-projects-configurator.gradle"
apply from: "$rootDir/gradle/property-replacer.gradle"
repositories {
mavenLocal()
mavenCentral()
maven {
url 'https://gitlab.com/api/v4/projects/37512056/packages/maven'
}
}
ext {
angularVersion = "11.0.6"
flutterVersion = "3.0.4"
}
version = "${targetVersion}"
group = "com.spaceshift"
}
tasks.register("buildSingleArtifact", GradleBuild) {
group = 'build'
description = 'Build all modules -> Build result artifact'
tasks = ['build', 'bootJar']
}
tasks.register("buildSingleArtifactWithoutTests", GradleBuild) {
group = 'build'
description = 'Build all modules without tests -> Build result artifact'
tasks = ['classes', 'bootJar']
}
wrapper {
gradleVersion = '8.4'
distributionType = Wrapper.DistributionType.ALL
}