Fixed changelog. Merged from Release 4.3.0

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/information-system/resource-registry-client@144345 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Luca Frosini 2017-02-27 10:34:55 +00:00
parent 2bbeb736ea
commit 4be6b20637
2 changed files with 45 additions and 24 deletions

View File

@ -1,7 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE xml> <!DOCTYPE xml>
<ReleaseNotes> <ReleaseNotes>
<Changeset component="org.gcube.information-system.resource-registry-client.1-0-0" date="${buildDate}"> <Changeset component="org.gcube.information-system.resource-registry-client.1-2-0" date="${buildDate}">
<Change>Added API to support Entity-Relation navigation</Change>
<Change>Added API to get the list of ER types and their own schema</Change>
<Change>Added ResourceRegistryException json deserialization</Change>
</Changeset>
<Changeset component="org.gcube.information-system.resource-registry-client.1-1-0" date="2016-12-16">
<Change>Improved code quality</Change>
</Changeset>
<Changeset component="org.gcube.information-system.resource-registry-client.1-0-0" date="2016-11-03">
<Change>First Release</Change> <Change>First Release</Change>
</Changeset> </Changeset>
</ReleaseNotes> </ReleaseNotes>

59
pom.xml
View File

@ -1,17 +1,30 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<modelVersion>4.0.0</modelVersion> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent> <modelVersion>4.0.0</modelVersion>
<groupId>org.gcube.tools</groupId> <parent>
<artifactId>maven-parent</artifactId> <groupId>org.gcube.tools</groupId>
<version>1.0.0</version> <artifactId>maven-parent</artifactId>
</parent> <version>1.0.0</version>
<groupId>org.gcube.information-system</groupId> </parent>
<artifactId>resource-registry-client</artifactId> <groupId>org.gcube.information-system</groupId>
<version>1.2.0-SNAPSHOT</version> <artifactId>resource-registry-client</artifactId>
<name>Resource Registry Client</name> <version>1.2.0-SNAPSHOT</version>
<description>Contains Idempotent API for Resource Registry</description> <name>Resource Registry Client</name>
<description>Contains Idempotent API for Resource Registry</description>
<dependencyManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<distroDirectory>${project.basedir}/distro</distroDirectory>
<serviceClass>InformationSystem</serviceClass>
</properties>
<scm>
<connection>scm:https://svn.d4science.research-infrastructures.eu/gcube/trunk/information-system/${project.artifactId}</connection>
<developerConnection>scm:https://svn.d4science.research-infrastructures.eu/gcube//trunk/information-system/${project.artifactId}</developerConnection>
<url>https://svn.d4science.research-infrastructures.eu/gcube/trunk/information-system/${project.artifactId}</url>
</scm>
<dependencyManagement>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.gcube.distribution</groupId> <groupId>org.gcube.distribution</groupId>
@ -29,14 +42,14 @@
</dependency> </dependency>
</dependencies> </dependencies>
</dependencyManagement> </dependencyManagement>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.gcube.common</groupId> <groupId>org.gcube.common</groupId>
<artifactId>authorization-client</artifactId> <artifactId>authorization-client</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.gcube.core</groupId> <groupId>org.gcube.core</groupId>
<artifactId>common-generic-clients</artifactId> <artifactId>common-generic-clients</artifactId>
@ -49,24 +62,24 @@
<groupId>org.gcube.core</groupId> <groupId>org.gcube.core</groupId>
<artifactId>common-fw-clients</artifactId> <artifactId>common-fw-clients</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.gcube.information-system</groupId> <groupId>org.gcube.information-system</groupId>
<artifactId>resource-registry-api</artifactId> <artifactId>resource-registry-api</artifactId>
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version> <version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.gcube.information-system</groupId> <groupId>org.gcube.information-system</groupId>
<artifactId>information-system-model</artifactId> <artifactId>information-system-model</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.slf4j</groupId> <groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId> <artifactId>slf4j-api</artifactId>
</dependency> </dependency>
<!-- Test Dependency --> <!-- Test Dependency -->
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>
@ -131,4 +144,4 @@
</plugins> </plugins>
</build> </build>
</project> </project>