java gradle repositories
gradle wapper
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://mirrors.cloud.tencent.com/gradle/gradle-6.8.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
build.gradle
plugins {
id 'org.springframework.boot' version '2.6.11'
id 'io.spring.dependency-management' version '1.0.13.RELEASE'
id 'java'
}
group = 'com.sugon'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
maven { url 'https://maven.aliyun.com/repository/jcenter' }
maven { url 'https://maven.aliyun.com/repository/google' }
maven { url 'https://maven.aliyun.com/repository/central' }
maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
maven { url 'https://maven.aliyun.com/repository/apache-snapshots' }
mavenCentral()
flatDir {
dirs 'lib'
}
}
dependencies {
implementation 'cn.hutool:hutool-core:5.8.19'
implementation 'org.owasp.encoder:encoder:1.2.1'
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.9.8'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.projectlombok:lombok:1.18.22'
testImplementation 'junit:junit:4.13.1'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation 'io.micrometer:micrometer-core:1.10.3'
implementation "org.apache.commons:commons-vfs2:2.7.0"
implementation 'org.apache.commons:commons-compress:1.21'
implementation "commons-net:commons-net:3.3"
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
implementation "com.jcraft:jsch:0.1.54"
implementation "com.google.guava:guava:30.0-android"
implementation "commons-io:commons-io:2.7"
implementation "commons-lang:commons-lang:2.6"
implementation "commons-codec:commons-codec:1.14"
implementation "org.projectlombok:lombok:1.18.12"
implementation 'mysql:mysql-connector-java:8.0.28'
implementation "org.pentaho:pentaho-parent-pom:8.1.0.0-365"
implementation fileTree(dir: "src/main/resources/libs", include: '*.jar')
implementation 'com.alibaba:fastjson:1.2.67_noneautotype2'
implementation 'org.springframework.boot:spring-boot-devtools'
implementation 'cn.easyproject:ojdbc6:12.1.0.2.0'
}
/**/
test {
useJUnitPlatform()
// enabled = false
}
本文来自博客园,作者:vx_guanchaoguo0,转载请注明原文链接:https://www.cnblogs.com/guanchaoguo/p/17939953