MVN

io.gdcc : dataverse-spi

Maven & Gradle

Jun 28, 2023
849 stars

Dataverse SPI Plugin API · 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.

<dependency>
    <groupId>io.gdcc</groupId>
    <artifactId>dataverse-spi</artifactId>
    <version>2.0.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of io.gdcc : dataverse-spi to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2.0.0

All Versions

Choose a version of io.gdcc : dataverse-spi to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2.0.x
dataverse-spi-2.0.0
1.0.x
dataverse-spi-1.0.0

How to add a dependency to Maven

Add the following io.gdcc : dataverse-spi maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>io.gdcc</groupId>
    <artifactId>dataverse-spi</artifactId>
    <version>2.0.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following io.gdcc : dataverse-spi gradle dependency to your build.gradle file:

implementation 'io.gdcc:dataverse-spi:2.0.0'

Gradle Kotlin DSL: Add the following io.gdcc : dataverse-spi gradle kotlin dependency to your build.gradle.kts file:

implementation("io.gdcc:dataverse-spi:2.0.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following io.gdcc : dataverse-spi sbt scala dependency to your build.sbt file:

libraryDependencies += "io.gdcc" % "dataverse-spi" % "2.0.0"