forked from Ali-RS/jme-vehicles
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.gradle
35 lines (28 loc) · 944 Bytes
/
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
// Gradle script to build the jme-vehicles project
plugins {
id 'base' // to add a "clean" task to the root project
}
ext {
maVehiclesVersion = '0.7.2-SNAPSHOT'
}
subprojects {
apply from: rootProject.file('common.gradle')
}
configurations.configureEach {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds' // to disable caching of snapshots
}
tasks.register('checkstyle') {
dependsOn ':HelloMav:checkstyleMain', ':MavCommon:checkstyleMain', \
':MavDemo1:checkstyleMain', ':MavDemo2:checkstyleMain', \
':MavLibrary:checkstyleMain'
description = 'Checks the style of all Java sourcecode.'
}
// Register publishing tasks:
tasks.register('install') {
dependsOn ':MavLibrary:install'
description = 'Installs Maven artifacts to the local repository.'
}
tasks.register('release') {
dependsOn ':MavLibrary:release'
description = 'Stages Maven artifacts to Sonatype OSSRH.'
}