dspace-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.dspace</groupId> <artifactId>dspace-api</artifactId> <version>9.0</version> </dependency>
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.dspace</groupId> <artifactId>dspace-api</artifactId> <name>DSpace Kernel :: API and Implementation</name> <description>DSpace core data model and service APIs.</description> <!-- A Parent POM that Maven inherits DSpace Defaults POM attributes from. --> <parent> <groupId>org.dspace</groupId> <artifactId>dspace-parent</artifactId> <version>9.0</version> <relativePath>..</relativePath> </parent> <properties> <!-- This is the path to the root [dspace-src] directory. --> <root.basedir>${basedir}/..</root.basedir> </properties> <!-- Runtime and Compile Time dependencies for DSpace. --> <build> <resources> <resource> <directory>src/main/resources</directory> <includes> <include>maven.properties</include> <include>scm.properties</include> </includes> <filtering>true</filtering> </resource> <resource> <directory>src/main/resources</directory> <excludes> <exclude>maven.properties</exclude> <exclude>scm.properties</exclude> </excludes> <filtering>false</filtering> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <debug>true</debug> <showDeprecation>true</showDeprecation> <annotationProcessorPaths> <!-- Enable Hibernate's Metamodel Generator to generate metadata model classes (ending in _ suffix) for more type-safe Criteria queries --> <path> <groupId>org.hibernate.orm</groupId> <artifactId>hibernate-jpamodelgen</artifactId> <version>${hibernate.version}</version> </path> <!-- Enable JAXB --> <path> <groupId>jakarta.xml.bind</groupId> <artifactId>jakarta.xml.bind-api</artifactId> <version>${jaxb-api.version}</version> </path> <!-- Enable Commons Annotations --> <path> <groupId>jakarta.annotation</groupId> <artifactId>jakarta.annotation-api</artifactId> <version>${jakarta-annotation.version}</version> </path> <!-- Enable http://errorprone.info --> <path> <groupId>com.google.errorprone</groupId> <artifactId>error_prone_core</artifactId> <version>${errorprone.version}</version> </path> </annotationProcessorPaths> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> </archive> </configuration> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>3.6.0</version> <executions> <execution> <phase>validate</phase> <goals> <goal>maven-version</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> <version>3.2.1</version> <configuration> <revisionOnScmFailure>UNKNOWN_REVISION</revisionOnScmFailure> </configuration> <executions> <execution> <phase>validate</phase> <goals> <goal>create</goal> </goals> </execution> </executions> </plugin> <!-- This plugin allows us to run a Groovy script in our Maven POM (see: https://groovy.github.io/gmaven/groovy-maven-plugin/execute.html ) We are generating a OS-agnostic version (agnostic.build.dir) of the ${project.build.directory} property (full path of target dir). This is needed by the Surefire & Failsafe plugins (see below) to initialize the Unit Test environment's dspace.cfg file. Otherwise, the Unit Test Framework will not work on Windows OS. This Groovy code was mostly borrowed from: http://stackoverflow.com/questions/3872355/how-to-convert-file-separator-in-maven --> <plugin> <groupId>org.codehaus.gmaven</groupId> <artifactId>groovy-maven-plugin</artifactId> <executions> <execution> <id>setproperty</id> <phase>initialize</phase> <goals> <goal>execute</goal> </goals> <configuration> <source> project.properties['agnostic.build.dir'] = project.build.directory.replace(File.separator, '/'); log.info("Initializing Maven property 'agnostic.build.dir' to: {}", project.properties['agnostic.build.dir']); </source> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <configuration> <excludes> <exclude>src/test/resources/**</exclude> <exclude>src/test/data/**</exclude> <!-- Ignore license header requirements on Flyway upgrade scripts --> <exclude>src/main/resources/org/dspace/storage/rdbms/flywayupgrade/**</exclude> </excludes> </configuration> </plugin> <!-- Used to create/generate 'org.dspace.workflow' classes from our workflow-curation.xsd via JAXB --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jaxb2-maven-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>workflow-curation</id> <goals> <goal>xjc</goal> </goals> <configuration> <sources> <source>src/main/resources/org/dspace/workflow</source> </sources> <packageName>org.dspace.workflow</packageName> <addGeneratedAnnotation>true</addGeneratedAnnotation> <noPackageLevelAnnotations>true</noPackageLevelAnnotations> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>spotbugs</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> </plugin> </plugins> </build> </profile> <!-- Setup the Unit Test Environment (when -DskipUnitTests=false) --> <profile> <id>unit-test-environment</id> <activation> <activeByDefault>false</activeByDefault> <property> <name>skipUnitTests</name> <value>false</value> </property> </activation> <build> <plugins> <!-- Unit Testing setup: This plugin unzips the 'testEnvironment.zip' file (created by dspace-parent POM), into the 'target/testing/' folder, to essentially create a test install of DSpace, against which Tests can be run. --> <plugin> <artifactId>maven-dependency-plugin</artifactId> <configuration> <outputDirectory>${project.build.directory}/testing</outputDirectory> <artifactItems> <artifactItem> <groupId>org.dspace</groupId> <artifactId>dspace-parent</artifactId> <version>${project.version}</version> <type>zip</type> <classifier>testEnvironment</classifier> </artifactItem> </artifactItems> </configuration> <executions> <execution> <id>setupUnitTestEnvironment</id> <phase>generate-test-resources</phase> <goals> <goal>unpack</goal> </goals> </execution> </executions> </plugin> <!-- Run Unit Testing! This plugin just kicks off the tests. --> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemPropertyVariables> <!-- Specify the dspace.dir to use for test environment --> <!-- ${agnostic.build.dir} is set dynamically by groovy-maven-plugin above --> <!-- This system property is loaded by AbstractDSpaceTest to initialize the test environment --> <dspace.dir>${agnostic.build.dir}/testing/dspace</dspace.dir> <!-- Turn off any DSpace logging --> <dspace.log.init.disable>true</dspace.log.init.disable> <solr.install.dir>${agnostic.build.dir}/testing/dspace/solr/</solr.install.dir> </systemPropertyVariables> </configuration> </plugin> </plugins> </build> </profile> <!-- Setup the Integration Test Environment (when -DskipIntegrationTests=false) --> <profile> <id>integration-test-environment</id> <activation> <activeByDefault>false</activeByDefault> <property> <name>skipIntegrationTests</name> <value>false</value> </property> </activation> <build> <plugins> <!-- Integration Testing setup: This plugin unzips the 'testEnvironment.zip' file (created by dspace-parent POM), into the 'target/testing/' folder, to essentially create a test install of DSpace, against which Tests can be run. --> <plugin> <artifactId>maven-dependency-plugin</artifactId> <configuration> <outputDirectory>${project.build.directory}/testing</outputDirectory> <artifactItems> <artifactItem> <groupId>org.dspace</groupId> <artifactId>dspace-parent</artifactId> <version>${project.version}</version> <type>zip</type> <classifier>testEnvironment</classifier> </artifactItem> </artifactItems> </configuration> <executions> <execution> <id>setupIntegrationTestEnvironment</id> <phase>pre-integration-test</phase> <goals> <goal>unpack</goal> </goals> </execution> </executions> </plugin> <!-- Run Integration Testing! This plugin just kicks off the tests. --> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <configuration> <systemPropertyVariables> <!-- Specify the dspace.dir to use for test environment --> <!-- ${agnostic.build.dir} is set dynamically by groovy-maven-plugin above --> <dspace.dir>${agnostic.build.dir}/testing/dspace</dspace.dir> <!-- Turn off any DSpace logging --> <dspace.log.init.disable>true</dspace.log.init.disable> <solr.install.dir>${agnostic.build.dir}/testing/dspace/solr/</solr.install.dir> </systemPropertyVariables> </configuration> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j2-impl</artifactId> </dependency> <dependency> <groupId>org.hibernate.orm</groupId> <artifactId>hibernate-core</artifactId> </dependency> <dependency> <groupId>org.hibernate.orm</groupId> <artifactId>hibernate-jpamodelgen</artifactId> </dependency> <dependency> <groupId>org.hibernate.orm</groupId> <artifactId>hibernate-jcache</artifactId> </dependency> <dependency> <groupId>org.ehcache</groupId> <artifactId>ehcache</artifactId> <version>${ehcache.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-cache Caching dependencies for sherpa service. --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-cache</artifactId> <version>${spring-boot.version}</version> <exclusions> <exclusion> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr310</artifactId> </dependency> <dependency> <groupId>javax.cache</groupId> <artifactId>cache-api</artifactId> </dependency> <dependency> <groupId>org.hibernate.validator</groupId> <artifactId>hibernate-validator-cdi</artifactId> <version>${hibernate-validator.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-orm</artifactId> <exclusions> <!-- Spring JCL is unnecessary and conflicts with commons-logging when both are on classpath --> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-jcl</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>net.handle</groupId> <artifactId>handle</artifactId> </dependency> <!-- Only necessary to run Handle Server from commandline. This is why it is a runtime dependency. --> <dependency> <groupId>net.cnri</groupId> <artifactId>cnri-servlet-container</artifactId> <scope>runtime</scope> <exclusions> <!-- Excluded because this library is incompatible with Jakarta EE. It causes errors in DSpace during startup & integration testing. Excluding doesn't seem to effect Handle Server startup. --> <exclusion> <groupId>org.mortbay.jasper</groupId> <artifactId>apache-jsp</artifactId> </exclusion> <!-- Excluded BouncyCastle dependencies because we use a later version of BouncyCastle. Having two versions of BouncyCastle in the classpath can cause Handle Server to throw errors. --> <exclusion> <groupId>org.bouncycastle</groupId> <artifactId>bcpkix-jdk15on</artifactId> </exclusion> <exclusion> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk15on</artifactId> </exclusion> </exclusions> </dependency> <!-- Jetty is needed to run Handle Server ONLY. This is why it is a runtime dependency. --> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.dspace</groupId> <artifactId>mets</artifactId> </dependency> <dependency> <groupId>org.apache.jena</groupId> <artifactId>apache-jena-libs</artifactId> <type>pom</type> </dependency> <dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-dbcp2</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-pool2</artifactId> </dependency> <dependency> <groupId>commons-validator</groupId> <artifactId>commons-validator</artifactId> </dependency> <dependency> <groupId>jakarta.mail</groupId> <artifactId>jakarta.mail-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.eclipse.angus</groupId> <artifactId>jakarta.mail</artifactId> </dependency> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>jakarta.annotation</groupId> <artifactId>jakarta.annotation-api</artifactId> </dependency> <dependency> <groupId>jaxen</groupId> <artifactId>jaxen</artifactId> </dependency> <dependency> <groupId>org.jdom</groupId> <artifactId>jdom2</artifactId> </dependency> <dependency> <groupId>org.apache.pdfbox</groupId> <artifactId>pdfbox</artifactId> </dependency> <dependency> <groupId>com.ibm.icu</groupId> <artifactId>icu4j</artifactId> </dependency> <!-- Codebase at https://github.com/DSpace/oclc-harvester2 --> <dependency> <groupId>org.dspace</groupId> <artifactId>oclc-harvester2</artifactId> </dependency> <dependency> <groupId>org.dspace</groupId> <artifactId>dspace-services</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-inline</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <scope>test</scope> </dependency> <!-- Used for RSS / ATOM syndication feeds --> <dependency> <groupId>com.rometools</groupId> <artifactId>rome</artifactId> </dependency> <dependency> <groupId>com.rometools</groupId> <artifactId>rome-modules</artifactId> </dependency> <dependency> <groupId>org.jbibtex</groupId> <artifactId>jbibtex</artifactId> <version>1.0.20</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore</artifactId> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpmime</artifactId> </dependency> <!-- SolrJ is used to communicate with Solr throughout the dspace-api --> <dependency> <groupId>org.apache.solr</groupId> <artifactId>solr-solrj</artifactId> <version>${solr.client.version}</version> </dependency> <!-- Solr Core is only needed for Integration Tests (to run a MockSolrServer) --> <!-- The following Solr / Lucene dependencies also support integration tests --> <dependency> <groupId>org.apache.solr</groupId> <artifactId>solr-core</artifactId> <scope>test</scope> <version>${solr.client.version}</version> <exclusions> <!-- Later version provided by Hibernate --> <exclusion> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.lucene</groupId> <artifactId>lucene-core</artifactId> </dependency> <dependency> <groupId>org.apache.lucene</groupId> <artifactId>lucene-analyzers-icu</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.lucene</groupId> <artifactId>lucene-analyzers-smartcn</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.lucene</groupId> <artifactId>lucene-analyzers-stempel</artifactId> <scope>test</scope> </dependency> <!-- Tika is used to extract full text from documents in order to index in Solr --> <dependency> <groupId>org.apache.tika</groupId> <artifactId>tika-core</artifactId> </dependency> <dependency> <groupId>org.apache.tika</groupId> <artifactId>tika-parsers-standard-package</artifactId> </dependency> <dependency> <groupId>com.maxmind.geoip2</groupId> <artifactId>geoip2</artifactId> <version>2.17.0</version> </dependency> <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant</artifactId> </dependency> <dependency> <groupId>dnsjava</groupId> <artifactId>dnsjava</artifactId> <version>3.6.3</version> </dependency> <dependency> <groupId>com.coverity.security</groupId> <artifactId>coverity-escapers</artifactId> <version>1.1.1</version> </dependency> <!-- guava is needed by OAuth, Guice, Mockserver, ORCID, s3mock, Solr, JClouds --> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <!-- Gson is needed by JENA, borker-client, OAuth, Handle and JClouds --> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> </dependency> <dependency> <groupId>jdbm</groupId> <artifactId>jdbm</artifactId> <version>1.0</version> </dependency> <!-- For ImageMagick MediaFilters --> <dependency> <groupId>org.im4java</groupId> <artifactId>im4java</artifactId> <version>1.4.0</version> </dependency> <!-- Flyway DB API (flywaydb.org) is used to manage DB upgrades automatically. --> <dependency> <groupId>org.flywaydb</groupId> <artifactId>flyway-core</artifactId> <version>${flyway.version}</version> </dependency> <dependency> <groupId>org.flywaydb</groupId> <artifactId>flyway-database-postgresql</artifactId> <version>${flyway.version}</version> </dependency> <!-- FindBugs --> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>annotations</artifactId> </dependency> <dependency> <groupId>jakarta.inject</groupId> <artifactId>jakarta.inject-api</artifactId> </dependency> <!-- JAXB API and implementation (no longer bundled as of Java 11) --> <dependency> <groupId>jakarta.xml.bind</groupId> <artifactId>jakarta.xml.bind-api</artifactId> </dependency> <dependency> <groupId>org.glassfish.jaxb</groupId> <artifactId>jaxb-runtime</artifactId> </dependency> <!-- Jersey / JAX-RS client (jakarta.ws.rs.*) dependencies needed to integrate with external sources/services --> <dependency> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-client</artifactId> <version>${jersey.version}</version> </dependency> <!-- Required because Jersey no longer includes a dependency injection provider by default. Needed to support PubMed API call in "PubmedImportMetadataSourceServiceImpl.GetRecord" --> <dependency> <groupId>org.glassfish.jersey.inject</groupId> <artifactId>jersey-hk2</artifactId> <version>${jersey.version}</version> </dependency> <!-- S3 --> <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-java-sdk-s3</artifactId> <version>1.12.783</version> </dependency> <!-- TODO: This may need to be replaced with the "orcid-model" artifact once this ticket is resolved: https://github.com/ORCID/orcid-model/issues/50 --> <!-- Maintained at https://github.com/DSpace/orcid-model --> <dependency> <groupId>org.dspace</groupId> <artifactId>orcid-model-jakarta</artifactId> <version>3.3.0</version> <exclusions> <exclusion> <groupId>org.javassist</groupId> <artifactId>javassist</artifactId> </exclusion> <!-- Exclude snakeyaml as a newer version is brought in by Spring Boot --> <exclusion> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>20231013</version> </dependency> <!-- Useful for testing command-line tools --> <dependency> <groupId>com.github.stefanbirkner</groupId> <artifactId>system-rules</artifactId> <version>1.19.0</version> <scope>test</scope> </dependency> <!-- Used for Solr core export/import --> <dependency> <groupId>com.opencsv</groupId> <artifactId>opencsv</artifactId> <version>5.11</version> </dependency> <!-- Email templating --> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity-engine-core</artifactId> <version>2.4.1</version> </dependency> <dependency> <groupId>org.xmlunit</groupId> <artifactId>xmlunit-core</artifactId> <version>2.10.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.bcel</groupId> <artifactId>bcel</artifactId> <version>6.10.0</version> <scope>test</scope> </dependency> <!-- required for openaire api integration --> <dependency> <groupId>eu.openaire</groupId> <artifactId>funders-model</artifactId> <version>2.0.0</version> <exclusions> <!-- Newer version pulled in via Jersey below --> <exclusion> <groupId>org.javassist</groupId> <artifactId>javassist</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>eu.openaire</groupId> <artifactId>broker-client</artifactId> <version>1.1.2</version> </dependency> <dependency> <groupId>org.mock-server</groupId> <artifactId>mockserver-junit-rule</artifactId> <version>5.15.0</version> <scope>test</scope> <exclusions> <!-- Exclude snakeyaml to avoid conflicts with: spring-boot-starter-cache --> <exclusion> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> </exclusion> <exclusion> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr310</artifactId> </exclusion> <!-- Resolve dependency conflicts with Hibernate --> <exclusion> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> </exclusion> <!-- Resolve dependency conflicts with Solr --> <exclusion> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.findify</groupId> <artifactId>s3mock_2.13</artifactId> <version>0.2.6</version> <scope>test</scope> <exclusions> <exclusion> <groupId>com.amazonawsl</groupId> <artifactId>aws-java-sdk-s3</artifactId> </exclusion> <exclusion> <groupId>com.amazonaws</groupId> <artifactId>aws-java-sdk-s3</artifactId> </exclusion> </exclusions> </dependency> <!-- JClouds Assetstorage Support --> <dependency> <groupId>org.apache.jclouds</groupId> <artifactId>jclouds-core</artifactId> <version>${jclouds.version}</version> <exclusions> <exclusion> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </exclusion> <exclusion> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId> </exclusion> <exclusion> <groupId>javax.annotation</groupId> <artifactId>javax.annotation-api</artifactId> </exclusion> <exclusion> <groupId>jakarta.ws.rs</groupId> <artifactId>jakarta.ws.rs-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.jclouds</groupId> <artifactId>jclouds-blobstore</artifactId> <version>${jclouds.version}</version> <exclusions> <exclusion> <groupId>jakarta.ws.rs</groupId> <artifactId>jakarta.ws.rs-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.jclouds.api</groupId> <artifactId>filesystem</artifactId> <version>${jclouds.version}</version> </dependency> <dependency> <groupId>org.apache.jclouds.provider</groupId> <artifactId>aws-s3</artifactId> <version>${jclouds.version}</version> </dependency> <!-- required frontpage generation --> <dependency> <groupId>org.thymeleaf</groupId> <artifactId>thymeleaf</artifactId> <version>3.1.3.RELEASE</version> <exclusions> <exclusion> <groupId>org.javassist</groupId> <artifactId>javassist</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.xhtmlrenderer</groupId> <artifactId>flying-saucer-pdf</artifactId> <version>9.12.0</version> <exclusions> <!-- Conflicts with Hibernate. Use version that is brought in via Hibernate --> <exclusion> <groupId>net.bytebuddy</groupId> <artifactId>byte-buddy</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>mockwebserver</artifactId> <scope>test</scope> </dependency> </dependencies> </project>