代码拉取完成,页面将自动刷新
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'idea'
apply from: 'config.gradle'
buildscript {
// 设置在构建项目时的软件源库
repositories {
mavenLocal()
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
mavenCentral()
}
// 设置引用在构建项目时的插件
dependencies {
classpath "com.github.jengelman.gradle.plugins:shadow:2.0.1"
}
}
// Jar包基础名称
def jarBaseName = ext.project.projectName
// Jar包版本号
def jarVersion = ext.project.projectVersion
sourceCompatibility = 1.8
targetCompatibility = 1.8
// 设置编译时的编码
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
// 设置编译时的编码
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
// 设置项目的资源目录位置
sourceSets.main.resources.srcDirs = ["src/main/java", "src/main/resources"]
mainClassName = 'com.stevejrong.music.factory.boot.MusicFactoryApplication'
// 设置Jar包属性
jar {
// 生成Jar包的基础名
baseName = jarBaseName
// 生成Jar包的版本号
version jarVersion
// 生成Jar包的manifest清单属性
manifest {
attributes 'Manifest-Version': 1.0,
'Main-Class': 'com.stevejrong.music.factory.boot.MusicFactoryApplication'
}
}
// 设置项目的软件源库
repositories {
mavenLocal()
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
mavenCentral()
}
dependencies {
compile("org.springframework:spring-context:$rootProject.ext.dependencies.springContextVersion")
compile("org.jsoup:jsoup:$rootProject.ext.dependencies.jsoupVersion")
compile("com.google.guava:guava:$rootProject.ext.dependencies.guavaVersion")
compile("org.apache.commons:commons-lang3:$rootProject.ext.dependencies.commonsLang3Version")
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。