rjack-jetty-jsp 6.1.26.2.1.0-java → 7.2.2.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,7 @@
1
+ === 7.2.2.0 (2010-12-28)
2
+ * Update to Jetty 7.2.2 (JSP 2.1 only)
3
+ * Includes jsp-(api)-2.1-glassfish-2.1.v201001227
4
+
1
5
  === 6.1.26.2.1.0 (2010-12-28)
2
6
  * Update to Jetty 6.1.26 JSP 2.1
3
7
 
data/Manifest.txt CHANGED
@@ -10,9 +10,7 @@ test/test_jsp.rb
10
10
  webapps/test/index.jsp
11
11
  webapps/test/WEB-INF/web.xml
12
12
  webapps/test.war
13
- lib/rjack-jetty-jsp/ant-1.6.5.jar
14
- lib/rjack-jetty-jsp/core-3.1.1.jar
15
13
  lib/rjack-jetty-jsp/ecj-3.5.1.jar
16
- lib/rjack-jetty-jsp/jsp-2.1-glassfish-2.1.v20091210.jar
17
- lib/rjack-jetty-jsp/jsp-2.1-jetty-6.1.26.jar
18
- lib/rjack-jetty-jsp/jsp-api-2.1-glassfish-2.1.v20091210.jar
14
+ lib/rjack-jetty-jsp/jetty-jsp-2.1-7.2.2.v20101205.jar
15
+ lib/rjack-jetty-jsp/jsp-2.1-glassfish-2.1.v20100127.jar
16
+ lib/rjack-jetty-jsp/jsp-api-2.1-glassfish-2.1.v20100127.jar
data/README.rdoc CHANGED
@@ -29,43 +29,20 @@ permissions and limitations under the License.
29
29
 
30
30
  === Jetty Web Container (Java)
31
31
 
32
- Copyright (c) 1995-2006 Mort Bay Consulting Pty Ltd
33
-
34
- Licensed under the Apache License, Version 2.0 (the "License");
35
- you may not use this file except in compliance with the License.
36
- You may obtain a copy of the License at
37
-
38
- http://www.apache.org/licenses/LICENSE-2.0
39
-
40
- Unless required by applicable law or agreed to in writing, software
41
- distributed under the License is distributed on an "AS IS" BASIS,
42
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
43
- See the License for the specific language governing permissions and
44
- limitations under the License.
32
+ Copyright (c) 1995-2009 Mort Bay Consulting Pty Ltd
45
33
 
46
34
  The Jetty Web Container is Copyright Mort Bay Consulting Pty Ltd
47
- unless otherwise noted. It is licensed under the apache 2.0
48
- license.
35
+ unless otherwise noted. It is dual licensed under the apache 2.0
36
+ license and eclipse 1.0 license. Jetty may be distributed under
37
+ either license.
49
38
 
50
- The javax.servlet package used by Jetty is copyright
51
- Sun Microsystems, Inc and Apache Software Foundation. It is
52
- distributed under the Common Development and Distribution License.
53
- You can obtain a copy of the license at
54
- https://glassfish.dev.java.net/public/CDDLv1.0.html.
39
+ The javax.servlet package used was sourced from the Apache
40
+ Software Foundation and is distributed under the apache 2.0
41
+ license.
55
42
 
56
- The UnixCrypt.java code ~Implements the one way cryptography used by
43
+ The UnixCrypt.java code implements the one way cryptography used by
57
44
  Unix systems for simple password protection. Copyright 1996 Aki Yoshida,
58
45
  modified April 2001 by Iris Van den Broeke, Daniel Deville.
59
46
  Permission to use, copy, modify and distribute UnixCrypt
60
47
  for non-commercial or commercial purposes and without fee is
61
48
  granted provided that the copyright notice appears in all copies.
62
-
63
- The default JSP implementation is provided by the Glassfish JSP engine
64
- from project Glassfish http://glassfish.dev.java.net. Copyright 2005
65
- Sun Microsystems, Inc. and portions Copyright Apache Software Foundation.
66
-
67
- Some portions of the code are Copyright:
68
- 2006 Tim Vernum
69
- 1999 Jason Gilbert.
70
-
71
- The jboss integration module contains some LGPL code.
data/Rakefile CHANGED
@@ -31,8 +31,8 @@ t.generated_files = 'webapps/test.war'
31
31
  t.assembly_version = 1.0
32
32
 
33
33
  task :check_pom_deps do
