代码拉取完成,页面将自动刷新
同步操作将从 newflydd/jblog 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
buildscript {
repositories {
jcenter()
}
}
apply plugin: "java"
apply plugin: "war"
apply plugin: "eclipse"
sourceCompatibility = 1.8
version = "0.0.1-SNAPSHOT"
war.baseName = "jblog"
project.webAppDirName = "src/main/webapp"
//扩展属性放在ext的内部类中
ext{
hibernate_version="4.3.9.Final"
spring_version="4.2.3.RELEASE"
}
configurations {
provided
}
sourceSets {
main{
java.srcDirs = [ "src/main/java","src/third/java" ] //引入要编译的JAVA代码文件夹
resources.srcDirs = [ "src/main/java" ] //引入资源文件,打包时才会将配置文件植入war文件
}
main.compileClasspath += configurations.provided
test.compileClasspath += configurations.provided
test.runtimeClasspath += configurations.provided
}
repositories {
mavenLocal()
maven {url "http://maven.oschina.net/content/groups/public/"}
mavenCentral()
jcenter()
}
dependencies {
compile files(
"C:/workspace/lib/java/kaptcha-2.3.2.jar",
"C:/workspace/lib/java/commons-fileupload-1.3.1.jar"
)
compile(
"org.hibernate:hibernate-core:${hibernate_version}",
"org.springframework:spring-core:${spring_version}",
"org.springframework:spring-beans:${spring_version}",
"org.springframework:spring-context:${spring_version}",
"org.springframework:spring-tx:${spring_version}",
"org.springframework:spring-web:${spring_version}",
"org.springframework:spring-webmvc:${spring_version}",
"org.springframework:spring-orm:${spring_version}",
"log4j:log4j:1.2.17",
"mysql:mysql-connector-java:5.1.37",
"org.freemarker:freemarker:2.3.23",
"org.json:json:20151123",
"commons-codec:commons-codec:1.9",
"commons-io:commons-io:2.4"
)
testCompile "junit:junit:4.7"
provided "javax.servlet:javax.servlet-api:4.+"
}
//注意下面这个配置,新版本gradle如果不使用数组添加的话会导致eclipse频繁报错
eclipse.classpath.plusConfigurations += [configurations.provided]
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。