33 lines
840 B
Groovy
33 lines
840 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'com.cubetiqs'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
url "https://oss-internal.cubetiqs.com/repository/maven-public/"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// import a BOM
|
|
implementation platform('org.springframework.boot:spring-boot-dependencies:2.3.0.RELEASE')
|
|
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
}
|
|
|
|
//uploadArchives {
|
|
// repositories {
|
|
// mavenDeployer {
|
|
// repository(url: "${nexusUrl}/repository/maven-releases/") {
|
|
// authentication(userName: nexusUsername, password: nexusPassword)
|
|
// }
|
|
// snapshotRepository(url: "${nexusUrl}/repository/maven-snapshots") {
|
|
// authentication(userName: nexusUsername, password: nexusPassword)
|
|
// }
|
|
// }
|
|
// }
|
|
//} |