debug
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.gdcc.export</groupId> <artifactId>debug</artifactId> <version>0.1.1</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.export</groupId> <artifactId>debug</artifactId> <version>0.1.1</version> <name>Debug Exporter for Dataverse</name> <description>This exporter plugin can be added to a Dataverse installation, dumping all possible JSON and XML data.</description> <url>https://github.com/gdcc/exporter-debug</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>pdurbin</id> <name>Philip Durbin</name> <email>philip_durbin@harvard.edu</email> <timezone>America/New_York</timezone> </developer> </developers> <scm> <connection>scm:git:https://github.com/gdcc/exporter-debug.git</connection> <developerConnection>scm:git:git@github.com:gdcc/exporter-debug.git</developerConnection> <tag>debug-0.1.1</tag> <url>https://github.com/gdcc/exporter-debug</url> </scm> <dependencies> <dependency> <groupId>io.gdcc</groupId> <artifactId>dataverse-spi</artifactId> <version>2.0.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.google.auto.service</groupId> <artifactId>auto-service</artifactId> <version>1.0.1</version> <scope>compile</scope> </dependency> <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> <dependency> <groupId>org.eclipse.parsson</groupId> <artifactId>parsson</artifactId> <version>1.1.5</version> <scope>compile</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>