pepperModules-FLExModules
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.corpus-tools</groupId>
<artifactId>pepperModules-FLExModules</artifactId>
<version>1.0.8</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>
<artifactId>pepperModules-FLExModules</artifactId>
<version>1.0.8</version>
<packaging>bundle</packaging>
<name>FLExModules</name>
<description>A Pepper module providing an importer for FLEx XML.</description>
<url>https://github.com/sdruskat/pepperModules-FLExModules</url>
<!-- Declares this project to be an extension of the project pepper-parentModule. -->
<parent>
<groupId>org.corpus-tools</groupId>
<artifactId>pepper-parentModule</artifactId>
<version>3.2.7</version>
</parent>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/sdruskat/pepperModules-FLExModules/issues</url>
</issueManagement>
<distributionManagement>
<!-- Site to deploy releases to. -->
<repository>
<id>ossrh</id>
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
<!-- Site to deploy snapshots to. -->
<snapshotRepository>
<id>ossrh</id>
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<!-- Site to deploy documentation to. -->
<site>
<id>github-project-site</id>
<url>gitsite:git@github.com/sdruskat/pepperModules-FLExModules.git</url>
</site>
</distributionManagement>
<scm>
<connection>scm:git:git://github.com/sdruskat/pepperModules-FLExModules.git</connection>
<developerConnection>scm:git:git@github.com:sdruskat/pepperModules-FLExModules.git</developerConnection>
<url>https://github.com/sdruskat/pepperModules-FLExModules</url>
<tag>HEAD</tag>
</scm>
<organization>
<name>Humboldt-Universität zu Berlin</name>
</organization>
<developers>
<developer>
<name>Stephan Druskat</name>
<organization>Humboldt-Universität zu Berlin</organization>
<id>sdruskat</id>
<url>https://sdruskat.net</url>
<organizationUrl>https://hu.berlin/melatamp</organizationUrl>
</developer>
</developers>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<citation.file>${basedir}/CITATION.cff</citation.file>
</properties>
<dependencies>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.3</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<doclet>ch.raffael.doclets.pegdown.PegdownDoclet</doclet>
<docletArtifact>
<groupId>ch.raffael.pegdown-doclet</groupId>
<artifactId>pegdown-doclet</artifactId>
<version>1.1</version>
</docletArtifact>
<useStandardDocletOptions>true</useStandardDocletOptions>
<show>private</show>
<!-- TODO Decide if this should stay -->
</configuration>
</plugin>
<!-- Coveralls plugin (only used in Travis build) -->
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>4.3.0</version>
<configuration>
<repoToken>${env.coveralls_token}</repoToken>
</configuration>
</plugin>
<!-- JaCoCo plugin to run coverage reports -->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.6.201602180812</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- SOURCES PLUGIN -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- RELEASE PLUGIN -->
<!-- <plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-release-plugin</artifactId><version>2.5.3</version><configuration><goals>deploy site-deploy</goals><tagNameFormat>@{project.version}</tagNameFormat></configuration></plugin>-->
<plugin>
<groupId>external.atlassian.jgitflow</groupId>
<artifactId>jgitflow-maven-plugin</artifactId>
<version>1.0-m5.1</version>
<configuration>
<pushReleases>true</pushReleases>
</configuration>
</plugin>
<!-- gpg sign -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Disable Findbugs Plugin -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>${findbugs-maven-plugin.version}</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
<extensions>
<!-- AUTO-DEPLOY OF DOCS TO GITHUB PAGE -->
<extension>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-gitexe</artifactId>
<version>1.3</version>
</extension>
<extension>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-manager-plexus</artifactId>
<version>1.3</version>
</extension>
<extension>
<groupId>org.kathrynhuxtable.maven.wagon</groupId>
<artifactId>wagon-gitsite</artifactId>
<version>0.3.1</version>
</extension>
</extensions>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<reportSets>
<reportSet>
<!-- by default, id = "default" -->
<reports>
<!-- select non-aggregate reports -->
<report>javadoc</report>
<report>test-javadoc</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<!-- select non-aggregate reports -->
<report>report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</project>