125 lines
4.3 KiB
XML
125 lines
4.3 KiB
XML
<?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>eu.mikroskeem</groupId>
|
|
<artifactId>utils</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<modules>
|
|
<module>Reflect</module>
|
|
<module>Bannerparser</module>
|
|
<module>EtcdConnector</module>
|
|
<module>Paste</module>
|
|
<module>Itemutils</module>
|
|
<module>TextUtils</module>
|
|
<module>BukkitUtils</module>
|
|
<module>SimpleRPC</module>
|
|
</modules>
|
|
|
|
<!-- Properties -->
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<build.builder>${env.USER}</build.builder>
|
|
<build.number>${env.BUILD_NUMBER}</build.number>
|
|
</properties>
|
|
|
|
<!-- Default environment variables -->
|
|
<profiles>
|
|
<profile>
|
|
<id>Manual build</id>
|
|
<activation>
|
|
<property>
|
|
<name>!env.BUILD_NUMBER</name>
|
|
</property>
|
|
</activation>
|
|
<properties>
|
|
<env.BUILD_NUMBER>Manual:${maven.build.timestamp}</env.BUILD_NUMBER>
|
|
</properties>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<!-- Deployement -->
|
|
<distributionManagement>
|
|
<snapshotRepository>
|
|
<id>mikroskeem-repo</id>
|
|
<url>https://repo.wut.ee/repository/mikroskeem-repo/</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>mikroskeem-repo</id>
|
|
<name>mikroskeem Maven Repository</name>
|
|
<url>http://repo.wut.ee/repository/mikroskeem-repo/</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<build>
|
|
<defaultGoal>clean compile test package</defaultGoal>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.5.1</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>2.8</version>
|
|
<configuration>
|
|
<outputDirectory>${project.build.directory}/javadoc</outputDirectory>
|
|
<reportOutputDirectory>${project.reporting.outputDirectory}/javadoc</reportOutputDirectory>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-javadocs</id>
|
|
<goals>
|
|
<goal>aggregate</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>3.0.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>jar-no-fork</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<version>2.8.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>default-deploy</id>
|
|
<phase>deploy</phase>
|
|
<goals>
|
|
<goal>deploy</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|