aboutsummaryrefslogtreecommitdiffstats
path: root/language-ide/build.gradle
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2021-06-27 14:22:40 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2021-06-27 14:22:40 +0200
commit07719e927f9d398765e661c84fd8778cefb39083 (patch)
tree9652080f7e580f09a0763a3e258348dea6e02684 /language-ide/build.gradle
parentAdd enum support (diff)
downloadrefinery-07719e927f9d398765e661c84fd8778cefb39083.tar.gz
refinery-07719e927f9d398765e661c84fd8778cefb39083.tar.zst
refinery-07719e927f9d398765e661c84fd8778cefb39083.zip
Simplify project layout
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}