This repository has been archived on 2020-04-18. You can view files and clone it, but cannot push or open issues or pull requests.
mybatis/build.gradle
lzh984294471 7ee5444fce modified: .gitignore
modified:   build.gradle
 	new file:   gradlew
 	new file:   gradlew.bat
 	modified:   src/main/java/com/mybatis/util/Base.java
2016-06-13 22:15:32 +08:00

18 lines
301 B
Groovy

group 'mybatis'
version '1.0-SNAPSHOT'
apply plugin: 'groovy'
apply plugin: 'java'
apply plugin: 'war'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile 'org.codehaus.groovy:groovy-all:2.3.11'
testCompile group: 'junit', name: 'junit', version: '4.11'
}