Skip to content

Commit

Permalink
Merge pull request #35 from poikilotherm/9175-external-exporters
Browse files Browse the repository at this point in the history
9175 external exporters
  • Loading branch information
qqmyers authored May 10, 2023
2 parents 38e71eb + 8644a34 commit 6ae546c
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 47 deletions.
94 changes: 47 additions & 47 deletions modules/dataverse-exporter-spi/pom.xml
Original file line number Diff line number Diff line change
@@ -1,47 +1,47 @@
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>edu.harvard.iq</groupId>
<artifactId>dataverse-parent</artifactId>
<version>${revision}</version>
<relativePath>../../modules/dataverse-parent</relativePath>
</parent>
<groupId>io.gdcc</groupId>
<artifactId>dataverse-exporter-spi</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>

<properties>
</properties>

<dependencies>
<dependency>
<groupId>jakarta.platform</groupId>
<artifactId>jakarta.jakartaee-api</artifactId>
<version>${jakartaee-api.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>jakarta.json</artifactId>
<scope>provided</scope>
<!-- no version here as managed by Payara BOM above! -->
</dependency>
</dependencies>
<build>
<sourceDirectory>src/main/java</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<release>${target.java.version}</release>
</configuration>
</plugin>

</plugins>
</build>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>edu.harvard.iq</groupId>
<artifactId>dataverse-parent</artifactId>
<version>${revision}</version>
<relativePath>../dataverse-parent</relativePath>
</parent>

<groupId>io.gdcc</groupId>
<artifactId>dataverse-exporter-spi</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>

<properties>
</properties>

<dependencies>
<dependency>
<groupId>jakarta.json</groupId>
<artifactId>jakarta.json-api</artifactId>
<scope>provided</scope>
<!-- no version here as managed by parent -->
</dependency>
<dependency>
<groupId>jakarta.ws.rs</groupId>
<artifactId>jakarta.ws.rs-api</artifactId>
<scope>provided</scope>
<!-- no version here as managed by parent -->
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<release>${target.java.version}</release>
</configuration>
</plugin>
</plugins>
</build>
</project>
1 change: 1 addition & 0 deletions modules/dataverse-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
<module>../../pom.xml</module>
<module>../../scripts/zipdownload</module>
<module>../container-base</module>
<module>../dataverse-exporter-spi</module>
</modules>

<!-- Transitive dependencies, bigger library "bill of materials" (BOM) and
Expand Down

0 comments on commit 6ae546c

Please sign in to comment.