Emmanuel BENOîT
ec2c870f7b
Contains POM (probably incomplete) as well as all Throwing versions of java.util.function interfaces + the Runnable interface.
39 lines
1.2 KiB
XML
39 lines
1.2 KiB
XML
<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>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<name>E.B.'s utility libraries - Functional interfaces</name>
|
|
<description>Various utilities related to Java 8's functional interfaces. This includes interfaces for functions that can throw exceptions.</description>
|
|
<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>
|
|
<organization>
|
|
<name>Emmanuel Benoît</name>
|
|
<url>http://www.ebenoit.info</url>
|
|
</organization>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.3</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|