aboutsummaryrefslogtreecommitdiffstats
path: root/language-ide/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'language-ide/build.gradle')
-rw-r--r--language-ide/build.gradle23
1 files changed, 23 insertions, 0 deletions
diff --git a/language-ide/build.gradle b/language-ide/build.gradle
new file mode 100644
index 00000000..9cc8cf52
--- /dev/null
+++ b/language-ide/build.gradle
@@ -0,0 +1,23 @@
1plugins {
2 id 'com.github.johnrengelman.shadow' version '5.2.0'
3}
4
5dependencies {
6 compile project(':language')
7 compile "org.eclipse.xtext:org.eclipse.xtext.ide:${xtextVersion}"
8 compile "org.eclipse.xtext:org.eclipse.xtext.xbase.ide:${xtextVersion}"
9}
10
11apply plugin: 'application'
12apply plugin: 'com.github.johnrengelman.shadow'
13mainClassName = "org.eclipse.xtext.ide.server.ServerLauncher"
14
15shadowJar {
16 from(project.convention.getPlugin(JavaPluginConvention).sourceSets.main.output)
17 configurations = [project.configurations.runtime]
18 exclude('META-INF/INDEX.LIST', 'META-INF/*.SF', 'META-INF/*.DSA', 'META-INF/*.RSA','schema/*',
19 '.options', '.api_description', '*.profile', '*.html', 'about.*', 'about_files/*',
20 'plugin.xml', 'systembundle.properties', 'profile.list')
21 classifier = 'ls'
22 append('plugin.properties')
23}