forked from juliandolby/lsp4j
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
52 lines (42 loc) · 1.54 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
/*******************************************************************************
* Copyright (c) 2016 TypeFox GmbH (http://www.typefox.io) and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*******************************************************************************/
import java.time.format.DateTimeFormatter
import java.time.LocalDateTime
buildscript {
repositories.jcenter()
dependencies {
classpath 'org.xtext:xtext-gradle-plugin:1.0.21'
classpath 'io.typefox.gradle:gradle-p2gen:0.1.0'
}
}
ext.buildTime = DateTimeFormatter.ofPattern('yyyyMMdd-HHmm').format(LocalDateTime.now())
apply from: "${rootDir}/gradle/versions.gradle"
apply from: "${rootDir}/gradle/p2-deployment.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']
}