vtm-models module, fix #580

This commit is contained in:
Emux
2018-09-05 14:50:54 +03:00
parent 272ce1d9b6
commit 3bba870c90
7 changed files with 21 additions and 2 deletions

17
vtm-models/build.gradle Normal file
View File

@@ -0,0 +1,17 @@
apply plugin: 'java-library'
apply plugin: 'maven'
dependencies {
api project(':vtm')
}
sourceSets {
main.java.srcDirs = ['src']
main.resources.srcDirs = ['resources']
}
if (project.hasProperty("SONATYPE_USERNAME")) {
afterEvaluate {
project.apply from: "${rootProject.projectDir}/deploy.gradle"
}
}