2020-05-18 14:08:22 +08:00
|
|
|
buildscript {
|
|
|
|
|
dependencies {
|
|
|
|
|
classpath("org.springframework.boot:spring-boot-gradle-plugin:$spring_version")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
apply plugin: 'org.springframework.boot'
|
|
|
|
|
|
|
|
|
|
jar.enabled = true //jar SKIPPED问题,不设置可能会无法打jar
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
compile project(":src:zeus.domain")
|
|
|
|
|
compile project(":src:zeus.query")
|
|
|
|
|
compile "com.synebula:gaea.app:$gaea_version"
|
|
|
|
|
compile "com.synebula:gaea.mongo:$gaea_version"
|
2020-05-19 00:14:23 +08:00
|
|
|
|
|
|
|
|
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
|
2020-05-18 14:08:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
publishing {
|
|
|
|
|
publications {
|
2020-05-19 00:14:23 +08:00
|
|
|
publish(MavenPublication) {
|
2020-05-18 14:08:22 +08:00
|
|
|
group 'com.synebula'
|
|
|
|
|
artifactId 'zeus.app'
|
|
|
|
|
version "$version"
|
|
|
|
|
from components.java
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|