2016-10-23 11:36:04 +00:00
|
|
|
ext.title = 'Xtext Runtime Bundle'
|
|
|
|
description = 'Core component of Xtext.'
|
|
|
|
|
2015-03-24 15:39:11 +00:00
|
|
|
dependencies {
|
2016-06-09 13:48:56 +00:00
|
|
|
compile project(':org.eclipse.xtext.util')
|
|
|
|
compile "org.eclipse.xtend:org.eclipse.xtend.lib:$versions.xtext"
|
2019-01-11 15:41:50 +00:00
|
|
|
compile 'log4j:log4j'
|
|
|
|
compile 'org.eclipse.platform:org.eclipse.equinox.common'
|
2017-01-16 13:44:49 +00:00
|
|
|
// remove me, once the following is fixed : https://bugs.eclipse.org/bugs/show_bug.cgi?id=510504
|
2019-01-11 15:41:50 +00:00
|
|
|
compile 'org.eclipse.platform:org.eclipse.osgi'
|
|
|
|
compile 'org.eclipse.emf:org.eclipse.emf.common'
|
|
|
|
compile 'org.eclipse.emf:org.eclipse.emf.ecore.xmi'
|
|
|
|
compile 'com.google.inject:guice'
|
|
|
|
compile 'org.antlr:antlr-runtime'
|
|
|
|
optional 'org.eclipse.platform:org.eclipse.core.runtime'
|
|
|
|
optional 'org.eclipse.platform:org.eclipse.equinox.registry'
|
|
|
|
optional 'org.eclipse.emf:org.eclipse.emf.mwe.utils'
|
|
|
|
optional 'org.eclipse.xpand:org.eclipse.xtend'
|
|
|
|
optional 'org.eclipse.xpand:org.eclipse.xtend.typesystem.emf'
|
|
|
|
optional 'org.ow2.asm:asm-commons'
|
2016-06-09 13:48:56 +00:00
|
|
|
}
|
|
|
|
|
2016-06-09 14:56:05 +00:00
|
|
|
sourceSets.main {
|
|
|
|
java.srcDir 'packrat'
|
2016-06-09 13:48:56 +00:00
|
|
|
}
|
2016-06-13 08:58:16 +00:00
|
|
|
|
|
|
|
jar {
|
2016-09-14 14:00:10 +00:00
|
|
|
from('.') {
|
2019-09-28 07:11:26 +00:00
|
|
|
include 'org/**', 'xtext32.png'
|
2016-09-14 14:00:10 +00:00
|
|
|
}
|
2016-06-13 08:58:16 +00:00
|
|
|
}
|