Upgrade to Spring Boot 1.4 (#415)

* Boot upgrade due to known security issues.

Signed-off-by: kaizimmerm <kai.zimmermann@bosch-si.com>
This commit is contained in:
Kai Zimmermann
2017-01-17 15:03:52 +01:00
committed by GitHub
parent ac85996eb6
commit 1beb2875fa
9 changed files with 37 additions and 15 deletions

View File

@@ -14,6 +14,10 @@ server.tomcat.internal-proxies=.*
vaadin.servlet.productionMode=true
# Sandbox, small files only
spring.http.multipart.max-file-size=100KB
spring.http.multipart.max-request-size=-1
## Configuration for building download URLs - START
hawkbit.artifact.url.protocols.download-http.rel=download-http
hawkbit.artifact.url.protocols.download-http.protocol=https

View File

@@ -35,6 +35,10 @@ hawkbit.server.ui.demo.password=admin
hawkbit.server.ui.demo.user=admin
hawkbit.server.ui.demo.tenant=DEFAULT
# Upload of large files
spring.http.multipart.max-file-size=1024MB
spring.http.multipart.max-request-size=-1
# UI help links
hawkbit.server.ui.links.documentation.root=https://github.com/eclipse/hawkbit
hawkbit.server.ui.links.documentation.deployment-view=https://github.com/eclipse/hawkbit

View File

@@ -10,13 +10,13 @@ Run getting started example
$ java -jar hawkbit-example-mgmt-simulator-#version#.jar
$ java -jar hawkbit-example-mgmt-simulator-#version#-exec.jar
Run create and start rollout example
$ java -jar hawkbit-example-mgmt-simulator-#version#.jar --createrollout
$ java -jar hawkbit-example-mgmt-simulator-#version#-exec.jar --createrollout
## This example shows

View File

@@ -32,6 +32,7 @@
</goals>
<configuration>
<outputDirectory>${baseDir}</outputDirectory>
<classifier>exec</classifier>
<addResources>false</addResources>
<mainClass>org.eclipse.hawkbit.mgmt.client.Application</mainClass>
<layout>JAR</layout>