Skip to content

Commit

Permalink
Added missing pom.xml content: license, url, description, and plugins…
Browse files Browse the repository at this point in the history
… for JavaDoc and source jar
  • Loading branch information
egonw committed Aug 9, 2022
1 parent e388a42 commit 49c2a96
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,18 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.egonw</groupId>
<artifactId>nanojava</artifactId>
<description>Java library extending the Chemistry Development Kit with functionality for nanomaterials.</description>
<name>NanoJava</name>
<version>2.0.0</version>
<url>https://github.com/enanomapper/nanojava</url>

<licenses>
<license>
<name>GNU LGPL 2.1 or later</name>
<url>http://www.gnu.org/licenses/lgpl.html</url>
<distribution>repo</distribution>
</license>
</licenses>

<scm>
<connection>scm:git:git://github.com/egonw/nanojava.git</connection>
Expand Down Expand Up @@ -166,6 +176,44 @@
<excludedGroups>${junit5.excludeGroups}</excludedGroups>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.4.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
<execution>
<id>aggregate</id>
<goals>
<goal>aggregate</goal>
</goals>
<phase>site</phase>
<configuration>
</configuration>
</execution>
</executions>
<configuration>
<source>8</source>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 49c2a96

Please sign in to comment.