Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
137 lines (129 sloc)
5.6 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns="http://maven.apache.org/POM/4.0.0" | |
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>de.onlinecodex</groupId> | |
<artifactId>online-codex</artifactId> | |
<version>9.0.0</version> | |
<packaging>jar</packaging> | |
<url>http://www.onlinecodex.de</url> | |
<properties> | |
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding> | |
<project.build.mainClass>oc.OnlineCodex</project.build.mainClass> | |
<maven.compiler.source>1.8</maven.compiler.source> | |
<maven.compiler.target>1.8</maven.compiler.target> | |
<jackson.version>2.9.0</jackson.version> | |
</properties> | |
<scm> | |
<connection>scm:git:https://github.com/OnlineCodex/OnlineCodex.git</connection> | |
<developerConnection>${project.scm.connection}</developerConnection> | |
<url>https://github.com/OnlineCodex/OnlineCodex/tree/${project.scm.tag}</url> | |
<tag>HEAD</tag> | |
</scm> | |
<issueManagement> | |
<system>github</system> | |
<url>https://github.com/OnlineCodex/OnlineCodex/issues</url> | |
</issueManagement> | |
<dependencies> | |
<dependency> | |
<groupId>com.fasterxml.jackson.dataformat</groupId> | |
<artifactId>jackson-dataformat-yaml</artifactId> | |
<version>${jackson.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.slf4j</groupId> | |
<artifactId>slf4j-api</artifactId> | |
<version>1.7.25</version> | |
</dependency> | |
<dependency> | |
<groupId>ch.qos.logback</groupId> | |
<artifactId>logback-classic</artifactId> | |
<version>1.2.3</version> | |
</dependency> | |
<dependency> | |
<groupId>com.google.guava</groupId> | |
<artifactId>guava</artifactId> | |
<version>19.0</version> | |
</dependency> | |
<dependency> | |
<groupId>com.github.zafarkhaja</groupId> | |
<artifactId>java-semver</artifactId> | |
<version>0.9.0</version> | |
</dependency> | |
<dependency> | |
<groupId>org.kohsuke</groupId> | |
<artifactId>github-api</artifactId> | |
<version>1.94</version> | |
</dependency> | |
<!-- Test --> | |
<dependency> | |
<groupId>pl.pragmatists</groupId> | |
<artifactId>JUnitParams</artifactId> | |
<version>1.1.1</version> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>junit</groupId> | |
<artifactId>junit</artifactId> | |
<version>4.12</version> | |
<scope>test</scope> | |
</dependency> | |
</dependencies> | |
<build> | |
<finalName>OnlineCodex</finalName> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-shade-plugin</artifactId> | |
<version>3.1.1</version> | |
<executions> | |
<execution> | |
<phase>package</phase> | |
<goals> | |
<goal>shade</goal> | |
</goals> | |
<configuration> | |
<transformers> | |
<transformer | |
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> | |
<manifestEntries> | |
<Main-Class>${project.build.mainClass}</Main-Class> | |
<Specification-Title>${project.artifactId}</Specification-Title> | |
<Specification-Version>${project.version}</Specification-Version> | |
<Implementation-Title>${project.artifactId}</Implementation-Title> | |
<Implementation-Version>${project.version}</Implementation-Version> | |
<Implementation-Vendor-Id>${project.groupId}</Implementation-Vendor-Id> | |
</manifestEntries> | |
</transformer> | |
</transformers> | |
</configuration> | |
</execution> | |
</executions> | |
</plugin> | |
</plugins> | |
<pluginManagement> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-release-plugin</artifactId> | |
<version>2.5.3</version> | |
<configuration> | |
<tag>v${releaseVersion}</tag> | |
<tagNameFormat>v@{project.version}</tagNameFormat> | |
<autoVersionSubmodules>true</autoVersionSubmodules> | |
<!-- releaseProfiles configuration will actually force a Maven profile | |
- the `releases` profile – to become active during the Release process. --> | |
<releaseProfiles>releases</releaseProfiles> | |
</configuration> | |
<dependencies> | |
<dependency> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-scm-plugin</artifactId> | |
<version>1.8.1</version> | |
</dependency> | |
</dependencies> | |
</plugin> | |
</plugins> | |
</pluginManagement> | |
</build> | |
</project> | |