mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-15 08:18:55 +00:00
[build] some fixes to gradle build
This commit is contained in:
parent
504396fe70
commit
462eb2fbc1
3 changed files with 5 additions and 0 deletions
|
@ -5,4 +5,5 @@ dependencies {
|
|||
compile "org.eclipse.emf:org.eclipse.emf.mwe.utils:$versions.emfMwe"
|
||||
compile "org.eclipse.emf:org.eclipse.emf.mwe2.lib:$versions.emfMwe2"
|
||||
compile "com.ibm.icu:icu4j:$versions.icu"
|
||||
optional "org.eclipse.jdt:org.eclipse.jdt.core:3.10.0"
|
||||
}
|
||||
|
|
|
@ -7,6 +7,7 @@ subprojects {
|
|||
}
|
||||
|
||||
apply plugin: 'java'
|
||||
apply plugin: 'eclipse'
|
||||
apply plugin: 'maven'
|
||||
apply from: "${rootDir}/gradle/versions.gradle"
|
||||
apply from: "${rootDir}/gradle/eclipse-project-layout.gradle"
|
||||
|
|
|
@ -22,3 +22,6 @@ configurations {
|
|||
}
|
||||
|
||||
sourceSets.main.compileClasspath += configurations.optional
|
||||
eclipse.classpath.plusConfigurations += [configurations.optional]
|
||||
javadoc.classpath += configurations.optional
|
||||
javadoc.options.addStringOption('-Xdoclint:none')
|
Loading…
Reference in a new issue