Compare commits

...

4 Commits

2 changed files with 19 additions and 7 deletions

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [v1.0.1] - 2021-05-11
#### Fixes
[#21387] Harmonize the jackson version to v.2.8.11
Moved to maven-portal-bom.3.6.2
## [v1.0.0] - 2021-01-18 ## [v1.0.0] - 2021-01-18
#### Bug Fixes #### Bug Fixes

18
pom.xml
View File

@ -12,7 +12,7 @@
<groupId>org.gcube.common</groupId> <groupId>org.gcube.common</groupId>
<artifactId>workspace-task-executor-library</artifactId> <artifactId>workspace-task-executor-library</artifactId>
<version>1.0.0</version> <version>1.0.1</version>
<name>workspace-task-executor-library</name> <name>workspace-task-executor-library</name>
<description>The workspace-task-executor-library is a library to execute data miner's algorithms from workspace</description> <description>The workspace-task-executor-library is a library to execute data miner's algorithms from workspace</description>
@ -27,6 +27,7 @@
<distroDirectory>distro</distroDirectory> <distroDirectory>distro</distroDirectory>
<maven.compiler.source>1.7</maven.compiler.source> <maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.target>1.8</maven.compiler.target>
<jackson.version>2.8.11</jackson.version>
</properties> </properties>
<dependencyManagement> <dependencyManagement>
@ -34,7 +35,7 @@
<dependency> <dependency>
<groupId>org.gcube.distribution</groupId> <groupId>org.gcube.distribution</groupId>
<artifactId>maven-portal-bom</artifactId> <artifactId>maven-portal-bom</artifactId>
<version>3.6.0</version> <version>3.6.2</version>
<type>pom</type> <type>pom</type>
<scope>import</scope> <scope>import</scope>
</dependency> </dependency>
@ -52,7 +53,7 @@
<dependency> <dependency>
<groupId>com.fasterxml.jackson.core</groupId> <groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId> <artifactId>jackson-databind</artifactId>
<version>2.6.3</version> <version>${jackson.version}</version>
</dependency> </dependency>
<dependency> <dependency>
@ -94,15 +95,18 @@
</dependency> </dependency>
<!-- LOGGER --> <!-- LOGGER -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</dependency>
<dependency> <dependency>
<groupId>org.slf4j</groupId> <groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId> <artifactId>slf4j-api</artifactId>
</dependency> </dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<scope>test</scope>
</dependency>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>