代码拉取完成,页面将自动刷新
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'maven'
sourceCompatibility = 1.8
group 'com.tech.teigha'
version '1.0-SNAPSHOT'
mainClassName = 'TeighaStartApplication'
repositories {
mavenCentral()
maven {
url 'http://localhost:9091/repository/maven-public/' //配置阿里云 或者 自己公司的仓库
}
// 仓库地址,引入三方外包文件夹
flatDir dirs: 'lib/teighajava/vc10_amd64dll'
}
/**
* implementation 表示依赖,即 只依赖不打包进来。
*/
dependencies {
compile group: 'com.opendesign.core', name: 'TeighaJavaCore', version: '1.0.0'
compile group: 'com.opendesign.td', name: 'TeighaJavaDwg', version: '1.0.0'
compile 'com.alibaba:easyexcel:2.1.1'
compile 'com.lwd.gradle:boot-demo-api:1.0-SNAPSHOT'
implementation("org.slf4j:slf4j-nop:1.7.26")
implementation 'org.projectlombok:lombok:1.18.8'
// implementation("org.springframework.boot:spring-boot-gradle-plugin:2.3.7.RELEASE")
annotationProcessor 'org.projectlombok:lombok:1.18.8'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
}
//打包源代码
//task sourcesJar(type: Jar, dependsOn: classes) {
// from sourceSets.main.allSource
//}
//
//artifacts {
// archives sourcesJar
//}
//上传到nexus-snapshot
//uploadArchives {
// repositories {
// mavenDeployer {
// repository(url: "http://localhost:9091/repository/maven-snapshots/") {
// authentication(userName: "admin", password: "admin123")
// }
// pom.version = "1.0-SNAPSHOT"
// pom.artifactId = "teigha-core"
// pom.groupId = "com.tech.teigha"
// }
// }
//}
//上传到 nexus-release,记得改名字,
//uploadArchives {
// repositories {
// mavenDeployer {
// repository(url: "http://localhost:9091/repository/maven-releases/") {
// authentication(userName: "admin", password: "admin123")
// }
// pom.version = "1.0-RELEASES"
// pom.artifactId = "teigha-core"
// pom.groupId = "com.tech.teigha"
// }
// }
//}
test {
useJUnitPlatform()
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。