Skip to content

Commit

Permalink
Prepare for central release
Browse files Browse the repository at this point in the history
  • Loading branch information
niloc132 committed Dec 11, 2019
1 parent a48b7c9 commit acc28f2
Showing 1 changed file with 40 additions and 1 deletion.
41 changes: 40 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
<version>0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>gwt-nio</name>
<description>J2CL/GWT support for java.nio packages</description>
<inceptionYear>2019</inceptionYear>

<licenses>
<license>
<name>Apache License Version 2.0</name>
Expand All @@ -15,11 +19,27 @@
</license>
</licenses>


<scm>
<connection>scm:git:git://github.com/vertispan/gwt-nio.git</connection>
<developerConnection>scm:git:ssh://github.com:vertispan/gwt-nio.git</developerConnection>
<url>https://github.com/vertispan/gwt-nio/tree/master</url>
</scm>

<developers>
<developer>
<name>Colin Alworth</name>
<email>[email protected]</email>
</developer>
</developers>

<url>http://www.gwtproject.org/</url>

<dependencies>
<dependency>
<groupId>com.google.elemental2</groupId>
<artifactId>elemental2-core</artifactId>
<version>1.0.0</version>
<version>1.0.0-RC1</version>
</dependency>
</dependencies>

Expand Down Expand Up @@ -53,6 +73,25 @@
</plugins>
</build>

<!-- Specify that we will push snapshots and releases to sonatype's repos -->
<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>

<repositories>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>

<profiles>
<!-- release profile to create sources, javadoc, and sign all artifacts before uploading -->
<profile>
Expand Down

0 comments on commit acc28f2

Please sign in to comment.