POM file - Preparing for release
This commit is contained in:
parent
52e685311a
commit
a7baa3ea15
1 changed files with 44 additions and 4 deletions
44
pom.xml
44
pom.xml
|
@ -7,6 +7,8 @@
|
||||||
<version>0.0.1-SNAPSHOT</version>
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
<name>E.B.'s utility libraries - Functional interfaces</name>
|
<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>
|
<description>Various utilities related to Java 8's functional interfaces. This includes interfaces for functions that can throw exceptions.</description>
|
||||||
|
<url>https://github.com/tseeker/ebul-func</url>
|
||||||
|
|
||||||
<licenses>
|
<licenses>
|
||||||
<license>
|
<license>
|
||||||
<name>GNU Lesser General Public License, version 3.0</name>
|
<name>GNU Lesser General Public License, version 3.0</name>
|
||||||
|
@ -14,10 +16,26 @@
|
||||||
<distribution>repo</distribution>
|
<distribution>repo</distribution>
|
||||||
</license>
|
</license>
|
||||||
</licenses>
|
</licenses>
|
||||||
<organization>
|
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
<name>Emmanuel Benoît</name>
|
<name>Emmanuel Benoît</name>
|
||||||
<url>http://www.ebenoit.info</url>
|
<url>http://www.ebenoit.info</url>
|
||||||
</organization>
|
<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>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
@ -33,6 +51,28 @@
|
||||||
<target>1.8</target>
|
<target>1.8</target>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<goals>
|
||||||
|
<goal>jar</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-source-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<goals>
|
||||||
|
<goal>jar</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue