Compare commits

...

5 Commits

Author SHA1 Message Date
Roberto Cirillo 1350c8318d Update 'pom.xml'
restore maen-parent version
2024-04-05 11:33:17 +02:00
Roberto Cirillo 8c173c6413 Update 'pom.xml'
change maven-parent version just for test
2024-04-05 11:32:29 +02:00
Francesco Mangiacrapa ca455477f5 Upgraded gcube-smartgears-bom version at 2.4.0 2023-04-04 14:54:32 +02:00
Francesco Mangiacrapa ded177fa55 removed -SNAPSHOT to be released 2023-03-28 12:34:33 +02:00
Francesco Mangiacrapa e5280ee127 Merge pull request 'task_24792' (!7) from task_24792 into master
Reviewed-on: #7
2023-03-28 12:30:19 +02:00
4 changed files with 36 additions and 18 deletions

View File

@ -13,7 +13,11 @@
<wb-module deploy-name="uri-resolver-2.8.1">
<wb-module deploy-name="uri-resolver-2.9.0">
@ -43,6 +47,8 @@
<wb-resource deploy-path="/" source-path="/src/main/webapp" tag="defaultRootSource"/>
@ -58,6 +64,8 @@
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/java"/>
@ -73,10 +81,11 @@
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/resources"/>
<dependent-module archiveName="uri-resolver-manager-1.7.0-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/uri-resolver-manager/uri-resolver-manager">
<dependency-type>uses</dependency-type>
</dependent-module>
@ -106,6 +115,8 @@
<property name="java-output-path" value="/uri-resolver/target/classes"/>
@ -121,6 +132,8 @@
</wb-module>
@ -136,4 +149,6 @@
</project-modules>

View File

@ -4,7 +4,7 @@
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).
## [v2.9.0-SNAPSHOT]
## [v2.9.0]
- GeoPortal-Resolver implemented [#24792]

View File

@ -9,7 +9,7 @@
</parent>
<groupId>org.gcube.data.transfer</groupId>
<artifactId>uri-resolver</artifactId>
<version>2.9.0-SNAPSHOT</version>
<version>2.9.0</version>
<packaging>war</packaging>
<description>The URI Resolver is an HTTP URI resolver implemented as a REST service which gives access trough HTTP to different gcube Resolvers and gCube Applications.</description>
@ -31,7 +31,7 @@
<dependency>
<groupId>org.gcube.distribution</groupId>
<artifactId>gcube-smartgears-bom</artifactId>
<version>2.1.0</version>
<version>2.4.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>

View File

@ -128,14 +128,17 @@ public class RuntimeResourceReader {
public static void main(String[] args) {
String scope = "/gcube/devsec/devVRE";
String platformName = "GeoServer";
//String platformName = "GeoServer";
String platformName = "postgis";
String category = "Database";
//scope = "/pred4s/preprod/preVRE";
RuntimeResourceReader reader;
try {
ScopeProvider.instance.set(scope);
reader = new RuntimeResourceReader(scope, "postgis", "Database", null);
reader = new RuntimeResourceReader(scope, platformName, category, null);
for (ServiceEndpointBean seb : reader.getListSE()) {
System.out.println("Found: " + seb);