2e17016f8e
new file: src/main/java/com/thinker/annotation/Component.java renamed: src/main/java/com/test/util/Base.java -> src/main/java/com/thinker/main/util/BaseProperty.java renamed: src/test/java/com/test/util/BaseTest.java -> src/test/java/com/thinker/main/util/BaseTest.java new file: src/test/webapp/WEB-INF/web.xml new file: src/test/webapp/index.html
26 lines
419 B
Groovy
26 lines
419 B
Groovy
group 'mybatis'
|
|
version '1.0-SNAPSHOT'
|
|
apply plugin: 'groovy'
|
|
apply plugin: 'maven'
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'war'
|
|
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
url "http://maven.petrikainulainen.net/repo"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile 'log4j:log4j:1.2.17'
|
|
testCompile group: 'junit', name: 'junit', version: '4.11'
|
|
}
|