forked from eclipse/xtext-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
59 lines (50 loc) · 1.63 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
50
51
52
53
54
55
56
57
58
59
/*
* Root project for xtext-core.
*/
import java.time.format.DateTimeFormatter
import java.time.LocalDateTime
buildscript {
apply from: "${rootDir}/gradle/versions.gradle"
repositories.mavenCentral()
dependencies {
classpath "org.xtext:xtext-gradle-plugin:$versions.xtext_gradle_plugin"
classpath "io.spring.gradle:dependency-management-plugin:$versions.dependency_management_plugin"
}
}
plugins {
id 'org.ajoberstar.grgit' version '4.0.1'
}
apply from: "${rootDir}/gradle/versions.gradle"
apply from: "${rootDir}/gradle/bootstrap-setup.gradle"
ext.buildTime = DateTimeFormatter.ofPattern('yyyyMMdd-HHmm').format(LocalDateTime.now())
subprojects {
group = 'org.eclipse.xtext'
version = rootProject.version
apply plugin: 'maven-publish'
apply plugin: 'java'
apply plugin: 'io.spring.dependency-management'
dependencyManagement {
imports {
mavenBom "org.eclipse.xtext:xtext-dev-bom:$project.version"
}
}
if (findProperty('compileXtend') == 'true') {
apply plugin: 'org.xtext.xtend'
}
apply plugin: 'eclipse'
apply from: "${rootDir}/gradle/upstream-repositories.gradle"
apply from: "${rootDir}/gradle/java-compiler-settings.gradle"
apply from: "${rootDir}/gradle/xtend-compiler-settings.gradle"
apply from: "${rootDir}/gradle/maven-deployment.gradle"
// The bootstrap project uses only the mwe2 source set
if (!name.endsWith('bootstrap')) {
apply from: "${rootDir}/gradle/eclipse-project-layout.gradle"
}
apply from: "${rootDir}/gradle/manifest-gen.gradle"
apply from: "${rootDir}/gradle/validation.gradle"
}
task clean(type: Delete) {
group 'Build'
description 'Deletes the local repositories.'
delete 'build'
}