Skip to content

Commit 82d0293

Browse files
author
Steve Powell
committed
Merge in default
2 parents d5c07ac + ac13ac6 commit 82d0293

File tree

204 files changed

+1326
-488
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

204 files changed

+1326
-488
lines changed

LICENSE-MPL-RabbitMQ

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ EXHIBIT A -Mozilla Public License.
447447
The Original Code is RabbitMQ.
448448

449449
The Initial Developer of the Original Code is VMware, Inc.
450-
Copyright (c) 2007-2011 VMware, Inc. All rights reserved.''
450+
Copyright (c) 2007-2012 VMware, Inc. All rights reserved.''
451451

452452
[NOTE: The text of this Exhibit A may differ slightly from the text of
453453
the notices in the Source Code files of the Original Code. You should

Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ GNUPG_PATH=~
77

88
WEB_URL=http://www.rabbitmq.com/
99
NEXUS_STAGE_URL=http://oss.sonatype.org/service/local/staging/deploy/maven2
10+
MAVEN_NEXUS_VERSION=1.7
1011

1112
AMQP_CODEGEN_DIR=$(shell fgrep sibling.codegen.dir build.properties | sed -e 's:sibling\.codegen\.dir=::')
1213

@@ -77,12 +78,13 @@ stage-and-promote-maven-bundle: maven-bundle
7778
amqp-client-$(VERSION).jar \
7879
amqp-client-$(VERSION)-javadoc.jar \
7980
amqp-client-$(VERSION)-sources.jar && \
80-
mvn org.sonatype.plugins:nexus-maven-plugin:staging-close \
81-
org.sonatype.plugins:nexus-maven-plugin:staging-promote \
81+
mvn org.sonatype.plugins:nexus-maven-plugin:$(MAVEN_NEXUS_VERSION):staging-close \
82+
org.sonatype.plugins:nexus-maven-plugin:$(MAVEN_NEXUS_VERSION):staging-promote \
8283
-Dnexus.url=http://oss.sonatype.org \
8384
-Dnexus.username=$$NEXUS_USERNAME \
8485
-Dnexus.password=$$NEXUS_PASSWORD \
8586
-Dnexus.promote.autoSelectOverride=true \
87+
-DtargetRepositoryId=releases \
8688
-B \
8789
-Dnexus.description="Public release of $$VERSION" \
8890
)

README-EXAMPLES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ HelloServer - Acts as an RPC server over AMQP.
6363
HelloJsonClient - Performs a simple JSON-RPC call over AMQP.
6464
HelloJsonServer - Acts as a JSON-RPC server over AMQP.
6565
LogTail - Tails the server logs.
66-
SendString - Sends a user supplied message over AMQP.
66+
SendString - Sends a user-supplied message over AMQP.
6767

6868

6969
More Complex Examples

build.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -491,3 +491,4 @@
491491
</bundlor:bundlor>
492492
</target>
493493
</project>
494+

bundlorTemplate.mf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,4 @@ Bundle-Name: ${bundle.name}
44
Bundle-Vendor: SpringSource
55
Bundle-Version: ${impl.version}
66
Import-Template:
7-
org.apache.commons.io.*;version="[1.4,2)",
87
javax.*;version=0

bundlorTestTemplate.mf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Bundle-Name: ${bundle.name}
44
Bundle-Vendor: SpringSource
55
Bundle-Version: ${impl.version}
66
Import-Template:
7-
org.apache.commons.io.*;version="[1.4,2)",
8-
org.apache.commons.cli.*;version="[1.2,2)",
7+
org.apache.commons.io.*;version="[1.2,2)",
8+
org.apache.commons.cli.*;version="[1.1,2)",
99
com.rabbitmq.*;version="${impl.version:[=.=.=,=.+1)}",
1010
junit.*;version="[4,5)",
1111
javax.*;version=0

codegen.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
## The Original Code is RabbitMQ.
1212
##
1313
## The Initial Developer of the Original Code is VMware, Inc.
14-
## Copyright (c) 2007-2011 VMware, Inc. All rights reserved.
14+
## Copyright (c) 2007-2012 VMware, Inc. All rights reserved.
1515
##
1616

1717
from __future__ import nested_scopes
@@ -143,7 +143,7 @@ def printFileHeader():
143143
// The Original Code is RabbitMQ.
144144
//
145145
// The Initial Developer of the Original Code is VMware, Inc.
146-
// Copyright (c) 2007-2011 VMware, Inc. All rights reserved.
146+
// Copyright (c) 2007-2012 VMware, Inc. All rights reserved.
147147
//
148148
"""
149149

pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,14 @@
7171
<groupId>commons-cli</groupId>
7272
<artifactId>commons-cli</artifactId>
7373
<version>1.1</version>
74+
<scope>test</scope>
7475
</dependency>
7576

7677
<dependency>
7778
<groupId>commons-io</groupId>
7879
<artifactId>commons-io</artifactId>
7980
<version>1.2</version>
81+
<scope>test</scope>
8082
</dependency>
8183

8284
<dependency>

src/com/rabbitmq/client/Address.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// The Original Code is RabbitMQ.
1212
//
1313
// The Initial Developer of the Original Code is VMware, Inc.
14-
// Copyright (c) 2007-2011 VMware, Inc. All rights reserved.
14+
// Copyright (c) 2007-2012 VMware, Inc. All rights reserved.
1515
//
1616

1717

src/com/rabbitmq/client/AlreadyClosedException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// The Original Code is RabbitMQ.
1212
//
1313
// The Initial Developer of the Original Code is VMware, Inc.
14-
// Copyright (c) 2007-2011 VMware, Inc. All rights reserved.
14+
// Copyright (c) 2007-2012 VMware, Inc. All rights reserved.
1515
//
1616

1717

0 commit comments

Comments
 (0)