rjack-jetty 9.0.0.1-java → 9.0.0.2-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/History.rdoc CHANGED
@@ -1,5 +1,8 @@
1
+ === 9.0.0.2 (2013-1-24)
2
+ * Update to Jetty 9.0.0.M5
3
+
1
4
  === 9.0.0.1 (2012-12-28)
2
- * Update to Jetty 9.0.0.M4.
5
+ * Update to Jetty 9.0.0.M4
3
6
 
4
7
  === 9.0.0.0 (2012-12-13)
5
8
  * Update to Jetty 9.0.0.M3. Note this is a major upgrade and currently
data/Manifest.txt CHANGED
@@ -16,15 +16,15 @@ webapps/test/index.html
16
16
  webapps/test/WEB-INF/web.xml
17
17
  webapps/test.war
18
18
  lib/rjack-jetty/javax.servlet-3.0.0.v201112011016.jar
19
- lib/rjack-jetty/jetty-client-9.0.0.M4.jar
20
- lib/rjack-jetty/jetty-continuation-9.0.0.M4.jar
21
- lib/rjack-jetty/jetty-http-9.0.0.M4.jar
22
- lib/rjack-jetty/jetty-io-9.0.0.M4.jar
23
- lib/rjack-jetty/jetty-rewrite-9.0.0.M4.jar
24
- lib/rjack-jetty/jetty-security-9.0.0.M4.jar
25
- lib/rjack-jetty/jetty-server-9.0.0.M4.jar
26
- lib/rjack-jetty/jetty-servlet-9.0.0.M4.jar
27
- lib/rjack-jetty/jetty-util-9.0.0.M4.jar
28
- lib/rjack-jetty/jetty-webapp-9.0.0.M4.jar
29
- lib/rjack-jetty/jetty-xml-9.0.0.M4.jar
19
+ lib/rjack-jetty/jetty-client-9.0.0.M5.jar
20
+ lib/rjack-jetty/jetty-continuation-9.0.0.M5.jar
21
+ lib/rjack-jetty/jetty-http-9.0.0.M5.jar
22
+ lib/rjack-jetty/jetty-io-9.0.0.M5.jar
23
+ lib/rjack-jetty/jetty-rewrite-9.0.0.M5.jar
24
+ lib/rjack-jetty/jetty-security-9.0.0.M5.jar
25
+ lib/rjack-jetty/jetty-server-9.0.0.M5.jar
26
+ lib/rjack-jetty/jetty-servlet-9.0.0.M5.jar
27
+ lib/rjack-jetty/jetty-util-9.0.0.M5.jar
28
+ lib/rjack-jetty/jetty-webapp-9.0.0.M5.jar
29
+ lib/rjack-jetty/jetty-xml-9.0.0.M5.jar
30
30
  lib/rjack-jetty/rjack-jetty-1.0.jar
data/README.rdoc CHANGED
@@ -62,7 +62,7 @@ No hard requirements, however:
62
62
 
63
63
  === rjack-jetty gem
64
64
 
65
- Copyright (c) 2008-2012 David Kellum
65
+ Copyright (c) 2008-2013 David Kellum
66
66
 
67
67
  Licensed under the Apache License, Version 2.0 (the "License"); you
68
68
  may not use this file except in compliance with the License. You
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env jruby
2
2
  # -*- ruby -*-
3
3
  #--
4
- # Copyright (c) 2008-2012 David Kellum
4
+ # Copyright (c) 2008-2013 David Kellum
5
5
  #
6
6
  # Licensed under the Apache License, Version 2.0 (the "License"); you
7
7
  # may not use this file except in compliance with the License. You
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2012 David Kellum
2
+ # Copyright (c) 2008-2013 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You
@@ -17,8 +17,8 @@
17
17
  module RJack
18
18
  module Jetty
19
19
  JETTY_VERSION = '9.0.0'
20
- VERSION = JETTY_VERSION + '.1'
21
- JETTY_BUILD = 'M4'
20
+ VERSION = JETTY_VERSION + '.2'
21
+ JETTY_BUILD = 'M5'
22
22
  SERVLET_API_VERSION = '3.0.0'
23
23
  SERVLET_API_BUILD = 'v201112011016'
24
24
 
Binary file
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2012 David Kellum
2
+ # Copyright (c) 2008-2013 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You
data/lib/rjack-jetty.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2012 David Kellum
2
+ # Copyright (c) 2008-2013 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You
data/pom.xml CHANGED
@@ -16,43 +16,43 @@
16
16
  <dependency>
17
17
  <groupId>org.eclipse.jetty</groupId>
18
18
  <artifactId>jetty-servlet</artifactId>
19
- <version>9.0.0.M4</version>
19
+ <version>9.0.0.M5</version>
20
20
  </dependency>
21
21
 
22
22
  <dependency>
23
23
  <groupId>org.eclipse.jetty</groupId>
