2015-09-11 13:59:02 +02:00
<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 > info.ebenoit</groupId>
<artifactId > ebul-func</artifactId>
2015-09-17 09:35:42 +02:00
<version > 1.1-SNAPSHOT</version>
2015-09-11 13:59:02 +02:00
<name > E.B.'s utility libraries - Functional interfaces</name>
2015-09-11 15:47:01 +02:00
<description > Various utilities related to Java 8's functional interfaces. This includes support for the float primitive type as well as versions of all interfaces capable of rethrowing checked exceptions as runtime exceptions.</description>
2015-09-11 15:26:51 +02:00
<url > https://github.com/tseeker/ebul-func</url>
2015-09-11 13:59:02 +02:00
<licenses >
<license >
<name > GNU Lesser General Public License, version 3.0</name>
<url > http://www.gnu.org/licenses/lgpl-3.0.en.html</url>
<distribution > repo</distribution>
</license>
</licenses>
2015-09-11 15:26:51 +02:00
<developers >
<developer >
<name > Emmanuel Benoît</name>
<url > http://www.ebenoit.info</url>
<email > ebenoit@ebenoit.info</email>
<id > tseeker</id>
</developer>
</developers>
<scm >
<url > https://github.com/tseeker/ebul-func</url>
<connection > scm:git:git://github.com/tseeker/ebul-func.git</connection>
<developerConnection > scm:git:git@github.com:tseeker/ebul-func</developerConnection>
</scm>
<issueManagement >
<url > https://github.com/tseeker/ebul-func/issues</url>
<system > GitHub Issues</system>
</issueManagement>
2015-09-11 13:59:02 +02:00
<properties >
<project.build.sourceEncoding > UTF-8</project.build.sourceEncoding>
2015-09-11 16:20:20 +02:00
<github.global.server > github</github.global.server>
2015-09-11 13:59:02 +02:00
</properties>
<build >
<plugins >
2015-09-11 15:45:37 +02:00
2015-09-11 13:59:02 +02:00
<plugin >
<artifactId > maven-compiler-plugin</artifactId>
<version > 3.3</version>
<configuration >
<source > 1.8</source>
<target > 1.8</target>
</configuration>
</plugin>
2015-09-11 15:45:37 +02:00
2015-09-11 15:26:51 +02:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-javadoc-plugin</artifactId>
2015-09-11 15:30:42 +02:00
<version > 2.10.3</version>
2015-09-11 15:26:51 +02:00
<executions >
<execution >
<goals >
<goal > jar</goal>
</goals>
</execution>
</executions>
</plugin>
2015-09-11 15:45:37 +02:00
2015-09-11 15:26:51 +02:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-source-plugin</artifactId>
2015-09-11 15:30:42 +02:00
<version > 2.4</version>
2015-09-11 15:26:51 +02:00
<executions >
<execution >
<goals >
<goal > jar</goal>
</goals>
</execution>
</executions>
</plugin>
2015-09-11 15:45:37 +02:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-site-plugin</artifactId>
<version > 3.0</version>
<configuration >
<reportPlugins >
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-project-info-reports-plugin</artifactId>
<version > 2.2</version>
<configuration >
<dependencyDetailsEnabled > true</dependencyDetailsEnabled>
<dependencyLocationsEnabled > true</dependencyLocationsEnabled>
</configuration>
</plugin>
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-javadoc-plugin</artifactId>
<version > 2.7</version>
</plugin>
</reportPlugins>
</configuration>
</plugin>
2015-09-11 16:20:20 +02:00
<plugin >
<groupId > com.github.github</groupId>
<artifactId > site-maven-plugin</artifactId>
<version > 0.12</version>
<configuration >
<message > Creating site for ${project.version}</message>
<dryRun > true</dryRun>
</configuration>
<executions >
<execution >
<goals >
<goal > site</goal>
</goals>
<phase > site</phase>
</execution>
</executions>
</plugin>
2015-09-11 13:59:02 +02:00
</plugins>
</build>
</project>