12345678910111213141516171819202122 |
- def SpringVersion = '4.2.0.RELEASE'
- def JettyVersion = '9.2.14.v20151106'
- subprojects {
- apply plugin: 'java'
- apply plugin: 'eclipse'
-
- version = '1.0'
- sourceCompatibility = 1.8
- targetCompatibility = 1.8
- [compileJava, compileTestJava]*.options*.encoding = "UTF-8"
-
- repositories {
- mavenCentral()
- }
- configurations {
- all*.exclude group: 'commons-logging', module: 'commons-logging'
- }
- }
|