24
24
  <artifactId>jetty-server</artifactId>
25
- <version>9.0.0.M4</version>
25
+ <version>9.0.0.M5</version>
26
26
  </dependency>
27
27
 
28
28
  <dependency>
29
29
  <groupId>org.eclipse.jetty</groupId>
30
30
  <artifactId>jetty-webapp</artifactId>
31
- <version>9.0.0.M4</version>
31
+ <version>9.0.0.M5</version>
32
32
  </dependency>
33
33
 
34
34
  <dependency>
35
35
  <groupId>org.eclipse.jetty</groupId>
36
36
  <artifactId>jetty-util</artifactId>
37
- <version>9.0.0.M4</version>
37
+ <version>9.0.0.M5</version>
38
38
  </dependency>
39
39
 
40
40
  <dependency>
41
41
  <groupId>org.eclipse.jetty</groupId>
42
42
  <artifactId>jetty-rewrite</artifactId>
43
- <version>9.0.0.M4</version>
43
+ <version>9.0.0.M5</version>
44
44
  </dependency>
45
45
 
46
46
  <dependency>
47
47
  <groupId>org.eclipse.jetty</groupId>
48
48
  <artifactId>jetty-client</artifactId>
49
- <version>9.0.0.M4</version>
49
+ <version>9.0.0.M5</version>
50
50
  </dependency>
51
51
 
52
52
  <dependency>
53
53
  <groupId>org.eclipse.jetty</groupId>
54
54
  <artifactId>jetty-continuation</artifactId>
55
- <version>9.0.0.M4</version>
55
+ <version>9.0.0.M5</version>
56
56
  </dependency>
57
57
 
58
58
  </dependencies>
data/test/test_jetty.rb CHANGED
@@ -2,7 +2,7 @@
2
2
  #.hashdot.profile += jruby-shortlived
3
3
 
4
4
  #--
5
- # Copyright (c) 2008-2012 David Kellum
5
+ # Copyright (c) 2008-2013 David Kellum
6
6
  #
7
7
  # Licensed under the Apache License, Version 2.0 (the "License"); you
8
8
  # may not use this file except in compliance with the License. You
data/webapps/test.war CHANGED
Binary file
metadata CHANGED
@@ -2,14 +2,14 @@
2
2
  name: rjack-jetty
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 9.0.0.1
5
+ version: 9.0.0.2
6
6
  platform: java
7
7
  authors:
8
8
  - David Kellum
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-12-28 00:00:00.000000000 Z
12
+ date: 2013-01-25 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rjack-slf4j
@@ -109,17 +109,17 @@ files:
109
109
  - webapps/test/WEB-INF/web.xml
110
110
  - webapps/test.war
111
111
  - lib/rjack-jetty/javax.servlet-3.0.0.v201112011016.jar
112
- - lib/rjack-jetty/jetty-client-9.0.0.M4.jar
113
- - lib/rjack-jetty/jetty-continuation-9.0.0.M4.jar
114
- - lib/rjack-jetty/jetty-http-9.0.0.M4.jar
115
- - lib/rjack-jetty/jetty-io-9.0.0.M4.jar
116
- - lib/rjack-jetty/jetty-rewrite-9.0.0.M4.jar
117
- - lib/rjack-jetty/jetty-security-9.0.0.M4.jar
118
- - lib/rjack-jetty/jetty-server-9.0.0.M4.jar
119
- - lib/rjack-jetty/jetty-servlet-9.0.0.M4.jar
120
- - lib/rjack-jetty/jetty-util-9.0.0.M4.jar
121
- - lib/rjack-jetty/jetty-webapp-9.0.0.M4.jar
122
- - lib/rjack-jetty/jetty-xml-9.0.0.M4.jar
112
+ - lib/rjack-jetty/jetty-client-9.0.0.M5.jar
113
+ - lib/rjack-jetty/jetty-continuation-9.0.0.M5.jar
114
+ - lib/rjack-jetty/jetty-http-9.0.0.M5.jar
115
+ - lib/rjack-jetty/jetty-io-9.0.0.M5.jar
116
+ - lib/rjack-jetty/jetty-rewrite-9.0.0.M5.jar
117
+ - lib/rjack-jetty/jetty-security-9.0.0.M5.jar
118
+ - lib/rjack-jetty/jetty-server-9.0.0.M5.jar
119
+ - lib/rjack-jetty/jetty-servlet-9.0.0.M5.jar
120
+ - lib/rjack-jetty/jetty-util-9.0.0.M5.jar
121
+ - lib/rjack-jetty/jetty-webapp-9.0.0.M5.jar
122
+ - lib/rjack-jetty/jetty-xml-9.0.0.M5.jar
123
123
  - lib/rjack-jetty/rjack-jetty-1.0.jar
124
124
  homepage: http://rjack.rubyforge.org/jetty
125
125
  licenses: []