Feature horizontal scalability (#305)
Signed-off-by: kaizimmerm <kai.zimmermann@bosch-si.com>
This commit is contained in:
committed by
Kai Zimmermann
parent
07cb62a3dd
commit
866bc72114
83
pom.xml
83
pom.xml
@@ -40,7 +40,6 @@
|
||||
<module>hawkbit-ui</module>
|
||||
<module>hawkbit-artifact-repository-mongo</module>
|
||||
<module>hawkbit-autoconfigure</module>
|
||||
<module>hawkbit-cache-redis</module>
|
||||
<module>hawkbit-test-report</module>
|
||||
<module>examples</module>
|
||||
<module>extensions</module>
|
||||
@@ -106,8 +105,10 @@
|
||||
|
||||
<!-- Spring boot version overrides (should be reviewed with every boot upgrade) - START -->
|
||||
<!-- Newer versions needed than defined in Boot -->
|
||||
<spring-amqp.version>1.6.2.RELEASE</spring-amqp.version>
|
||||
<spring-amqp.version>1.6.3.RELEASE</spring-amqp.version>
|
||||
<spring-security.version>4.1.2.RELEASE</spring-security.version>
|
||||
<spring.version>4.3.3.RELEASE</spring.version>
|
||||
<spring-integration.version>4.3.2.RELEASE</spring-integration.version>
|
||||
<spring-data-releasetrain.version>Hopper-SR4</spring-data-releasetrain.version>
|
||||
<!-- Support for MongoDB 3 -->
|
||||
<mongodb.version>3.2.2</mongodb.version>
|
||||
@@ -148,6 +149,11 @@
|
||||
<commons-collections4.version>4.1</commons-collections4.version>
|
||||
<json.version>20141113</json.version>
|
||||
<rsql-parser.version>2.1.0</rsql-parser.version>
|
||||
<spring.cloud.version>Camden.SR1</spring.cloud.version>
|
||||
<feign.extension.version>9.3.1</feign.extension.version>
|
||||
<jayway.awaitility.version>1.7.0</jayway.awaitility.version>
|
||||
<io-protostuff.version>1.3.5</io-protostuff.version>
|
||||
|
||||
<!-- Misc libraries versions - END -->
|
||||
|
||||
<!-- Release - START -->
|
||||
@@ -459,13 +465,14 @@
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<!-- Logging -->
|
||||
<dependency>
|
||||
<groupId>org.slf4j</groupId>
|
||||
<artifactId>slf4j-api</artifactId>
|
||||
<version>${slf4j.version}</version>
|
||||
</dependency>
|
||||
<!-- Vaadin -->
|
||||
<dependency>
|
||||
<groupId>com.vaadin</groupId>
|
||||
<artifactId>vaadin-bom</artifactId>
|
||||
<version>${vaadin.version}</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.vaadin</groupId>
|
||||
<artifactId>vaadin-spring-boot</artifactId>
|
||||
@@ -481,26 +488,6 @@
|
||||
<artifactId>vaadin-spring-ext-security</artifactId>
|
||||
<version>${vaadin.spring.addon.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.vaadin</groupId>
|
||||
<artifactId>vaadin-server</artifactId>
|
||||
<version>${vaadin.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.vaadin</groupId>
|
||||
<artifactId>vaadin-push</artifactId>
|
||||
<version>${vaadin.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.vaadin</groupId>
|
||||
<artifactId>vaadin-client</artifactId>
|
||||
<version>${vaadin.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.vaadin</groupId>
|
||||
<artifactId>vaadin-themes</artifactId>
|
||||
<version>${vaadin.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.vaadin.addons.lazyquerycontainer</groupId>
|
||||
<artifactId>vaadin-lazyquerycontainer</artifactId>
|
||||
@@ -549,6 +536,13 @@
|
||||
<version>${jlorem.version}</version>
|
||||
</dependency>
|
||||
<!-- Spring -->
|
||||
<dependency>
|
||||
<groupId>org.springframework.cloud</groupId>
|
||||
<artifactId>spring-cloud-dependencies</artifactId>
|
||||
<version>${spring.cloud.version}</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-actuator</artifactId>
|
||||
@@ -605,6 +599,34 @@
|
||||
<artifactId>org.eclipse.persistence.jpa</artifactId>
|
||||
<version>${eclipselink.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.github.openfeign</groupId>
|
||||
<artifactId>feign-jackson</artifactId>
|
||||
<version>${feign.extension.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.github.openfeign</groupId>
|
||||
<artifactId>feign-gson</artifactId>
|
||||
<version>${feign.extension.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.github.openfeign</groupId>
|
||||
<artifactId>feign-jaxrs</artifactId>
|
||||
<version>${feign.extension.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Protostuff Io -->
|
||||
<dependency>
|
||||
<groupId>io.protostuff</groupId>
|
||||
<artifactId>protostuff-core</artifactId>
|
||||
<version>${io-protostuff.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.protostuff</groupId>
|
||||
<artifactId>protostuff-runtime</artifactId>
|
||||
<version>${io-protostuff.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- RSQL / FIQL parser -->
|
||||
<dependency>
|
||||
<groupId>cz.jirutka.rsql</groupId>
|
||||
@@ -700,6 +722,11 @@
|
||||
<artifactId>guava</artifactId>
|
||||
<version>${guava.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.jayway.awaitility</groupId>
|
||||
<artifactId>awaitility</artifactId>
|
||||
<version>${jayway.awaitility.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
</project>
|
||||
Reference in New Issue
Block a user