rjack-qpid-client 0.8.1-java → 0.10.0-java

Sign up to get free protection for your applications and to get access to all the features.
data/History.rdoc CHANGED
@@ -1,3 +1,6 @@
1
+ === 0.10.0 (2011-5-15)
2
+ * Upgrade to Qpid java client 0.10
3
+
1
4
  === 0.8.1 (2011-3-10)
2
5
  * Support rjack-jms [1.0,1.2)
3
6
  * Make sure Native exceptions in QpidJMSContext are raised as Java
data/Manifest.txt CHANGED
@@ -9,5 +9,5 @@ lib/rjack-qpid-client/base.rb
9
9
  lib/rjack-qpid-client.rb
10
10
  lib/rjack-qpid-client/qpid_jms_context.rb
11
11
  test/test_qpid_client.rb
12
- lib/rjack-qpid-client/qpid-client-0.8.jar
13
- lib/rjack-qpid-client/qpid-common-0.8.jar
12
+ lib/rjack-qpid-client/qpid-client-0.10.jar
13
+ lib/rjack-qpid-client/qpid-common-0.10.jar
data/assembly.xml CHANGED
@@ -6,6 +6,7 @@
6
6
  <includeBaseDirectory>false</includeBaseDirectory>
7
7
  <dependencySets>
8
8
  <dependencySet>
9
+ <useProjectArtifact>false</useProjectArtifact>
9
10
  <includes>
10
11
  <include>org.apache.qpid:qpid-common</include>
11
12
  <include>org.apache.qpid:qpid-client</include>
@@ -18,10 +18,10 @@ module RJack
18
18
  module QpidClient
19
19
 
20
20
  # QpidClient (java) version
21
- QPID_VERSION = '0.8'
21
+ QPID_VERSION = '0.10'
22
22
 
23
23
  # rjack gem version
24
- VERSION = QPID_VERSION + '.1'
24
+ VERSION = QPID_VERSION + '.0'
25
25
 
26
26
  LIB_DIR = File.dirname( __FILE__ ) # :nodoc:
27
27
  end
data/pom.xml CHANGED
@@ -7,17 +7,15 @@
7
7
  <version>1.0</version>
8
8
  <name>QPid java client for Gem</name>
9
9
 
10
+ <properties>
11
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12
+ </properties>
13
+
10
14
  <dependencies>
11
15
  <dependency>
12
16
  <groupId>org.apache.qpid</groupId>
13
17
  <artifactId>qpid-client</artifactId>
14
- <version>0.8</version>
15
- </dependency>
16
-
17
- <dependency>
18
- <groupId>org.apache.qpid</groupId>
19
- <artifactId>qpid-common</artifactId>
20
- <version>0.8</version>
18
+ <version>0.10</version>
21
19
  </dependency>
22
20
  </dependencies>
23
21
 
@@ -25,18 +23,20 @@
25
23
  <plugins>
26
24
  <plugin>
27
25
  <artifactId>maven-assembly-plugin</artifactId>
26
+ <version>2.2.1</version>
28
27
  <configuration>
28
+ <attach>false</attach>
29
+ <ignoreDirFormatExtensions>false</ignoreDirFormatExtensions>
29
30
  <descriptors>
30
31
  <descriptor>assembly.xml</descriptor>
31
32
  </descriptors>
32
- <tarLongFileMode>gnu</tarLongFileMode>
33
33
  </configuration>
34
34
  <executions>
35
35
  <execution>
36
36
  <id>assembly</id>
37
37
  <phase>package</phase>
38
38
  <goals>
39
- <goal>attached</goal>
39
+ <goal>single</goal>
40
40
  </goals>
41
41
  </execution>
42
42
  </executions>
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: rjack-qpid-client
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.8.1
5
+ version: 0.10.0
6
6
  platform: java
7
7
  authors:
8
8
  - David Kellum
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-03-10 00:00:00 -08:00
13
+ date: 2011-05-15 00:00:00 -07:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
@@ -101,8 +101,8 @@ files:
101
101
  - lib/rjack-qpid-client.rb
102
102
  - lib/rjack-qpid-client/qpid_jms_context.rb
103
103
  - test/test_qpid_client.rb
104
- - lib/rjack-qpid-client/qpid-client-0.8.jar
105
- - lib/rjack-qpid-client/qpid-common-0.8.jar
104
+ - lib/rjack-qpid-client/qpid-client-0.10.jar
105
+ - lib/rjack-qpid-client/qpid-common-0.10.jar
106
106
  has_rdoc: true
107
107
  homepage: http://rjack.rubyforge.org
108
108
  licenses: []