pom fixes

This commit is contained in:
Fabio Sinibaldi 2021-02-12 16:16:47 +01:00
parent 769d4bd5ed
commit 6559264e31
5 changed files with 89 additions and 20 deletions

View File

@ -1,6 +1,6 @@
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
# Changelog for org.gcube.spatial.data.geonetwork
# Changelog for org.gcube.spatial.data.gcube-geonetwork-client
## [v0.0.1-SNAPSHOT] - 2021-2-11
First release

View File

@ -8,7 +8,7 @@
</parent>
<groupId>org.gcube.spatial.data</groupId>
<artifactId>gcube-geonetwork-client</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>0.0.1-SNAPSHOT</version>
<name>gCube GeoNetwork Client</name>

View File

@ -8,7 +8,7 @@
</parent>
<groupId>org.gcube.spatial.data</groupId>
<artifactId>gcube-geoserver-client</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>0.0.1-SNAPSHOT</version>
<name>Gcube GeoServer client</name>

101
pom.xml
View File

@ -8,6 +8,7 @@
</parent>
<groupId>org.gcube.spatial.data</groupId>
<artifactId>gcube-sdi-suite</artifactId>
<packaging>pom</packaging>
<version>1.0.0-SNAPSHOT</version>
<name>Gcube SDI Suite</name>
@ -24,6 +25,28 @@
<url>${gitBaseUrl}/${project.artifactId}.git</url>
</scm>
<modules>
<!-- REST clients to third parties -->
<module>sdi-generic-client</module>
<module>gcube-geonetwork-client</module>
<module>gcube-geoserver-client</module>
<!-- TBD -->
<!-- common -->
<!-- <module>sdi-interface</module> -->
<!-- client -->
<!-- <module>sdi-library</module> -->
<!-- service -->
<!-- <module>sdi-service</module> -->
</modules>
<dependencyManagement>
<dependencies>
<dependency>
@ -37,33 +60,79 @@
</dependencyManagement>
<dependencies>
<!-- GCUBE -->
<dependency>
<groupId>org.gcube.common</groupId>
<artifactId>authorization-client</artifactId>
</dependency>
<!-- TEST -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
</repositories>
<description>Java library used to communicate with GeoNetwork instances in D4Science infrastructure.</description>
<description>Suite of components to interact with gCube SDI</description>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<versionRange>[1.0.0,)</versionRange>
<goals>
<goal>flatten</goal>
</goals>
</pluginExecutionFilter>
<action>
<execute>
<runOnIncremental>false</runOnIncremental>
</execute>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.0.1</version>
<configuration>
<updatePomFile>true</updatePomFile>
<outputDirectory>target</outputDirectory>
</configuration>
<executions>
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

View File

@ -8,7 +8,7 @@
</parent>
<groupId>org.gcube.spatial.data</groupId>
<artifactId>sdi-generic-client</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>0.0.1-SNAPSHOT</version>
<name>Generic SDI Client</name>