Merge pull request 'fix_23213' (!5) from fix_23213 into master
Reviewed-on: #5
This commit is contained in:
commit
336d06ee4c
|
@ -1,61 +1,70 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<wb-module deploy-name="uri-resolver-2.7.2-SNAPSHOT">
|
||||
|
||||
|
||||
<wb-module deploy-name="uri-resolver-2.7.2">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<wb-resource deploy-path="/" source-path="/target/m2e-wtp/web-resources"/>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<wb-resource deploy-path="/" source-path="/src/main/webapp" tag="defaultRootSource"/>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/java"/>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/resources"/>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<property name="context-root" value="uri-resolver"/>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<property name="java-output-path" value="/uri-resolver/target/classes"/>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</wb-module>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
14
CHANGELOG.md
14
CHANGELOG.md
|
@ -4,7 +4,13 @@
|
|||
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-7.2] - 2022-04-06
|
||||
## [v2.7.3-SNAPSHOT] - 2022-04-27
|
||||
|
||||
**Bug Fixing**
|
||||
|
||||
- [#23213] Fixing NoClassDefFoundError: org/geotoolkit/xml/XML
|
||||
|
||||
## [v2.7.2] - 2022-04-06
|
||||
|
||||
**New**
|
||||
|
||||
|
@ -18,7 +24,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|||
|
||||
- [#20743] Integration with javamelody
|
||||
|
||||
## [v2-6-1] - 2022-01-17
|
||||
## [v2.6.1] - 2022-01-17
|
||||
|
||||
**New features**
|
||||
|
||||
|
@ -30,7 +36,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|||
- [#21560] Checking the bug fix done
|
||||
- Moved to gcube-smartgears-bom.2.1.0
|
||||
|
||||
## [v2-5-0] - 2021-04-08
|
||||
## [v2.5.0] - 2021-04-08
|
||||
|
||||
**New features**
|
||||
|
||||
|
@ -41,7 +47,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|||
[#21093] StorageHubResolver HEAD request does not support Content-Length
|
||||
|
||||
|
||||
## [v2-4-1] - 2021-01-13
|
||||
## [v2.4.1] - 2021-01-13
|
||||
|
||||
**Bug Fixes**
|
||||
|
||||
|
|
|
@ -10,11 +10,17 @@
|
|||
pattern="org.gcube.datatransfer.resolver.services.UriResolverIndex" />
|
||||
<exclude
|
||||
pattern="org.gcube.datatransfer.resolver.services.UriResolverInfo" />
|
||||
<exclude pattern="org.gcube.datatransfer.resolver.services.OatResolver" />
|
||||
<exclude
|
||||
pattern="org.gcube.datatransfer.resolver.services.OatResolver" />
|
||||
<exclude
|
||||
pattern="org.gcube.datatransfer.resolver.services.tobackward.BackCatalogueResolver" />
|
||||
<exclude
|
||||
pattern="org.gcube.datatransfer.resolver.services.tobackward.BackUriResolverCatalogueResolver" />
|
||||
|
||||
<exclude pattern="org.geotoolkit.internal.jaxb.referencing.*" />
|
||||
|
||||
<exclude pattern="org.opengis.metadata.*" />
|
||||
|
||||
</api-classes>
|
||||
|
||||
<modules>
|
||||
|
|
10
pom.xml
10
pom.xml
|
@ -9,7 +9,7 @@
|
|||
</parent>
|
||||
<groupId>org.gcube.data.transfer</groupId>
|
||||
<artifactId>uri-resolver</artifactId>
|
||||
<version>2.7.2</version>
|
||||
<version>2.7.3-SNAPSHOT</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>
|
||||
|
||||
|
@ -250,14 +250,6 @@
|
|||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- Required for Enunciate plugin -->
|
||||
<dependency>
|
||||
<groupId>org.geotoolkit</groupId>
|
||||
<artifactId>geotk-xml-base</artifactId>
|
||||
<version>3.20-geoapi-3.0</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
|
|
Loading…
Reference in New Issue