added xml deps as provided
This commit is contained in:
parent
f8bc1f63b3
commit
80013b084a
47
pom.xml
47
pom.xml
|
@ -16,18 +16,15 @@
|
|||
gCube Smartgears Bom is used to declare the version and set to provided the libraries already available in Smartgears container.
|
||||
In such a way any service developer does not have to deal with dependencies conflicts and provided dependencies.
|
||||
</description>
|
||||
|
||||
<properties>
|
||||
<gcube-jackson.version>2.8.11</gcube-jackson.version>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:https://code-repo.d4science.org/gCubeSystem/${project.artifactId}.git</connection>
|
||||
<developerConnection>scm:git:https://code-repo.d4science.org/gCubeSystem/${project.artifactId}.git</developerConnection>
|
||||
<url>https://code-repo.d4science.org/gCubeSystem/${project.artifactId}</url>
|
||||
</scm>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<!-- Imports -->
|
||||
|
@ -39,6 +36,39 @@
|
|||
<scope>import</scope>
|
||||
</dependency>
|
||||
<!-- END Imports -->
|
||||
<!-- XML Deps -->
|
||||
<dependency>
|
||||
<groupId>javax.xml.bind</groupId>
|
||||
<artifactId>jaxb-api</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>javax.xml.ws</groupId>
|
||||
<artifactId>jaxws-api</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sun.xml.bind</groupId>
|
||||
<artifactId>jaxb-impl</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sun.xml.bind</groupId>
|
||||
<artifactId>jaxb-core</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jakarta.xml.bind</groupId>
|
||||
<artifactId>jakarta.xml.bind-api</artifactId>
|
||||
<version>2.3.3</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jakarta.xml.soap</groupId>
|
||||
<artifactId>jakarta.xml.soap-api</artifactId>
|
||||
<version>1.4.2</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<!-- Setting scope to provided to dependencies already declared in gcube-bom -->
|
||||
<dependency>
|
||||
<groupId>org.gcube.common</groupId>
|
||||
|
@ -112,7 +142,6 @@
|
|||
<version>[3.0.0-SNAPSHOT,4.0.0-SNAPSHOT)</version>
|
||||
</dependency>
|
||||
<!-- END Authorization Related Dependencies -->
|
||||
|
||||
<!-- Accounting Related Dependencies -->
|
||||
<dependency>
|
||||
<groupId>org.gcube.data.publishing</groupId>
|
||||
|
@ -127,7 +156,6 @@
|
|||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<!-- END Accounting Related Dependencies -->
|
||||
|
||||
<!-- Used for compatibility between SG 3 and 4 -->
|
||||
<dependency>
|
||||
<groupId>org.gcube.common</groupId>
|
||||
|
@ -136,7 +164,6 @@
|
|||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<!-- END Used for compatibility between SG 3 and 4 -->
|
||||
|
||||
<!-- Facets Based Resource Model related dependencies -->
|
||||
<dependency>
|
||||
<groupId>org.gcube.information-system</groupId>
|
||||
|
@ -167,7 +194,6 @@
|
|||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<!-- END Facets Based Resource Model related dependencies -->
|
||||
|
||||
<dependency>
|
||||
<groupId>org.reflections</groupId>
|
||||
<artifactId>reflections</artifactId>
|
||||
|
@ -182,7 +208,6 @@
|
|||
</dependency>
|
||||
<!-- END Setting scope to provided to dependencies already declared in
|
||||
gcube-bom -->
|
||||
|
||||
<!-- Declaring dependencies needed by a smartgears webapp -->
|
||||
<dependency>
|
||||
<groupId>org.gcube.core</groupId>
|
||||
|
@ -199,7 +224,8 @@
|
|||
<dependency>
|
||||
<groupId>org.gcube.common.core</groupId>
|
||||
<artifactId>legacy-is-publisher-connector</artifactId>
|
||||
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT) </version> <scope>provided</scope>
|
||||
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT) </version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.gcube.core</groupId>
|
||||
|
@ -210,7 +236,7 @@
|
|||
<dependency>
|
||||
<groupId>org.gcube.core</groupId>
|
||||
<artifactId>common-configuration-scanner</artifactId>
|
||||
<version>[1.1.0-SNAPSHOT,2.0.0-SNAPSHOT)</version> <!--version to release -->
|
||||
<version>[1.1.0-SNAPSHOT,2.0.0-SNAPSHOT)</version> <!--version to release -->
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
@ -220,7 +246,6 @@
|
|||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<!-- END Declaring dependencies needed by a smartgears webapp -->
|
||||
|
||||
<!-- gCube Jackson -->
|
||||
<dependency>
|
||||
<groupId>org.gcube.common</groupId>
|
||||
|
|
Loading…
Reference in New Issue