34
- t.test_line_match( 'pom.xml',
35
- %r[<version>#{ Jetty::Jsp::JETTY_VERSION }</version>] )
34
+ v = "#{ Jetty::Jsp::JETTY_VERSION }.#{ Jetty::Jsp::JETTY_BUILD }"
35
+ t.test_line_match( 'pom.xml', %r{<version>#{ v }</version>} )
36
36
  end
37
37
  task :check_history_version do
38
38
  t.test_line_match( 'History.rdoc', /^==/, / #{t.version} / )
data/assembly.xml CHANGED
@@ -7,12 +7,11 @@
7
7
  <dependencySets>
8
8
  <dependencySet>
9
9
  <includes>
10
- <include>org.mortbay.jetty:jsp-2.1-jetty</include>
10
+ <include>org.eclipse.jetty:jetty-jsp-2.1</include>
11
11
  <include>org.mortbay.jetty:jsp-api-2.1-glassfish</include>
12
12
  <include>org.mortbay.jetty:jsp-2.1-glassfish</include>
13
13
  <include>org.eclipse.jdt:core</include>
14
14
  <include>org.eclipse.jdt.core.compiler:ecj</include>
15
- <include>ant:ant</include>
16
15
  </includes>
17
16
  </dependencySet>
18
17
  </dependencySets>
@@ -17,11 +17,11 @@
17
17
  module RJack
18
18
  module Jetty
19
19
  module Jsp
20
- JETTY_VERSION = '6.1.26'
21
- JSP_VERSION = '2.1'
20
+ JETTY_VERSION = '7.2.2'
22
21
  GEM_VERSION = '0'
23
-
24
- VERSION = [ JETTY_VERSION, JSP_VERSION, GEM_VERSION ].join( '.' )
22
+ VERSION = [ JETTY_VERSION, GEM_VERSION ].join( '.' )
23
+ JETTY_BUILD = 'v20101205'
24
+ JSP_VERSION = '2.1'
25
25
 
26
26
  JETTY_JSP_DIR = File.dirname( __FILE__ ) # :nodoc:
27
27
 
data/pom.xml CHANGED
@@ -7,10 +7,21 @@
7
7
  <version>1.0</version>
8
8
 
9
9
  <dependencies>
10
+ <dependency>
11
+ <groupId>org.eclipse.jetty</groupId>
12
+ <artifactId>jetty-jsp-2.1</artifactId>
13
+ <version>7.2.2.v20101205</version>
14
+ </dependency>
10
15
  <dependency>
11
16
  <groupId>org.mortbay.jetty</groupId>
12
- <artifactId>jsp-2.1-jetty</artifactId>
13
- <version>6.1.26</version>
17
+ <artifactId>jsp-2.1-glassfish</artifactId>
18
+ <version>2.1.v20100127</version>
19
+ <exclusions>
20
+ <exclusion>
21
+ <groupId>org.mortbay.jetty</groupId>
22
+ <artifactId>servlet-api</artifactId>
23
+ </exclusion>
24
+ </exclusions>
14
25
  </dependency>
15
26
  </dependencies>
16
27
 
data/webapps/test.war CHANGED
Binary file
metadata CHANGED
@@ -3,13 +3,11 @@ name: rjack-jetty-jsp
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease: false
5
5
  segments:
6
- - 6
7
- - 1
8
- - 26
6
+ - 7
7
+ - 2
9
8
  - 2
10
- - 1
11
9
  - 0
12
- version: 6.1.26.2.1.0
10
+ version: 7.2.2.0
13
11
  platform: java
14
12
  authors:
15
13
  - David Kellum
@@ -28,11 +26,11 @@ dependencies:
28
26
  - - ~>
29
27
  - !ruby/object:Gem::Version
30
28
  segments:
31
- - 6
32
- - 1
33
- - 26
29
+ - 7
30
+ - 2
31
+ - 2
34
32
  - 0
35
- version: 6.1.26.0
33
+ version: 7.2.2.0
36
34
  type: :runtime
37
35
  version_requirements: *id001
38
36
  - !ruby/object:Gem::Dependency
@@ -76,12 +74,10 @@ files:
76
74
  - webapps/test/index.jsp
77
75
  - webapps/test/WEB-INF/web.xml
78
76
  - webapps/test.war
79
- - lib/rjack-jetty-jsp/ant-1.6.5.jar
80
- - lib/rjack-jetty-jsp/core-3.1.1.jar
81
77
  - lib/rjack-jetty-jsp/ecj-3.5.1.jar
82
- - lib/rjack-jetty-jsp/jsp-2.1-glassfish-2.1.v20091210.jar
83
- - lib/rjack-jetty-jsp/jsp-2.1-jetty-6.1.26.jar
84
- - lib/rjack-jetty-jsp/jsp-api-2.1-glassfish-2.1.v20091210.jar
78
+ - lib/rjack-jetty-jsp/jetty-jsp-2.1-7.2.2.v20101205.jar
79
+ - lib/rjack-jetty-jsp/jsp-2.1-glassfish-2.1.v20100127.jar
80
+ - lib/rjack-jetty-jsp/jsp-api-2.1-glassfish-2.1.v20100127.jar
85
81
  has_rdoc: true
86
82
  homepage: http://rjack.rubyforge.org
87
83
  licenses: []
Binary file
Binary file