当前仓库属于暂停状态,部分功能使用受限,详情请查阅 仓库状态说明
5 Star 11 Fork 4

zhaohuihbwj / 人员管理系统kotlin版本
暂停

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.gradle 1.47 KB
一键复制 编辑 原始数据 按行查看 历史
ZhaoHui 提交于 2017-05-20 19:32 . first commit
buildscript {
ext {
kotlinVersion = '1.1.1'
springBootVersion = '1.5.3.RELEASE'
}
repositories {
maven{url 'http://maven.aliyun.com/nexus/content/groups/public'}
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlinVersion}")
classpath("org.jetbrains.kotlin:kotlin-allopen:${kotlinVersion}")
}
}
apply plugin: 'kotlin'
apply plugin: 'kotlin-spring'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
repositories {
maven{url 'http://maven.aliyun.com/nexus/content/groups/public'}
}
dependencies {
compile('org.mybatis.spring.boot:mybatis-spring-boot-starter:1.3.0')
compile('org.springframework.boot:spring-boot-starter-web')
compile("org.springframework.boot:spring-boot-starter-logging")
compile("org.jetbrains.kotlin:kotlin-stdlib-jre8:${kotlinVersion}")
compile("org.jetbrains.kotlin:kotlin-reflect:${kotlinVersion}")
runtime('mysql:mysql-connector-java')
compile 'com.google.guava:guava:19.0'
compile 'org.webjars:bootstrap:3.3.7'
compile 'org.webjars:jquery:3.1.0'
compile 'org.webjars:select2:4.0.2'
//分页插件
compile group: 'com.github.pagehelper', name: 'pagehelper-spring-boot-starter', version: '1.1.0'
testCompile('org.springframework.boot:spring-boot-starter-test')
}
Kotlin
1
https://gitee.com/zhaohuihbwj/practice-kotlin.git
git@gitee.com:zhaohuihbwj/practice-kotlin.git
zhaohuihbwj
practice-kotlin
人员管理系统kotlin版本
master

搜索帮助