dataverse-spi
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.gdcc</groupId> <artifactId>dataverse-spi</artifactId> <version>2.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>io.gdcc</groupId> <artifactId>dataverse-spi</artifactId> <version>2.0.0</version> <name>Dataverse SPI Plugin API</name> <description>A package to create out-of-tree Java code for Dataverse Software. Plugin projects can use this package as an API dependency just like Jakarta EE APIs if they want to create external plugins. These will be loaded at runtime of a Dataverse installation using SPI. See also https://guides.dataverse.org/en/latest/developers for more information.</description> <url>https://dataverse.org</url> <licenses> <license> <name>Apache-2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Dataverse Core Team</name> <email>support@dataverse.org</email> </developer> </developers> <scm> <connection>scm:git:git@github.com:IQSS/dataverse.git</connection> <developerConnection>scm:git:git@github.com:IQSS/dataverse.git</developerConnection> <url>git@github.com:IQSS/dataverse.git</url> </scm> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/IQSS/dataverse/issues</url> </issueManagement> <ciManagement> <system>github</system> <url>https://github.com/IQSS/dataverse/actions</url> <notifiers> <notifier> <address>dataversebot@gdcc.io</address> </notifier> </notifiers> </ciManagement> <dependencies> <dependency> <groupId>jakarta.json</groupId> <artifactId>jakarta.json-api</artifactId> <version>2.1.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>jakarta.ws.rs</groupId> <artifactId>jakarta.ws.rs-api</artifactId> <version>3.1.0</version> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> </plugin> </plugins> </build> </project>