forked from eclipse-lsp4j/lsp4j
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
54 lines (44 loc) · 1.53 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
/******************************************************************************
* Copyright (c) 2016 TypeFox and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
******************************************************************************/
import java.time.format.DateTimeFormatter
import java.time.LocalDateTime
buildscript {
repositories.jcenter()
dependencies {
classpath 'org.xtext:xtext-gradle-plugin:2.0.7'
}
}
ext.buildTime = DateTimeFormatter.ofPattern('yyyyMMdd-HHmm').format(LocalDateTime.now())
apply from: "${rootDir}/gradle/versions.gradle"
subprojects {
repositories.jcenter()
group = 'org.eclipse.lsp4j'
version = rootProject.version
apply plugin: 'java'
apply plugin: 'org.xtext.xtend'
apply plugin: 'eclipse'
apply plugin: 'maven'
apply from: "${rootDir}/gradle/java-compiler-settings.gradle"
apply from: "${rootDir}/gradle/xtend-compiler-settings.gradle"
apply from: "${rootDir}/gradle/maven-deployment.gradle"
apply from: "${rootDir}/gradle/manifest-gen.gradle"
}
task clean(type: Delete) {
group 'Build'
description 'Deletes the local repositories'
delete 'build'
}
// Generate an IDE with Xtend support
task ide(type: GradleBuild) {
buildFile = 'ide/build.gradle'
tasks = ['ide']
}