1 Star 0 Fork 3.4K

赖子北/mybatis-plus

forked from baomidou/mybatis-plus 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.gradle 3.20 KB
一键复制 编辑 原始数据 按行查看 历史
Collins 提交于 2017-07-11 02:10 . Code specification adjustment
apply plugin: 'java'
apply plugin: 'maven'
ext {
configuration = [
javaVersion = JavaVersion.VERSION_1_7
]
libraries = [
mybatisSpringVersion = '1.3.1',
mybatisVersion = '3.4.4',
springVersion = '4.3.5.RELEASE',
]
}
group = 'com.baomidou'
version = '2.1.0'
description = "Mybatis 增强工具包 - 只做增强不做改变,简化CRUD操作"
sourceCompatibility = "${javaVersion}"
targetCompatibility = "${javaVersion}"
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
repositories {
mavenLocal()
maven { url 'http://repo.spring.io/plugins-release' }
maven { url "https://plugins.gradle.org/m2/" }
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/'}
mavenCentral()
jcenter()
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
javadoc {
options {
encoding "UTF-8"
charSet 'UTF-8'
author true
version true
failOnError false
links "http://docs.oracle.com/javase/7/docs/api"
}
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from 'build/docs/javadoc'
}
artifacts {
archives sourcesJar
archives javadocJar
}
uploadArchives {
def repositoryUrl = "http://172.16.111.124:8081/nexus/content/repositories/releases/"
repositories {
mavenDeployer {
repository(url: "$repositoryUrl") {
authentication(userName: "deployment", password: "deployment123")
}
pom.version = "$project.version"
pom.artifactId = "$project.name"
pom.groupId = "$project.group"
}
}
}
def common = [
"org.springframework:spring-tx:${springVersion}",
"org.springframework:spring-jdbc:${springVersion}",
"org.springframework:spring-context-support:${springVersion}",
"com.alibaba:druid:1.1.0",
"org.apache.velocity:velocity:1.7"
]
dependencies {
compile ("org.mybatis:mybatis-spring:${mybatisSpringVersion}")
compile ("org.mybatis:mybatis:${mybatisVersion}")
compile ("com.github.jsqlparser:jsqlparser:1.0")
compileOnly common
testCompileOnly("javax.servlet:servlet-api:2.5")
testCompile("org.mybatis.caches:mybatis-ehcache:1.1.0")
testCompile("ch.qos.logback:logback-classic:1.2.2")
testCompile("junit:junit:4.12")
testCompile("org.apache.commons:commons-dbcp2:2.1.1") {
exclude(module: 'commons-logging')
}
testCompile("org.apache.commons:commons-pool2:2.4.2")
testCompile("com.microsoft.sqlserver:sqljdbc4:4.0")
testCompile("org.postgresql:postgresql:9.4.1212")
testCompile("com.oracle:ojdbc14:10.2.0.5.0")
testCompile("com.h2database:h2:1.4.194")
testCompile("mysql:mysql-connector-java:5.1.38")
testCompile common
testCompile("org.slf4j:slf4j-api:1.7.25")
testCompile("org.slf4j:jcl-over-slf4j:1.7.25")
testCompile("org.springframework:spring-test:${springVersion}")
testCompile("org.springframework:spring-webmvc:${springVersion}")
testCompile("org.aspectj:aspectjweaver:1.8.9")
testCompile("javax.servlet:servlet-api:2.5")
testCompile("org.projectlombok:lombok:1.16.16")
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/laizibei/mybatis-plus.git
git@gitee.com:laizibei/mybatis-plus.git
laizibei
mybatis-plus
mybatis-plus
master

搜索帮助