Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions CHANGES_NEXT_RELEASE
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
-[cygnus-ngsi][GenericRowAggregator] Fix generic row aggregator name used in logs
-[cygnus-commons] Upgrade httpclient dependency from 4.3.6 to 4.5.13 due to security vulnerability
-[cygnus-ngsi][NGSINameMappingsInterceptor] Now JsonPath expressions are allowed while mapping attributes, Interceptor can be configured to don't stop on first match. (#1856)
-[cygnus-ngsi][GenericRowAggregator] Fix generic row aggregator name used in logs
-[cygnus-commons] Upgrade httpclient dependency from 4.3.6 to 4.5.13 due to security vulnerability
7 changes: 7 additions & 0 deletions cygnus-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@
</properties>

<dependencies>
<!-- https://mvnrepository.com/artifact/com.jayway.jsonpath/json-path -->
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<version>2.4.0</version>
</dependency>
<!-- Required for testing -->
<dependency>
<groupId>org.mockito</groupId>
Expand Down Expand Up @@ -144,6 +150,7 @@
<skipTests>true</skipTests>
</configuration>
</plugin>

<!-- Explicit Java version declaration in needed in some systems in which Maven seems not -->
<!-- being able to find itself the right version. Many systems don't need this declaration -->
<!-- but it doesn't use to hurt anyway -->
Expand Down
Loading