Skip to content

Commit ffe5713

Browse files
vishnu-alapatiVishnu
andauthored
Uplift of Jackson-databind to 2.13.3. (#197)
* uplifted the jackson-databind to 2.13.3 Co-authored-by: Vishnu <vishnu.alapati@ericsson.com>
1 parent 624541d commit ffe5713

File tree

5 files changed

+26
-24
lines changed

5 files changed

+26
-24
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
## 2.1.5
2+
- Updated eiffel-remrem-parent version from 2.0.6 to 2.0.7
3+
- updated eiffel-remrem-semantics version from 2.2.1 to 2.2.2
24
- Introduced new (/message_protocols) Endpoint which returns the available message protocols list and their respective edition names.
35
- Updated all curl commands in documentation
46

cli/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@
4646
<groupId>org.apache.commons</groupId>
4747
</exclusion>
4848
<exclusion>
49-
<groupId>org.apache.logging.log4j</groupId>
50-
<artifactId>log4j-to-slf4j</artifactId>
49+
<groupId>org.apache.logging.log4j</groupId>
50+
<artifactId>log4j-to-slf4j</artifactId>
5151
</exclusion>
5252
</exclusions>
5353
</dependency>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
<parent>
77
<groupId>com.github.eiffel-community</groupId>
88
<artifactId>eiffel-remrem-parent</artifactId>
9-
<version>2.0.6</version>
9+
<version>2.0.7</version>
1010
</parent>
1111

1212
<properties>
1313
<eiffel-remrem-generate.version>2.1.5</eiffel-remrem-generate.version>
1414
<eiffel-remrem-shared.version>2.0.5</eiffel-remrem-shared.version>
15-
<eiffel-remrem-semantics.version>2.2.1</eiffel-remrem-semantics.version>
15+
<eiffel-remrem-semantics.version>2.2.2</eiffel-remrem-semantics.version>
1616
</properties>
1717
<artifactId>eiffel-remrem-generate</artifactId>
1818
<version>${eiffel-remrem-generate.version}</version>

service/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@
2727
<groupId>org.springframework.boot</groupId>
2828
<artifactId>spring-boot-starter-security</artifactId>
2929
<exclusions>
30-
<exclusion>
31-
<groupId>org.apache.logging.log4j</groupId>
32-
<artifactId>log4j-to-slf4j</artifactId>
33-
</exclusion>
30+
<exclusion>
31+
<groupId>org.apache.logging.log4j</groupId>
32+
<artifactId>log4j-to-slf4j</artifactId>
33+
</exclusion>
3434
</exclusions>
3535
</dependency>
3636
<dependency>

service/src/main/java/com/ericsson/eiffel/remrem/generate/controller/RemremGenerateController.java

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -252,22 +252,22 @@ public JsonElement getVersions() {
252252
}
253253

254254
/**
255-
* Used to display the available message protocol list and their edition names.
256-
*
257-
* @return json with service names and respective edition details.
258-
*/
259-
@ApiOperation(value = "To get the available message protocol list and edition names", response = String.class)
260-
@RequestMapping(value = "/message_protocols", method = RequestMethod.GET)
261-
public JsonElement getMessageProtocols() {
262-
JsonArray array = new JsonArray();
263-
for (MsgService service : msgServices) {
264-
JsonObject protocolObject = new JsonObject();
265-
protocolObject.addProperty("name", service.getServiceName());
266-
protocolObject.addProperty("edition", service.getProtocolEdition());
267-
array.add(protocolObject);
268-
}
269-
return array;
270-
}
255+
* Used to display the available message protocol list and their edition names.
256+
*
257+
* @return json with service names and respective edition details.
258+
*/
259+
@ApiOperation(value = "To get the available message protocol list and edition names", response = String.class)
260+
@RequestMapping(value = "/message_protocols", method = RequestMethod.GET)
261+
public JsonElement getMessageProtocols() {
262+
JsonArray array = new JsonArray();
263+
for (MsgService service : msgServices) {
264+
JsonObject protocolObject = new JsonObject();
265+
protocolObject.addProperty("name", service.getServiceName());
266+
protocolObject.addProperty("edition", service.getProtocolEdition());
267+
array.add(protocolObject);
268+
}
269+
return array;
270+
}
271271

272272
/**
273273
* Returns available Eiffel event types as listed in EiffelEventType enum.

0 commit comments

Comments
 (0)