rjack-xerces 2.9.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 ADDED
@@ -0,0 +1,2 @@
1
+ === 2.9.1.0 (2010-8-31)
2
+ * Initial release based on Xerces2-Java 2.9.1
data/Manifest.txt ADDED
@@ -0,0 +1,10 @@
1
+ History.rdoc
2
+ Manifest.txt
3
+ NOTICE.txt
4
+ README.rdoc
5
+ Rakefile
6
+ assembly.xml
7
+ pom.xml
8
+ lib/rjack-xerces/base.rb
9
+ lib/rjack-xerces.rb
10
+ lib/rjack-xerces/xercesImpl-2.9.1.jar
data/NOTICE.txt ADDED
@@ -0,0 +1,14 @@
1
+ rjack-xerces gem
2
+ Copyright (c) 2010 David Kellum
3
+
4
+ This product includes software developed by:
5
+
6
+ Apache Xerces Java
7
+ Copyright (c) 1999-2007 The Apache Software Foundation (http://www.apache.org/)
8
+
9
+ Portions of this software were originally based on the following:
10
+ - software copyright (c) 1999, IBM Corporation., http://www.ibm.com.
11
+ - software copyright (c) 1999, Sun Microsystems., http://www.sun.com.
12
+ - voluntary contributions made by Paul Eng on behalf of the
13
+ Apache Software Foundation that were originally developed at iClick, Inc.,
14
+ software copyright (c) 1999.
data/README.rdoc ADDED
@@ -0,0 +1,45 @@
1
+ = rjack-xerces
2
+
3
+ * http://rjack.rubyforge.org
4
+ * http://rubyforge.org/projects/rjack
5
+
6
+ == Description
7
+
8
+ A gem packaging of {Xerces2 Java}[http://xerces.apache.org/xerces2-j/]
9
+
10
+ == License
11
+
12
+ === rjack-xerces gem
13
+
14
+ Copyright (c) 2010 David Kellum
15
+
16
+ Licensed under the Apache License, Version 2.0 (the "License"); you
17
+ may not use this file except in compliance with the License. You
18
+ may obtain a copy of the License at:
19
+
20
+ http://www.apache.org/licenses/LICENSE-2.0
21
+
22
+ Unless required by applicable law or agreed to in writing, software
23
+ distributed under the License is distributed on an "AS IS" BASIS,
24
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
25
+ implied. See the License for the specific language governing
26
+ permissions and limitations under the License.
27
+
28
+ === Xerces Java
29
+
30
+ Copyright (c) 1999-2007 The Apache Software Foundation
31
+
32
+ Licensed to the Apache Software Foundation (ASF) under one or more
33
+ contributor license agreements. See the NOTICE file distributed with
34
+ this work for additional information regarding copyright ownership.
35
+ The ASF licenses this file to You under the Apache License, Version 2.0
36
+ (the "License"); you may not use this file except in compliance with
37
+ the License. You may obtain a copy of the License at
38
+
39
+ http://www.apache.org/licenses/LICENSE-2.0
40
+
41
+ Unless required by applicable law or agreed to in writing, software
42
+ distributed under the License is distributed on an "AS IS" BASIS,
43
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
44
+ See the License for the specific language governing permissions and
45
+ limitations under the License.
data/Rakefile ADDED
@@ -0,0 +1,42 @@
1
+ # -*- ruby -*-
2
+
3
+ $LOAD_PATH << './lib'
4
+ require 'rjack-xerces/base'
5
+
6
+ require 'rubygems'
7
+ gem 'rjack-tarpit', '~> 1.2.0'
8
+ require 'rjack-tarpit'
9
+
10
+ include RJack
11
+
12
+ t = TarPit.new( 'rjack-xerces', Xerces::VERSION, :java_platform )
13
+
14
+ t.specify do |h|
15
+ h.developer( "David Kellum", "dek-oss@gravitext.com" )
16
+ h.rubyforge_name = "rjack"
17
+ h.remote_rdoc_dir = "xerces"
18
+ end
19
+
20
+ t.jars = [ "xercesImpl-#{ Xerces::XERCES_VERSION }.jar" ]
21
+
22
+ t.assembly_version = 1.0
23
+
24
+ file 'Manifest.txt' => [ "lib/#{t.name}/base.rb" ]
25
+
26
+ task :check_pom_deps do
27
+ t.test_line_match( 'pom.xml',
28
+ %r[<version>#{ Xerces::XERCES_VERSION }</version>] )
29
+ end
30
+
31
+ task :check_history_version do
32
+ t.test_line_match( 'History.rdoc', /^==/, / #{t.version} / )
33
+ end
34
+ task :check_history_date do
35
+ t.test_line_match( 'History.rdoc', /^==/, /\([0-9\-]+\)$/ )
36
+ end
37
+
38
+ task :gem => [ :check_pom_deps, :check_history_version ]
39
+ task :tag => [ :check_pom_deps, :check_history_version, :check_history_date ]
40
+ task :push => [ :check_history_date ]
41
+
42
+ t.define_tasks
data/assembly.xml ADDED
@@ -0,0 +1,14 @@
1
+ <assembly>
2
+ <id>bin</id>
3
+ <formats>
4
+ <format>dir</format>
5
+ </formats>
6
+ <includeBaseDirectory>false</includeBaseDirectory>
7
+ <dependencySets>
8
+ <dependencySet>
9
+ <includes>
10
+ <include>xerces:xercesImpl</include>
11
+ </includes>
12
+ </dependencySet>
13
+ </dependencySets>
14
+ </assembly>
@@ -0,0 +1,27 @@
1
+ #--
2
+ # Copyright (c) 2010 David Kellum
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License"); you
5
+ # may not use this file except in compliance with the License. You
6
+ # may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
13
+ # implied. See the License for the specific language governing
14
+ # permissions and limitations under the License.
15
+ #++
16
+
17
+ require 'rjack-xerces/base'
18
+
19
+ # Commons Xerces wrapper module
20
+ #
21
+ # http://xerces.apache.org/
22
+ #
23
+ module RJack
24
+ module Xerces
25
+ require "#{XERCES_DIR}/xercesImpl-#{XERCES_VERSION}.jar"
26
+ end
27
+ end
@@ -0,0 +1,28 @@
1
+ #--
2
+ # Copyright (c) 2010 David Kellum
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License"); you
5
+ # may not use this file except in compliance with the License. You
6
+ # may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
13
+ # implied. See the License for the specific language governing
14
+ # permissions and limitations under the License.
15
+ #++
16
+
17
+ module RJack
18
+ module Xerces
19
+
20
+ # xerces (java) version
21
+ XERCES_VERSION = '2.9.1'
22
+
23
+ # rjack gem version
24
+ VERSION = XERCES_VERSION + '.0'
25
+
26
+ XERCES_DIR = File.dirname( __FILE__ ) # :nodoc:
27
+ end
28
+ end
data/pom.xml ADDED
@@ -0,0 +1,41 @@
1
+ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2
+
3
+ <modelVersion>4.0.0</modelVersion>
4
+ <groupId>rjack</groupId>
5
+ <artifactId>rjack-xerces</artifactId>
6
+ <packaging>pom</packaging>
7
+ <version>1.0</version>
8
+ <name>rjack xerces gem</name>
9
+
10
+ <dependencies>
11
+ <dependency>
12
+ <groupId>xerces</groupId>
13
+ <artifactId>xercesImpl</artifactId>
14
+ <version>2.9.1</version>
15
+ </dependency>
16
+ </dependencies>
17
+
18
+ <build>
19
+ <plugins>
20
+ <plugin>
21
+ <artifactId>maven-assembly-plugin</artifactId>
22
+ <configuration>
23
+ <descriptors>
24
+ <descriptor>assembly.xml</descriptor>
25
+ </descriptors>
26
+ <tarLongFileMode>gnu</tarLongFileMode>
27
+ </configuration>
28
+ <executions>
29
+ <execution>
30
+ <id>assembly</id>
31
+ <phase>package</phase>
32
+ <goals>
33
+ <goal>attached</goal>
34
+ </goals>
35
+ </execution>
36
+ </executions>
37
+ </plugin>
38
+ </plugins>
39
+ </build>
40
+
41
+ </project>
metadata ADDED
@@ -0,0 +1,90 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rjack-xerces
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 2
7
+ - 9
8
+ - 1
9
+ - 0
10
+ version: 2.9.1.0
11
+ platform: java
12
+ authors:
13
+ - David Kellum
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2010-08-31 00:00:00 -07:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: rjack-tarpit
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - ~>
27
+ - !ruby/object:Gem::Version
28
+ segments:
29
+ - 1
30
+ - 2
31
+ - 2
32
+ version: 1.2.2
33
+ type: :development
34
+ version_requirements: *id001
35
+ description: A gem packaging of {Xerces2 Java}[http://xerces.apache.org/xerces2-j/]
36
+ email:
37
+ - dek-oss@gravitext.com
38
+ executables: []
39
+
40
+ extensions: []
41
+
42
+ extra_rdoc_files:
43
+ - Manifest.txt
44
+ - NOTICE.txt
45
+ - History.rdoc
46
+ - README.rdoc
47
+ files:
48
+ - History.rdoc
49
+ - Manifest.txt
50
+ - NOTICE.txt
51
+ - README.rdoc
52
+ - Rakefile
53
+ - assembly.xml
54
+ - pom.xml
55
+ - lib/rjack-xerces/base.rb
56
+ - lib/rjack-xerces.rb
57
+ - lib/rjack-xerces/xercesImpl-2.9.1.jar
58
+ has_rdoc: true
59
+ homepage: http://rjack.rubyforge.org
60
+ licenses: []
61
+
62
+ post_install_message:
63
+ rdoc_options:
64
+ - --main
65
+ - README.rdoc
66
+ require_paths:
67
+ - lib
68
+ required_ruby_version: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ segments:
73
+ - 0
74
+ version: "0"
75
+ required_rubygems_version: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - ">="
78
+ - !ruby/object:Gem::Version
79
+ segments:
80
+ - 0
81
+ version: "0"
82
+ requirements: []
83
+
84
+ rubyforge_project: rjack
85
+ rubygems_version: 1.3.6
86
+ signing_key:
87
+ specification_version: 3
88
+ summary: A gem packaging of {Xerces2 Java}[http://xerces.apache.org/xerces2-j/]
89
+ test_files: []
90
+