Skip to content

[Waiting for tests] Allow deep Json attribute mapping by Stdr #1980

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
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