forked from ls1intum/Artemis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
22 lines (18 loc) · 895 Bytes
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import org.apache.tools.ant.DirectoryScanner
pluginManagement {
plugins {
id 'org.springframework.boot' version "${spring_boot_version}"
id 'com.github.node-gradle.node' version "${gradle_node_plugin_version}"
id 'org.liquibase.gradle' version "${liquibase_plugin_version}"
id 'net.ltgt.apt-eclipse' version "${apt_plugin_version}"
id 'net.ltgt.apt-idea' version "${apt_plugin_version}"
id 'net.ltgt.apt' version "${apt_plugin_version}"
id 'com.github.andygoossens.gradle-modernizer-plugin' version "${modernizer_plugin_version}"
}
}
rootProject.name = 'Artemis'
// needed for rest call and endpoint analysis
include 'supporting_scripts:analysis-of-endpoint-connections'
// needed for programming exercise templates
DirectoryScanner.removeDefaultExclude "**/.gitattributes"
DirectoryScanner.removeDefaultExclude "**/.gitignore"