Skip to content

Commit

Permalink
Releasing 0.4.0 - To Maven Central
Browse files Browse the repository at this point in the history
  • Loading branch information
mbknor committed Aug 24, 2016
1 parent 77c96cf commit be847c6
Show file tree
Hide file tree
Showing 2 changed files with 84 additions and 30 deletions.
20 changes: 7 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Dropwizard ActiveMQ Bundle
==================================
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.kjetland.dropwizard/dropwizard-activemq/badge.svg)](http://search.maven.org/#search%7Cga%7C1%7Cdropwizard-activemq)

*Since Dropwizard ActiveMQ Bundle is written in Java 8, your app must also be compiled with Java 8 (But you can of course still use Dropwizard which is not Java 8).*

Expand All @@ -10,7 +11,12 @@ Please have a look at the [Example application](https://github.com/mbknor/dropwi
Change History
-------

Current version is: **0.3.13**
Current version is: **0.4.0**

Version 0.4.0

* First version released to Maven Central
* Code is identical to version 0.3.13

Version 0.3.13

Expand Down Expand Up @@ -98,18 +104,6 @@ Add it as a dependency:
</dependency>
```

Since this project is hosted on my own maven repo here on github, you also have to add this to your pom:

```xml
<repositories>
<repository>
<id>mbknor</id>
<name>mbknor</name>
<url>https://raw.githubusercontent.com/mbknor/mbknor.github.com/master/m2repo/releases</url>
</repository>
</repositories>
```

Configuration
------------

Expand Down
94 changes: 77 additions & 17 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,22 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.kjetland.dropwizard</groupId>
<artifactId>dropwizard-activemq</artifactId>
<version>0.3.14-SNAPSHOT</version>
<version>0.4.0</version>

<name>dropwizard-activemq</name>
<url>https://github.com/mbknor/dropwizard-activemq-bundle</url>
<description>
Use it when you need to send and receive JSON via ActiveMQ in your Dropwizard application
</description>

<developers>
<developer>
<id>mbknor</id>
<name>Morten Kjetland</name>
<email>mbk@kjetland.com</email>
<timezone>+1</timezone>
</developer>
</developers>

<licenses>
<license>
Expand Down Expand Up @@ -59,6 +74,13 @@
</dependency>
</dependencies>

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


<build>
<plugins>
Expand Down Expand Up @@ -105,24 +127,62 @@
</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.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>
<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>false</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>

<repositories>
<repository>
<id>mbknor</id>
<name>mbknor</name>
<url>https://raw.githubusercontent.com/mbknor/mbknor.github.com/master/m2repo/releases/</url>
</repository>
</repositories>

<distributionManagement>
<repository>
<id>mbk_mvn_repo</id>
<layout>default</layout>
<name>mbk_mvn_repo</name>
<url>file:///projects/git/mbknor.github.com/m2repo/releases</url>
</repository>
</distributionManagement>
<scm>
<connection>scm:git:git@github.com:mbknor/dropwizard-activemq-bundle.git</connection>
<developerConnection>scm:git:git@github.com:mbknor/dropwizard-activemq-bundle.git</developerConnection>
<url>http://github.com/mbknor/dropwizard-activemq-bundle</url>
</scm>

</project>

0 comments on commit be847c6

Please sign in to comment.