代码拉取完成,页面将自动刷新
同步操作将从 fuhoujun/e 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
buildscript {
ext {
springBootVersion = "${springBootVersion}"
}
repositories {
//mavenCentral()
maven { url "http://maven.aliyun.com/nexus/content/groups/public" }
maven { url "https://repo.spring.io/snapshot" }
maven { url "https://repo.spring.io/milestone" }
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
ext.customSecurityRef = ""
}
apply plugin: "java"
apply plugin:'groovy'
repositories {
//mavenCentral()
maven { url "http://maven.aliyun.com/nexus/content/groups/public" }
maven { url "https://repo.spring.io/snapshot" }
maven { url "https://repo.spring.io/milestone" }
}
allprojects {
apply plugin: "java"
//apply plugin: "pmd"
// apply plugin: "findbugs"
//apply plugin: "checkstyle"
repositories {
//mavenCentral()
maven { url "http://maven.aliyun.com/nexus/content/groups/public" }
maven { url "https://repo.spring.io/snapshot" }
maven { url "https://repo.spring.io/milestone" }
}
dependencies {
compile "org.codehaus.groovy:groovy-all:${groovyVersion}"
testCompile("org.springframework.boot:spring-boot-starter-test:${springBootVersion}")
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
}
subprojects {
apply plugin: "java"
apply plugin: "eclipse"
repositories {
//mavenCentral()
maven { url "http://maven.aliyun.com/nexus/content/groups/public" }
maven { url "https://repo.spring.io/snapshot" }
maven { url "https://repo.spring.io/milestone" }
}
jar {
manifest {
attributes("Implementation-Title": project.name,
"Implementation-Vendor": project.group,
"Created-By": project.group,
"Implementation-Version": project.version)
}
}
eclipse {
classpath {
containers.remove("org.eclipse.jdt.launching.JRE_CONTAINER")
}
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
task wrapper(type: Wrapper) {
gradleVersion = "${gradleVersion}"
}
}
task eclean() << {
allprojects.each{
def o = new File(it.projectDir,".project");
o.delete()
o = new File(it.projectDir,"bin");
o.deleteDir()
o = new File(it.projectDir,".settings");
o.deleteDir()
o = new File(it.projectDir,"build.gradle.bak");
o.delete()
o = new File(it.projectDir,"logs");
o.deleteDir()
o = new File(it.projectDir,"build");
o.deleteDir()
o = new File(it.projectDir,".classpath");
o.delete()
o = new File(it.projectDir,".factorypath");
o.delete()
o = new File(it.projectDir,".apt_generated");
o.deleteDir()
o = new File(it.projectDir,".metadata");
o.deleteDir()
}
}
task ecleanBuild() << {
allprojects.each{
def o = new File(it.projectDir,"build");
o.deleteDir()
}
}
task startCrm(dependsOn: 'crm:erun') << {
}
task startUpm(dependsOn: 'e-upm:erun') << {
}
task startCas(dependsOn: 'server-cas:erun') << {
}
task startPortal(dependsOn: 'e-portal:erun') << {
}
task startProxy(dependsOn: 'server-proxy:erun') << {
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。