初始化项目

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

View File

@@ -0,0 +1,15 @@
dependencies {
compile "com.synebula:gaea.mongo:$gaea_version"
}
publishing {
publications {
mavenJava(MavenPublication) {
group 'com.synebula'
artifactId 'zeus.view'
version "$version"
from components.java
}
}
}

View File

@@ -0,0 +1,9 @@
package com.synebula.zeus.query.view
class AccountView {
var id: String = ""
var name: String = ""
var password: String = ""
}