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

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0">
@ -13,8 +13,12 @@
<wb-module deploy-name="uri-resolver-2.8.1">
<wb-module deploy-name="uri-resolver-2.9.0">
@ -29,7 +33,9 @@
<wb-resource deploy-path="/" source-path="/target/m2e-wtp/web-resources"/>
@ -44,7 +50,9 @@
<wb-resource deploy-path="/" source-path="/src/main/webapp" tag="defaultRootSource"/>
@ -59,7 +67,9 @@
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/java"/>
@ -74,10 +84,9 @@
<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>
@ -92,7 +101,9 @@
<property name="context-root" value="uri-resolver"/>
@ -107,7 +118,9 @@
<property name="java-output-path" value="/uri-resolver/target/classes"/>
@ -122,7 +135,9 @@
</wb-module>

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);