helloworld
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.gdcc.export</groupId>
<artifactId>helloworld</artifactId>
<version>2.0.0-M2</version>
</dependency><?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>
<groupId>io.gdcc.export</groupId>
<artifactId>helloworld</artifactId>
<version>2.0.0-M2</version>
<packaging>jar</packaging>
<name>Hello World Exporter</name>
<description>This is a very minimal example how to write an exporter plugin. Also used for testing.</description>
<url>https://github.com/gdcc/dataverse-exporters</url>
<parent>
<groupId>io.gdcc.export</groupId>
<artifactId>parent</artifactId>
<!-- In a real application, you should use a released version -->
<version>2.0.0-M2</version>
<!-- In a real application, you would omit this -->
<relativePath>../pom.xml</relativePath>
</parent>
<!-- There is no <build> or <dependencies> section here because the Parent POM takes care of it for this rather simple example! -->
</project>