1 Star 5 Fork 4

Winston/TEIGHA-LAVA

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.gradle 2.19 KB
一键复制 编辑 原始数据 按行查看 历史
linwd 提交于 2021-09-22 21:14 . [MOD] 此次修改内容如下:
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()
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/winlinwd/teigha.git
[email protected]:winlinwd/teigha.git
winlinwd
teigha
TEIGHA-LAVA
master

搜索帮助