初始化项目

This commit is contained in:
2020-05-18 14:08:22 +08:00
commit 606747850f
17 changed files with 324 additions and 0 deletions

28
src/zeus.app/build.gradle Normal file
View File

@@ -0,0 +1,28 @@
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"
}
publishing {
publications {
mavenJava(MavenPublication) {
group 'com.synebula'
artifactId 'zeus.app'
version "$version"
from components.java
}
}
}