Skip to content

Commit

Permalink
[Fix] updated to new spring boot and removed sub module versions
Browse files Browse the repository at this point in the history
  • Loading branch information
atennert committed Oct 2, 2017
1 parent cb78ba7 commit e35aad8
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 9 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
jcenter()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.1.6.RELEASE")
classpath("org.springframework.boot:spring-boot-gradle-plugin:1+")
}
}

Expand Down
1 change: 0 additions & 1 deletion controls/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
*/

archivesBaseName = "controls"
version = "0.0.1"

dependencies {
compile project(':homectrl')
Expand Down
1 change: 0 additions & 1 deletion dataprocessing/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
*/

archivesBaseName = "dataProcessing"
version = "0.0.1"

dependencies {
compile project(':homectrl')
Expand Down
1 change: 0 additions & 1 deletion homectrl-com-if/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
*/

archivesBaseName = "homectrlComIf"
version = "0.0.2"

dependencies {
compile project(':homectrl')
Expand Down
1 change: 0 additions & 1 deletion homectrl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
*/

archivesBaseName = "homectrl"
version = "2.0.0"

dependencies {
compile "org.springframework:spring-core:4.3.3.RELEASE"
Expand Down
7 changes: 3 additions & 4 deletions server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@
* HomeCtrl server app bundle
*/

apply plugin: "spring-boot"
apply plugin: "org.springframework.boot"

archivesBaseName = "server"

mainClassName = "de.atennert.homectrl.Main"

bootRepackage {
mainClass = project.mainClassName
mainClass = "de.atennert.homectrl.Main"
executable = true
}

jar {
Expand Down

0 comments on commit e35aad8

Please sign in to comment.