rjack-jetty-jsp 7.2.2.0-java → 7.4.1.0-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,3 +1,6 @@
1
+ === 7.4.1.0 (2011-5-15)
2
+ * Update to Jetty 7.4.1 (JSP 2.1 only)
3
+
1
4
  === 7.2.2.0 (2010-12-28)
2
5
  * Update to Jetty 7.2.2 (JSP 2.1 only)
3
6
  * Includes jsp-(api)-2.1-glassfish-2.1.v201001227
data/Manifest.txt CHANGED
@@ -11,6 +11,6 @@ webapps/test/index.jsp
11
11
  webapps/test/WEB-INF/web.xml
12
12
  webapps/test.war
13
13
  lib/rjack-jetty-jsp/ecj-3.5.1.jar
14
- lib/rjack-jetty-jsp/jetty-jsp-2.1-7.2.2.v20101205.jar
14
+ lib/rjack-jetty-jsp/jetty-jsp-2.1-7.4.1.v20110513.jar
15
15
  lib/rjack-jetty-jsp/jsp-2.1-glassfish-2.1.v20100127.jar
16
16
  lib/rjack-jetty-jsp/jsp-api-2.1-glassfish-2.1.v20100127.jar
data/README.rdoc CHANGED
@@ -13,7 +13,7 @@ rjack-jetty[http://rjack.rubyforge.org/jetty/] gem.
13
13
 
14
14
  === rjack-jetty-jsp gem
15
15
 
16
- Copyright (c) 2008-2010 David Kellum
16
+ Copyright (c) 2008-2011 David Kellum
17
17
 
18
18
  Licensed under the Apache License, Version 2.0 (the "License"); you
19
19
  may not use this file except in compliance with the License. You
data/Rakefile CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH << './lib'
4
4
  require 'rjack-jetty-jsp/base'
5
5
 
6
6
  require 'rubygems'
7
- gem 'rjack-tarpit', '~> 1.2.0'
7
+ gem 'rjack-tarpit', '~> 1.3.0'
8
8
  require 'rjack-tarpit'
9
9
 
10
10
  include RJack
@@ -16,8 +16,7 @@ t = TarPit.new( 'rjack-jetty-jsp',
16
16
  t.specify do |h|
17
17
  h.developer( "David Kellum", "dek-oss@gravitext.com" )
18
18
  h.extra_deps << [ 'rjack-jetty', "~> #{Jetty::Jsp::JETTY_VERSION}.0" ]
19
- h.rubyforge_name = 'rjack'
20
- h.remote_rdoc_dir = 'jetty-jsp'
19
+ h.rdoc_locations << "dekellum@rubyforge.org:/var/www/gforge-projects/rjack/jetty-jsp"
21
20
  end
22
21
 
23
22
  file 'webapps/test.war' => [ 'webapps/test/index.jsp',
data/assembly.xml CHANGED
@@ -6,11 +6,11 @@
6
6
  <includeBaseDirectory>false</includeBaseDirectory>
7
7
  <dependencySets>
8
8
  <dependencySet>
9
+ <useProjectArtifact>false</useProjectArtifact>
9
10
  <includes>
10
11
  <include>org.eclipse.jetty:jetty-jsp-2.1</include>
11
12
  <include>org.mortbay.jetty:jsp-api-2.1-glassfish</include>
12
13
  <include>org.mortbay.jetty:jsp-2.1-glassfish</include>
13
- <include>org.eclipse.jdt:core</include>
14
14
  <include>org.eclipse.jdt.core.compiler:ecj</include>
15
15
  </includes>
16
16
  </dependencySet>
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2010 David Kellum
2
+ # Copyright (c) 2008-2011 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
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2010 David Kellum
2
+ # Copyright (c) 2008-2011 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,10 +17,10 @@
17
17
  module RJack
18
18
  module Jetty
19
19
  module Jsp
20
- JETTY_VERSION = '7.2.2'
20
+ JETTY_VERSION = '7.4.1'
21
21
  GEM_VERSION = '0'
22
22
  VERSION = [ JETTY_VERSION, GEM_VERSION ].join( '.' )
23
- JETTY_BUILD = 'v20101205'
23
+ JETTY_BUILD = 'v20110513'
24
24
  JSP_VERSION = '2.1'
25
25
 
26
26
  JETTY_JSP_DIR = File.dirname( __FILE__ ) # :nodoc:
data/pom.xml CHANGED
@@ -6,11 +6,15 @@
6
6
  <packaging>pom</packaging>
7
7
  <version>1.0</version>
8
8
 
9
+ <properties>
10
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
11
+ </properties>
12
+
9
13
  <dependencies>
10
14
  <dependency>
11
15
  <groupId>org.eclipse.jetty</groupId>
12
16
  <artifactId>jetty-jsp-2.1</artifactId>
13
- <version>7.2.2.v20101205</version>
17
+ <version>7.4.1.v20110513</version>
14
18
  </dependency>
15
19
  <dependency>
16
20
  <groupId>org.mortbay.jetty</groupId>
@@ -29,18 +33,20 @@
29
33
  <plugins>
30
34
  <plugin>
31
35
  <artifactId>maven-assembly-plugin</artifactId>
36
+ <version>2.2.1</version>
32
37
  <configuration>
38
+ <attach>false</attach>
39
+ <ignoreDirFormatExtensions>false</ignoreDirFormatExtensions>
33
40
  <descriptors>
34
41
  <descriptor>assembly.xml</descriptor>
35
42
  </descriptors>
36
- <tarLongFileMode>gnu</tarLongFileMode>
37
43
  </configuration>
38
44
  <executions>
39
45
  <execution>
40
46
  <id>assembly</id>
41
47
  <phase>package</phase>
42
48
  <goals>
43
- <goal>attached</goal>
49
+ <goal>single</goal>
44
50
  </goals>
45
51
  </execution>
46
52
  </executions>
data/test/test_jsp.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env jruby
2
2
  #.hashdot.profile += jruby-shortlived
3
3
  #--
4
- # Copyright (c) 2008-2010 David Kellum
4
+ # Copyright (c) 2008-2011 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
data/webapps/test.war CHANGED
Binary file
metadata CHANGED
@@ -1,13 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rjack-jetty-jsp
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: false
5
- segments:
6
- - 7
7
- - 2
8
- - 2
9
- - 0
10
- version: 7.2.2.0
4
+ prerelease:
5
+ version: 7.4.1.0
11
6
  platform: java
12
7
  authors:
13
8
  - David Kellum
@@ -15,36 +10,29 @@ autorequire:
15
10
  bindir: bin
16
11
  cert_chain: []
17
12
 
18
- date: 2010-12-28 00:00:00 -08:00
13
+ date: 2011-05-15 00:00:00 -07:00
19
14
  default_executable:
20
15
  dependencies:
21
16
  - !ruby/object:Gem::Dependency
22
17
  name: rjack-jetty
23
18
  prerelease: false
24
19
  requirement: &id001 !ruby/object:Gem::Requirement
20
+ none: false
25
21
  requirements:
26
22
  - - ~>
27
23
  - !ruby/object:Gem::Version
28
- segments:
29
- - 7
30
- - 2
31
- - 2
32
- - 0
33
- version: 7.2.2.0
24
+ version: 7.4.1.0
34
25
  type: :runtime
35
26
  version_requirements: *id001
36
27
  - !ruby/object:Gem::Dependency
37
28
  name: rjack-tarpit
38
29
  prerelease: false
39
30
  requirement: &id002 !ruby/object:Gem::Requirement
31
+ none: false
40
32
  requirements:
41
33
  - - ~>
42
34
  - !ruby/object:Gem::Version
43
- segments:
44
- - 1
45
- - 2
46
- - 3
47
- version: 1.2.3
35
+ version: 1.3.0
48
36
  type: :development
49
37
  version_requirements: *id002
50
38
  description: |-
@@ -75,7 +63,7 @@ files:
75
63
  - webapps/test/WEB-INF/web.xml
76
64
  - webapps/test.war
77
65
  - lib/rjack-jetty-jsp/ecj-3.5.1.jar
78
- - lib/rjack-jetty-jsp/jetty-jsp-2.1-7.2.2.v20101205.jar
66
+ - lib/rjack-jetty-jsp/jetty-jsp-2.1-7.4.1.v20110513.jar
79
67
  - lib/rjack-jetty-jsp/jsp-2.1-glassfish-2.1.v20100127.jar
80
68
  - lib/rjack-jetty-jsp/jsp-api-2.1-glassfish-2.1.v20100127.jar
81
69
  has_rdoc: true
@@ -89,23 +77,21 @@ rdoc_options:
89
77
  require_paths:
90
78
  - lib
91
79
  required_ruby_version: !ruby/object:Gem::Requirement
80
+ none: false
92
81
  requirements:
93
82
  - - ">="
94
83
  - !ruby/object:Gem::Version
95
- segments:
96
- - 0
97
84
  version: "0"
98
85
  required_rubygems_version: !ruby/object:Gem::Requirement
86
+ none: false
99
87
  requirements:
100
88
  - - ">="
101
89
  - !ruby/object:Gem::Version
102
- segments:
103
- - 0
104
90
  version: "0"
105
91
  requirements: []
106
92
 
107
- rubyforge_project: rjack
108
- rubygems_version: 1.3.6
93
+ rubyforge_project: rjack-jetty-jsp
94
+ rubygems_version: 1.5.1
109
95
  signing_key:
110
96
  specification_version: 3
111
97
  summary: A gem packaging of the {Jetty Web Server}[http://www.mortbay.org/jetty/] JSP 2.1 support for JRuby