zeebe-csv-exporter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.zeebe</groupId>
<artifactId>zeebe-csv-exporter</artifactId>
<version>1.1.0</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>
<name>Zeebe CSV Exporter</name>
<groupId>io.zeebe</groupId>
<artifactId>zeebe-csv-exporter</artifactId>
<version>1.1.0</version>
<inceptionYear>2019</inceptionYear>
<parent>
<groupId>org.camunda</groupId>
<artifactId>camunda-release-parent</artifactId>
<version>2.5</version>
<!-- do not remove empty tag - http://jira.codehaus.org/browse/MNG-4687 -->
<relativePath />
</parent>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<!-- release parent settings -->
<version.java>1.8</version.java>
<nexus.snapshot.repository>
https://app.camunda.com/nexus/content/repositories/zeebe-io-snapshots/
</nexus.snapshot.repository>
<nexus.release.repository>https://app.camunda.com/nexus/content/repositories/zeebe-io/
</nexus.release.repository>
<!-- disable jdk8 javadoc checks on release build -->
<additionalparam>-Xdoclint:none</additionalparam>
<!-- dependency versions -->
<version.assertj>3.11.1</version.assertj>
<version.jackson>2.9.8</version.jackson>
<version.junit>4.12</version.junit>
<version.log4j>2.11.1</version.log4j>
<version.slf4j>1.7.25</version.slf4j>
<version.zeebe>0.20.0</version.zeebe>
<!-- maven plugin versions -->
<plugin.version.failsafe>3.0.0-M3</plugin.version.failsafe>
<plugin.version.fmt>2.6.0</plugin.version.fmt>
<plugin.version.license>3.0</plugin.version.license>
<plugin.version.shade>3.2.1</plugin.version.shade>
<plugin.version.surefire>3.0.0-M3</plugin.version.surefire>
</properties>
<dependencies>
<dependency>
<groupId>io.zeebe</groupId>
<artifactId>zeebe-exporter-api</artifactId>
<version>${version.zeebe}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-csv</artifactId>
<version>${version.jackson}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${version.slf4j}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.zeebe</groupId>
<artifactId>zeebe-test</artifactId>
<version>${version.zeebe}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${version.log4j}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>${version.log4j}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${version.junit}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${version.assertj}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>${plugin.version.license}</version>
<configuration>
<header>com/mycila/maven/plugin/license/templates/APACHE-2.txt</header>
<properties>
<owner>camunda services GmbH</owner>
<email>info@camunda.com</email>
</properties>
<includes>
<include>**/*.java</include>
</includes>
<mapping>
<java>SLASHSTAR_STYLE</java>
</mapping>
</configuration>
<executions>
<execution>
<id>add-license</id>
<phase>compile</phase>
<goals>
<goal>format</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.coveo</groupId>
<artifactId>fmt-maven-plugin</artifactId>
<version>${plugin.version.fmt}</version>
<executions>
<execution>
<goals>
<goal>format</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${plugin.version.surefire}</version>
<configuration>
<failIfNoTests>false</failIfNoTests>
<trimStackTrace>false</trimStackTrace>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>${plugin.version.failsafe}</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
<configuration>
<failIfNoTests>false</failIfNoTests>
<trimStackTrace>false</trimStackTrace>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>${plugin.version.shade}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<properties>
<plugin.version.gpg>1.6</plugin.version.gpg>
<gpg.passphrase>${env.GPG_PASS}</gpg.passphrase>
<resume>false</resume>
<tag>${env.RELEASE_VERSION}</tag>
<releaseVersion>${env.RELEASE_VERSION}</releaseVersion>
<developmentVersion>${env.DEVELOPMENT_VERSION}</developmentVersion>
<arguments>-s .ci/settings.xml -DskipTests</arguments>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
</profiles>
<repositories>
<repository>
<id>zeebe</id>
<name>Zeebe Repository</name>
<url>https://app.camunda.com/nexus/content/repositories/zeebe-io/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>zeebe-snapshots</id>
<name>Zeebe Snapshot Repository</name>
<url>https://app.camunda.com/nexus/content/repositories/zeebe-io-snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<scm>
<url>https://github.com/zeebe-io/zeebe-csv-exporter</url>
<connection>scm:git:git@github.com:zeebe-io/zeebe-csv-exporter.git</connection>
<developerConnection>scm:git:git@github.com:zeebe-io/zeebe-csv-exporter.git
</developerConnection>
<tag>1.1.0</tag>
</scm>
</project>