fix bug + version update

develop
bvn13 2020-04-20 11:06:08 +03:00
parent 188abb2239
commit 7f950fb2a5
6 changed files with 7 additions and 7 deletions

View File

@ -35,7 +35,7 @@ subprojects {
}
group = 'com.bvn13.covid19'
version = '0.0.2'
version = '0.0.3'
apply plugin: 'java'
apply plugin: 'idea'

View File

@ -1,6 +1,6 @@
#!/bin/bash
version=0.0.2
version=0.0.3
./gradlew :covid19-db-migrator:clean :covid19-db-migrator:assemble
./gradlew :covid19-site:clean :covid19-site:assemble

View File

@ -1,6 +1,6 @@
apply plugin: 'org.springframework.boot'
version = '0.0.2'
version = '0.0.3'
dependencies {
compile(project(':covid19-model'))

View File

@ -1,6 +1,6 @@
apply plugin: 'org.springframework.boot'
version = '0.0.2'
version = '0.0.3'
dependencies {
implementation 'org.springframework.boot:spring-boot-starter'

View File

@ -1,6 +1,6 @@
apply plugin: 'org.springframework.boot'
version = '0.0.2'
version = '0.0.3'
dependencies {
compile(project(':covid19-model'))

View File

@ -1,6 +1,6 @@
apply plugin: 'org.springframework.boot'
version = '0.0.2'
version = '0.0.3'
dependencies {
compile(project(':covid19-model'))
@ -17,5 +17,5 @@ dependencies {
}
springBoot {
mainClassName 'com.bvn13.covid19.api.Covid19ApiApplication'
mainClassName 'com.bvn13.covid19.site.Covid19SiteApplication'
}