Skip to content

Commit

Permalink
Fixed pom to comply with Nexus validation rules
Browse files Browse the repository at this point in the history
  • Loading branch information
amplexus committed Oct 9, 2015
1 parent eb8a75b commit 06f9ce6
Showing 1 changed file with 62 additions and 37 deletions.
99 changes: 62 additions & 37 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,58 +3,83 @@

<groupId>net.sourceforge.javaflacencoder</groupId>
<artifactId>java-flac-encoder</artifactId>
<version>0.3.6-SNAPSHOT</version>
<version>0.3.6</version>
<packaging>jar</packaging>

<name>java-flac-encoder</name>

<url>https://github.com/amplexus/java-flac-encoder</url>
<description>
javaFlacEncoder is a pure java implementation of a FLAC encoder library. It is designed to allow third-party java applications to enable flac encoding without resorting to use of JNI or scripted file conversions. Additionally, a basic console wav->flac encoding tool is included as part of this package.
Original project can be found here: http://javaflacencoder.sourceforge.net/
</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<licenses>
<license>
<name>GNU LGPL(v2.1)</name>
<url>https://github.com/amplexus/java-flac-encoder/blob/master/LICENSE</url>
</license>
</licenses>

<issueManagement>
<system>Sourceforge</system>
<url>http://sourceforge.net/p/javaflacencoder/bugs/</url>
</issueManagement>

<developers>
<developer>
<id>http://sourceforge.net/u/plwww/profile/</id>
<name>Preston Lacey</name>
<timezone>+9</timezone>
</developer>
</developers>

<scm>
<connection>scm:git:git://github.com/amplexus/java-flac-encoder.git</connection>
<developerConnection>scm:git:[email protected]:amplexus/java-flac-encoder.git</developerConnection>
<url>http://github.com/amplexus/java-flac-encoder</url>
</scm>

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.2.2</version>
<configuration>
<arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.2.2</version>
<configuration>
<arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<distributionManagement>
Expand Down

0 comments on commit 06f9ce6

Please sign in to comment.