1 Star 1 Fork 1

Kotlin开发者社区/cms-spider

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 2.00 KB
一键复制 编辑 原始数据 按行查看 历史
jack 提交于 2020-11-09 01:43 . feat: add chromedriver
buildscript {
ext {
kotlinVersion = '1.3.41'
springBootVersion = '2.2.6.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'
apply plugin: 'io.spring.dependency-management'
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
repositories {
maven { url "http://maven.aliyun.com/nexus/content/groups/public/" }
}
kotlin {
experimental {
coroutines 'enable'
}
}
dependencies {
compile('org.springframework.boot:spring-boot-starter-data-jpa')
runtime('mysql:mysql-connector-java')
compile('org.springframework.boot:spring-boot-starter-freemarker')
compile('org.springframework.boot:spring-boot-starter-web')
compile('org.springframework.boot:spring-boot-starter-actuator')
testCompile('org.springframework.boot:spring-boot-starter-test')
compile('org.jetbrains.kotlin:kotlin-stdlib-jdk8')
compile('org.jetbrains.kotlin:kotlin-reflect')
compile('org.jetbrains.kotlinx:kotlinx-coroutines-core:1.1.1')
compile group: 'com.alibaba', name: 'fastjson', version: '1.2.58'
compile 'com.squareup.okhttp3:okhttp:3.8.1'
compile group: 'net.sourceforge.htmlunit', name: 'htmlunit', version: '2.27'
compile group: 'org.jsoup', name: 'jsoup', version: '1.10.3'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.9'
compile 'org.seleniumhq.selenium:selenium-server:3.0.1'
// https://mvnrepository.com/artifact/com.jayway.jsonpath/json-path
compile group: 'com.jayway.jsonpath', name: 'json-path', version: '2.4.0'
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Kotlin
1
https://gitee.com/kotlin_zone/cms-spider.git
git@gitee.com:kotlin_zone/cms-spider.git
kotlin_zone
cms-spider
cms-spider
master

搜索帮助