1 Star 0 Fork 11

wkliushipeng / validation

forked from msimw / validation 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.gradle 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
msimw 提交于 2017-09-15 10:54 . 增加Demo
group 'com.msimw'
version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 1.7
buildscript {
repositories {
mavenCentral()
}
}
/**
* 项目编码
*/
[compileJava, compileTestJava, javadoc]*.options*.encoding = 'UTF-8'
/**
* maven地址
*/
repositories {
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/'}
}
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
testCompile group: 'junit', name: 'junit', version: '4.11'
testCompile "org.springframework:spring-test:4.2.2.RELEASE"
compile "org.slf4j:slf4j-log4j12:1.6.6"
compile "org.apache.commons:commons-lang3:3.3.2"
/**
* spring 4.2.2
*/
compile "org.springframework:spring-context:4.2.2.RELEASE"
/**
* 面向切面编程,动态代理
*/
compile "org.aspectj:aspectjweaver:1.8.7"
/**
* cglib代理
*/
runtime 'cglib:cglib:2.2.2'
}
/**
* zip 打包工具
*/
task zip(type: Zip,dependsOn:jar) {
from 'build/libs'
into('tools') {
from 'tools'
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/wkliushipeng/validation.git
git@gitee.com:wkliushipeng/validation.git
wkliushipeng
validation
validation
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891