2016-08-27 16:18:28 +03:00
|
|
|
<?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>
|
|
|
|
</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>
|
|
|
|
|
|
|
|
<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>
|
2016-08-28 01:10:53 +03:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>2.8</version>
|
|
|
|
<configuration>
|
2016-08-28 01:29:18 +03:00
|
|
|
<outputDirectory>${project.build.directory}/apidocs</outputDirectory>
|
2016-08-28 01:10:53 +03:00
|
|
|
<version>2.8</version>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<goals>
|
|
|
|
<goal>aggregate</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2016-08-28 01:32:51 +03:00
|
|
|
</plugin>3
|
2016-08-27 16:18:28 +03:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|