Skip to content

Commit

Permalink
ISSUE: PURPOSE: Versioning as 1.0.1 for release. DESCRIPTION: In pom.…
Browse files Browse the repository at this point in the history
… Also updated pom to deploy release to maven central.
  • Loading branch information
chicoreus committed Nov 28, 2017
1 parent 6d7435b commit 6438692
Showing 1 changed file with 127 additions and 9 deletions.
136 changes: 127 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,97 @@

<groupId>org.kurator</groupId>
<artifactId>kurator-akka</artifactId>
<version>1.0.1-SNAPSHOT</version>
<version>1.0.1</version>
<packaging>jar</packaging>
<name>kurator-akka</name>
<url>http://opensource.ncsa.illinois.edu/projects/KURATOR</url>
<url>http://wiki.datakurator.org/</url>

<licenses>
<license>
<name>Apache license, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.html</url>
</license>
</licenses>

<developers>
<developer>
<name>Timothy McPhillips</name>
<email>tmcphillips@absoluteflow.org</email>
<organization>University of Illinois Urbana-Champaign</organization>
<organizationUrl>http://cirss.ischool.illinois.edu/index.php</organizationUrl>
</developer>

<developer>
<name>David B. Lowery</name>
<email>lowerydb@gmail.com</email>
<organization>Museum of Comparative Zoology, Harvard University</organization>
<organizationUrl>https://www.mcz.harvard.edu/</organizationUrl>
</developer>

<developer>
<name>Paul J. Morris</name>
<email>mole@morris.net</email>
<organization>Museum of Comparative Zoology, Harvard University</organization>
<organizationUrl>https://www.mcz.harvard.edu/</organizationUrl>
</developer>

<developer>
<name>Qian Zhang</name>
<email>zhangqian06@gmail.com</email>
<organization>University of Illinois Urbana-Champaign</organization>
<organizationUrl>http://cirss.ischool.illinois.edu/index.php</organizationUrl>
</developer>

<developer>
<name>John Wieczorek</name>
<email>tuco@berkeley.edu</email>
<organization>Museum of Comparative Zoology, Harvard University</organization>
<organizationUrl>https://www.mcz.harvard.edu/</organizationUrl>
</developer>

<developer>
<name>Allan Koch Veiga</name>
<email>allan.kv@gmail.com</email>
<organization>Research Center on Biodiversity and Computing, University of Sao Paulo</organization>
<organizationUrl>http://www.biocomp.org.br/</organizationUrl>
</developer>
</developers>


<scm>
<connection>scm:git:git@github.com:kurator-org/kurator-akka.git</connection>
<developerConnection>scm:git:git@github.com:kurator-org/kurator-akka.git</developerConnection>
<url>git@github.com:kurator-org/kurator-akka.git</url>
</scm>

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

<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>

<!-- distributionManagement>
<snapshotRepository>
<id>ncsa.snapshots</id>
<name>NCSA Nexus Snapshots</name>
<url>https://opensource.ncsa.illinois.edu/nexus/content/repositories/snapshots</url>
</snapshotRepository>

<repository>
<id>ncsa.releases</id>
<name>NCSA Nexus Releases</name>
<url>https://opensource.ncsa.illinois.edu/nexus/content/repositories/releases</url>
</repository>

</distributionManagement>
</distributionManagement -->

<repositories>

Expand All @@ -35,10 +106,6 @@

</repositories>

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

<dependencies>

<dependency>
Expand Down Expand Up @@ -220,6 +287,21 @@
</configuration>
</plugin>

<!-- Plugin for sources -->
<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>

<!-- Make a standalone jar file -->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
Expand Down Expand Up @@ -288,4 +370,40 @@

</build>

<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<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.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>

0 comments on commit 6438692

Please sign in to comment.