Skip to content
This repository has been archived by the owner on May 21, 2020. It is now read-only.

Commit

Permalink
Update pom for 1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ibauersachs committed Sep 13, 2015
1 parent 155f57e commit ec5e6e4
Showing 1 changed file with 114 additions and 4 deletions.
118 changes: 114 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,40 @@
<groupId>org.jitsi</groupId>
<artifactId>bccontrib</artifactId>
<packaging>bundle</packaging>
<version>1.0-SNAPSHOT</version>
<version>1.0</version>

This comment has been minimized.

<name>bccontrib</name>
<url>http://maven.apache.org</url>
<description>Skein/Threefish/Fortuna implementations for ZRTP4J used by Jitsi</description>
<url>https://github.com/jitsi/bccontrib</url>

<scm>
<connection>scm:git:https://github.com/jitsi/bccontrib.git</connection>
<developerConnection>scm:git:https://github.com/jitsi/bccontrib.git</developerConnection>
<url>https://github.com/jitsi/bccontrib</url>
</scm>

<developers>
<developer>
<id>ibauersachs</id>
<name>Ingo Bauersachs</name>
<email>ingo@jitsi.org</email>
</developer>
</developers>

<licenses>
<license>
<name>MIT</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
<comments>Does NOT apply to the files in src/main/java/org/jitsi/bccontrib/prng/*</comments>
</license>
<license>
<name>GPL2+ with classpath exception</name>
<url>http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt</url>
<distribution>repo</distribution>
<comments>Applies only to the files in src/main/java/org/jitsi/bccontrib/prng/*</comments>
</license>
</licenses>

<dependencies>
<dependency>
<groupId>junit</groupId>
Expand All @@ -20,15 +51,94 @@
<version>1.48</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.7</version>
<extensions>true</extensions>
<configuration />
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>release</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.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>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>

0 comments on commit ec5e6e4

Please sign in to comment.