Skip to content

Commit

Permalink
prepare upload to maven central repository
Browse files Browse the repository at this point in the history
  • Loading branch information
benni committed Dec 29, 2012
1 parent b798f77 commit 9ab7842
Show file tree
Hide file tree
Showing 20 changed files with 181 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
target/**/*

# the local maven repository #
maven/**/*
mvn-local-repo/**/*
release.properties
13 changes: 13 additions & 0 deletions maven/org/mbassy/mbassador/1.0.7.RC-SNAPSHOT/maven-metadata.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<metadata>
<groupId>org.mbassy</groupId>
<artifactId>mbassador</artifactId>
<version>1.0.7.RC-SNAPSHOT</version>
<versioning>
<snapshot>
<timestamp>20121229.133808</timestamp>
<buildNumber>1</buildNumber>
</snapshot>
<lastUpdated>20121229133808</lastUpdated>
</versioning>
</metadata>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
732608242394f6b316a7cf631208b635
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2cae8933661f8cf18afc2c923436c2457e0b3809
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
d20f34dc532b790786a74566598e5e68
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
13de5221308cf546ff55aa6b5a35ec1f78ecf691
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ec63e6aa1e908e4036cca782675742df
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
79eb0716f839f2b63cf5d3d9796800967d54fdb5
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
21ac5231ee676ba2461e31392e210b54
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
9cfcc0fe9534d2a530b48445331d451b97ca3342
Original file line number Diff line number Diff line change
@@ -0,0 +1,152 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

<modelVersion>4.0.0</modelVersion>
<groupId>org.mbassy</groupId>
<artifactId>mbassador</artifactId>
<version>1.0.7.RC-SNAPSHOT</version>
<packaging>jar</packaging>
<name>mbassador</name>
<description>
Mbassador is a fast and flexible message bus system following the publish subscribe pattern.
It is designed for ease of use and aims to be feature rich and extensible
while preserving resource efficiency and performance.

It features:
declarative listener definition via annotations,
sync and/or async message delivery,
weak-references,
message filtering,
ordering of message handlers etc.

</description>

<url>https://github.com/bennidi/mbassador</url>
<licenses>
<license>
<name>MIT license</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<scm>
<url>scm:git:git@github.com:bennidi/mbassador.git</url>
<connection>scm:git:git@github.com:bennidi/mbassador.git</connection>
</scm>
<developers>

<developer>
<id>bennidi</id>
<name>Benjamin Diedrichsen</name>
<timezone>+1</timezone>
</developer>
</developers>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.java.version>1.6</project.build.java.version>
<github.url>file://${project.basedir}/maven</github.url>
</properties>

<dependencies>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>

</dependencies>

<distributionManagement>
<repository>
<id>mbassador-github-repo</id>
<url>${github.url}</url>
</repository>
</distributionManagement>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${project.build.java.version}</source>
<target>${project.build.java.version}</target>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.4</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>false</skipTests>
</configuration>
</plugin>

<!-- bind the source attaching to package phase -->
<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>
</build>

<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
05e16f4d46db6bc39529ebe889ff552d
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
5e078c7f168816392ca34e41cbc8f58c81b8c5d9
3 changes: 2 additions & 1 deletion maven/org/mbassy/mbassador/maven-metadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
<version>1.0.4.RC</version>
<version>1.0.5.RC</version>
<version>1.0.6.RC</version>
<version>1.0.7.RC-SNAPSHOT</version>
</versions>
<lastUpdated>20121225161830</lastUpdated>
<lastUpdated>20121229133808</lastUpdated>
</versioning>
</metadata>
2 changes: 1 addition & 1 deletion maven/org/mbassy/mbassador/maven-metadata.xml.md5
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3ad8909f1f842b3c7a9644c8ad1cdb84
46231d9bfb55280deeea69a9e18ed52b
2 changes: 1 addition & 1 deletion maven/org/mbassy/mbassador/maven-metadata.xml.sha1
Original file line number Diff line number Diff line change
@@ -1 +1 @@
025b0b9e37663a19aeaf95c12a7d6cf8d8e470fc
3608eef0e3183c20460c8b1839c6a3d5740dd63e
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.mbassy</groupId>
<artifactId>mbassador</artifactId>
<version>1.0.6.RC-SNAPSHOT</version>
<version>1.0.7.RC-SNAPSHOT</version>
<packaging>jar</packaging>
<name>mbassador</name>
<description>
Expand Down

0 comments on commit 9ab7842

Please sign in to comment.