Skip to content

Commit e8882f1

Browse files
committed
Merge branch 'development' into 'master'
Development See merge request FAN/def-pi!206
2 parents 60d9f7f + a180d06 commit e8882f1

File tree

21 files changed

+67
-35
lines changed

21 files changed

+67
-35
lines changed

api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>org.flexiblepower.defpi</groupId>
1010
<artifactId>master</artifactId>
11-
<version>20.04-SNAPSHOT</version>
11+
<version>20.04.1</version>
1212
<relativePath>../master/pom.xml</relativePath>
1313
</parent>
1414

codegen-common/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>org.flexiblepower.defpi</groupId>
1111
<artifactId>master</artifactId>
12-
<version>20.04-SNAPSHOT</version>
12+
<version>20.04.1</version>
1313
<relativePath>../master/pom.xml</relativePath>
1414
</parent>
1515

@@ -33,7 +33,7 @@
3333
<dependency>
3434
<groupId>org.raml</groupId>
3535
<artifactId>raml-parser-2</artifactId>
36-
<version>1.0.39</version>
36+
<version>1.0.51</version>
3737
</dependency>
3838

3939
<dependency>

codegen-common/src/main/java/org/flexiblepower/codegen/compiler/ProtoCompiler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public static String getOsName() {
9797
* @return The name of the current system architecture (e.g x86_64, x64_32).
9898
*/
9999
static String getArchitecture() {
100-
return System.getProperty("os.arch").equals("amd64") ? "x86_64" : "x86_32";
100+
return System.getProperty("os.arch").contains("64") ? "x86_64" : "x86_32";
101101
}
102102

103103
/**

commons/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>org.flexiblepower.defpi</groupId>
1111
<artifactId>master</artifactId>
12-
<version>20.04-SNAPSHOT</version>
12+
<version>20.04.1</version>
1313
<relativePath>../master/pom.xml</relativePath>
1414
</parent>
1515

dashboard-gateway/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.flexiblepower.defpi</groupId>
88
<artifactId>defpi-service</artifactId>
9-
<version>20.04-SNAPSHOT</version>
9+
<version>20.04.1</version>
1010
<relativePath>../master/service-parent/defpi-service/pom.xml</relativePath>
1111
</parent>
1212

@@ -39,7 +39,7 @@
3939
<dependency>
4040
<groupId>org.eclipse.jetty</groupId>
4141
<artifactId>jetty-server</artifactId>
42-
<version>9.4.26.v20200117</version>
42+
<version>9.4.30.v20200611</version>
4343
</dependency>
4444
<dependency>
4545
<groupId>commons-io</groupId>

dashboard/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.flexiblepower.defpi</groupId>
77
<artifactId>defpi-service</artifactId>
8-
<version>20.04-SNAPSHOT</version>
8+
<version>20.04.1</version>
99
<relativePath>../master/service-parent/defpi-service/pom.xml</relativePath>
1010
</parent>
1111

@@ -51,13 +51,13 @@
5151
<dependency>
5252
<groupId>org.apache.cxf</groupId>
5353
<artifactId>cxf-rt-rs-client</artifactId>
54-
<version>3.3.5</version>
54+
<version>3.3.7</version>
5555
</dependency>
5656
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider -->
5757
<dependency>
5858
<groupId>com.fasterxml.jackson.jaxrs</groupId>
5959
<artifactId>jackson-jaxrs-json-provider</artifactId>
60-
<version>2.10.2</version>
60+
<version>2.11.1</version>
6161
</dependency>
6262
</dependencies>
6363

master/pom.xml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>org.flexiblepower.defpi</groupId>
77
<artifactId>master</artifactId>
8-
<version>20.04-SNAPSHOT</version>
8+
<version>20.04.1</version>
99
<packaging>pom</packaging>
1010

1111
<name>dEF-Pi master POM</name>
@@ -64,13 +64,13 @@
6464

6565
<!-- The plugin needs the protobuf version to obtain the compiler from
6666
maven central explicitly -->
67-
<protobuf.version>3.11.3</protobuf.version>
68-
<jackson.databind.version>2.10.2</jackson.databind.version>
69-
<json.version>20190722</json.version>
70-
<mongodb.version>3.12.1</mongodb.version>
71-
<log4j.version>2.13.0</log4j.version>
72-
<swagger.version>1.6.0</swagger.version>
73-
<junit.version>5.6.0</junit.version>
67+
<protobuf.version>3.12.2</protobuf.version>
68+
<jackson.databind.version>2.11.1</jackson.databind.version>
69+
<json.version>20200518</json.version>
70+
<mongodb.version>3.12.6</mongodb.version>
71+
<log4j.version>2.13.3</log4j.version>
72+
<swagger.version>1.6.2</swagger.version>
73+
<junit.version>5.6.2</junit.version>
7474
</properties>
7575

7676
<prerequisites>
@@ -116,7 +116,7 @@
116116
<dependency>
117117
<groupId>org.projectlombok</groupId>
118118
<artifactId>lombok</artifactId>
119-
<version>1.18.10</version>
119+
<version>1.18.12</version>
120120
<scope>provided</scope>
121121
</dependency>
122122

@@ -147,7 +147,7 @@
147147
<dependency>
148148
<groupId>org.json</groupId>
149149
<artifactId>json</artifactId>
150-
<version>20190722</version>
150+
<version>${json.version}</version>
151151
</dependency>
152152

153153
<dependency>
@@ -219,7 +219,7 @@
219219
<plugin>
220220
<groupId>org.apache.maven.plugins</groupId>
221221
<artifactId>maven-surefire-plugin</artifactId>
222-
<version>3.0.0-M2</version>
222+
<version>3.0.0-M5</version>
223223
<configuration>
224224
<systemProperties>
225225
<property>

master/service-parent/defpi-service/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.flexiblepower.defpi</groupId>
99
<artifactId>service-parent</artifactId>
10-
<version>20.04-SNAPSHOT</version>
10+
<version>20.04.1</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

@@ -27,12 +27,12 @@
2727
<dependency>
2828
<groupId>org.json</groupId>
2929
<artifactId>json</artifactId>
30-
<version>20190722</version>
30+
<version>20200518</version>
3131
</dependency>
3232
<dependency>
3333
<groupId>commons-io</groupId>
3434
<artifactId>commons-io</artifactId>
35-
<version>2.6</version>
35+
<version>2.7</version>
3636
</dependency>
3737
</dependencies>
3838
</dependencyManagement>

master/service-parent/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>org.flexiblepower.defpi</groupId>
88
<artifactId>service-parent</artifactId>
9-
<version>20.04-SNAPSHOT</version>
9+
<version>20.04.1</version>
1010
<packaging>pom</packaging>
1111

1212
<name>dEF-Pi service parent POM</name>
@@ -65,15 +65,15 @@
6565
<java.target>1.8</java.target>
6666
<license.licenseName>apache_v2</license.licenseName>
6767

68-
<defpi.version>20.04-SNAPSHOT</defpi.version>
68+
<defpi.version>20.04.1</defpi.version>
6969

7070
<defpi.sources.generated>${project.build.directory}/generated-sources/java</defpi.sources.generated>
7171
<defpi.resources.generated>${project.build.directory}/generated-resources/defpi</defpi.resources.generated>
7272
<defpi.service.resources>defpi-resources</defpi.service.resources>
7373
<defpi.dockerfolder.x86>docker</defpi.dockerfolder.x86>
7474
<defpi.dockerfolder.arm>docker-arm</defpi.dockerfolder.arm>
7575

76-
<protobuf.version>3.11.1</protobuf.version>
76+
<protobuf.version>3.12.2</protobuf.version>
7777

7878
<!-- Main class for any service should be the main from the library -->
7979
<mainClass>org.flexiblepower.service.ServiceMain</mainClass>

maven-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>org.flexiblepower.defpi</groupId>
1212
<artifactId>master</artifactId>
13-
<version>20.04-SNAPSHOT</version>
13+
<version>20.04.1</version>
1414
<relativePath>../master/pom.xml</relativePath>
1515
</parent>
1616

0 commit comments

Comments
 (0)