12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- plugins {
- id 'java'
- id 'application'
- id "com.github.johnrengelman.shadow" version "7.1.2"
- }
- group 'com.incubator.center'
- version '1.0-SNAPSHOT'
- application {
- mainClassName = 'com.incubator.center.CenterServerStart'
- }
- jar.enabled = false
- shadowJar {
- zip64 true
-
- archiveBaseName.set('incubator-center')
-
- archiveVersion.set('1.0-SNAPSHOT')
-
- archiveClassifier.set('')
- manifest
- attributes
- }
- }
- dependencies
- implementation
- testImplementation
- testRuntimeOnly
- }
- assemble.dependsOn(shadowJar)
- test
- useJUnitPlatform()
- }
|