From 3eea49958e983e1ceb3043db780971e4b5748ee7 Mon Sep 17 00:00:00 2001 From: "Rafael H. Schloming" Date: Wed, 8 Jul 2009 10:41:03 +0000 Subject: added script for generating maven poms and moved disposable build output underneath build/scratch git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@792094 13f79535-47bb-0310-9956-ffa450edef68 --- java/build.deps | 5 +- java/build.xml | 11 +- java/client/build.xml | 2 + java/common.xml | 11 +- java/common/build.xml | 2 + java/genpom | 150 ++++++++ java/lib/jython-2.2-rc2.jar | Bin 1203486 -> 0 bytes java/lib/jython-lib.jar | Bin 1570006 -> 0 bytes java/lib/poms/backport-util-concurrent-2.2.pom | 25 ++ java/lib/poms/commons-beanutils-core-1.8.0.pom | 42 +++ java/lib/poms/commons-cli-1.0.pom | 76 ++++ java/lib/poms/commons-codec-1.3.pom | 178 +++++++++ java/lib/poms/commons-collections-3.2.pom | 420 +++++++++++++++++++++ java/lib/poms/commons-configuration-1.6.pom | 419 ++++++++++++++++++++ java/lib/poms/commons-digester-1.8.1.pom | 316 ++++++++++++++++ java/lib/poms/commons-lang-2.2.pom | 414 ++++++++++++++++++++ java/lib/poms/commons-logging-1.0.4.pom | 165 ++++++++ java/lib/poms/commons-pool-1.4.pom | 209 ++++++++++ java/lib/poms/derby-10.3.2.1.pom | 43 +++ java/lib/poms/geronimo-jms_1.1_spec-1.0.pom | 6 + java/lib/poms/junit-3.8.1.pom | 29 ++ java/lib/poms/log4j-1.2.12.pom | 6 + java/lib/poms/mina-core-1.0.1.pom | 34 ++ java/lib/poms/mina-filter-ssl-1.0.1.pom | 27 ++ java/lib/poms/org.apache.felix.framework-1.0.0.pom | 66 ++++ java/lib/poms/org.osgi.core-1.0.0.pom | 56 +++ java/lib/poms/slf4j-api-1.4.0.pom | 73 ++++ java/lib/poms/slf4j-log4j12-1.4.0.pom | 44 +++ java/lib/poms/xalan-2.7.0.pom | 19 + java/module.xml | 51 ++- 30 files changed, 2870 insertions(+), 29 deletions(-) create mode 100755 java/genpom delete mode 100644 java/lib/jython-2.2-rc2.jar delete mode 100644 java/lib/jython-lib.jar create mode 100644 java/lib/poms/backport-util-concurrent-2.2.pom create mode 100644 java/lib/poms/commons-beanutils-core-1.8.0.pom create mode 100644 java/lib/poms/commons-cli-1.0.pom create mode 100644 java/lib/poms/commons-codec-1.3.pom create mode 100644 java/lib/poms/commons-collections-3.2.pom create mode 100644 java/lib/poms/commons-configuration-1.6.pom create mode 100644 java/lib/poms/commons-digester-1.8.1.pom create mode 100644 java/lib/poms/commons-lang-2.2.pom create mode 100644 java/lib/poms/commons-logging-1.0.4.pom create mode 100644 java/lib/poms/commons-pool-1.4.pom create mode 100644 java/lib/poms/derby-10.3.2.1.pom create mode 100644 java/lib/poms/geronimo-jms_1.1_spec-1.0.pom create mode 100644 java/lib/poms/junit-3.8.1.pom create mode 100644 java/lib/poms/log4j-1.2.12.pom create mode 100644 java/lib/poms/mina-core-1.0.1.pom create mode 100644 java/lib/poms/mina-filter-ssl-1.0.1.pom create mode 100644 java/lib/poms/org.apache.felix.framework-1.0.0.pom create mode 100644 java/lib/poms/org.osgi.core-1.0.0.pom create mode 100644 java/lib/poms/slf4j-api-1.4.0.pom create mode 100644 java/lib/poms/slf4j-log4j12-1.4.0.pom create mode 100644 java/lib/poms/xalan-2.7.0.pom (limited to 'java') diff --git a/java/build.deps b/java/build.deps index 7f7d5d94ea..fa5e3da4db 100644 --- a/java/build.deps +++ b/java/build.deps @@ -80,8 +80,7 @@ common.libs=${slf4j-api} ${backport-util-concurrent} ${mina-core} \ client.libs=${common.libs} ${geronimo-jms} tools.libs=${client.libs} broker.libs=${common.libs} ${commons-cli} ${commons-logging} ${log4j} \ - ${slf4j-log4j} ${xalan} ${felix.libs} ${derby-db} \ - ${build.lib}/${project.name}-common-${project.version}.jar + ${slf4j-log4j} ${xalan} ${felix.libs} ${derby-db} broker-plugins.libs=${common.libs} ${felix.libs} management-client.libs=${jsp.libs} ${log4j} ${slf4j-log4j} ${slf4j-api} ${commons-pool} ${geronimo-servlet} ${muse.libs} ${javassist} ${xalan} ${mina-core} ${mina-filter-ssl} @@ -132,6 +131,8 @@ ecl-equinox-launcher-macosx-carbon=lib/org.eclipse.equinox.launcher.carbon.macos ecl-swt-solaris-gtk-sparc=lib/org.eclipse.swt.gtk.solaris.sparc_3.4.1.v3449c.jar ecl-equinox-launcher-solaris-gtk-sparc=lib/org.eclipse.equinox.launcher.gtk.solaris.sparc_1.0.101.R34x_v20080731/** +management-common.libs= + management-eclipse-plugin-win32-win32-x86.libs=${management-eclipse-plugin.core-libs} \ ${ecl-swt-win32-win32-x86} ${ecl-equinox-launcher-win32-win32-x86} management-eclipse-plugin-linux-gtk-x86.libs=${management-eclipse-plugin.core-libs} \ diff --git a/java/build.xml b/java/build.xml index db3ba05d29..0636ee8870 100644 --- a/java/build.xml +++ b/java/build.xml @@ -58,6 +58,10 @@ + + + + @@ -157,12 +161,7 @@ - - - - - - + diff --git a/java/client/build.xml b/java/client/build.xml index e826df9c74..c419d11b95 100644 --- a/java/client/build.xml +++ b/java/client/build.xml @@ -21,6 +21,8 @@ + + diff --git a/java/common.xml b/java/common.xml index 511cdc6a10..874f48a69d 100644 --- a/java/common.xml +++ b/java/common.xml @@ -28,6 +28,7 @@ + @@ -36,7 +37,7 @@ - + @@ -92,13 +93,9 @@ - - - + + - - - diff --git a/java/common/build.xml b/java/common/build.xml index dfe060cdef..26801a9bd1 100644 --- a/java/common/build.xml +++ b/java/common/build.xml @@ -20,6 +20,8 @@ --> + + diff --git a/java/genpom b/java/genpom new file mode 100755 index 0000000000..e3b89d0568 --- /dev/null +++ b/java/genpom @@ -0,0 +1,150 @@ +#!/usr/bin/python +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + +import sys, re, os, mllib, optparse + +def die(msg): + print >> sys.stderr, msg + sys.exit(1) + +parser = optparse.OptionParser(usage="usage: %prog [options] JARs ...", + description="Generates a pom.") +parser.add_option("-n", "--name") +parser.add_option("-g", "--group") +parser.add_option("-a", "--artifact") +parser.add_option("-v", "--version") +parser.add_option("-d", "--description", default="") +parser.add_option("-u", "--url", default="") +parser.add_option("-i", "--ignore", action="store_true", help="ignore missing poms") +parser.add_option("-s", "--search-path", action="append", + help="the path to search for poms") +parser.add_option("-S", "--scope", metavar="ARTIFACT=SCOPE", action="append", + default=[], + help="specify scope for an artifact") +parser.add_option("-o", "--output") + +opts, jars = parser.parse_args() + +if opts.search_path is None: + path=["%s/.m2" % os.environ["HOME"]] +else: + path = [] + for p in opts.search_path: + path.extend(p.split(":")) + +expanded_path = [] +for p in path: + os.path.walk(p, lambda a, d, fs: expanded_path.append(d), None) + +if opts.group is None: + die("the group option is required") + +if opts.version is None: + die("the version option is required") + +if opts.name is None and opts.artifact is None: + die("one of name or artifact must be supplied") + +if opts.name is None: + opts.name = opts.artifact + +if opts.artifact is None: + opts.artifact = opts.name + +def lookup(pom, attr): + nd = pom["project"][attr] + if nd is None: + nd = pom["project/parent"][attr] + if nd is None: + return None + return nd.text() + +def search(path, file): + for d in path: + f = os.path.join(d, file) + if os.path.exists(f): + return mllib.xml_parse(f) + +scopes = {} +for s in opts.scope: + m = re.match(r"(.*)=(.*)", s) + if not m: + die("bad scope specifier: %s" % s) + scopes[m.group(1)] = m.group(2) + +deps = [] +for jar in jars: + base, ext = os.path.splitext(os.path.basename(jar)) + pom = search(expanded_path, "%s.pom" % base) + if pom is None: + if opts.ignore: + continue + else: + die("unable to locate pom for %s" % jar) + group = lookup(pom, "groupId") + artifactId = lookup(pom, "artifactId") + version = lookup(pom, "version") + deps.append(""" + + %s + %s + %s + %s + +""" % (group, artifactId, version, + scopes.get(artifactId, "compile"))) + +TEMPLATE = """ + + 4.0.0 + %(group)s + %(artifact)s + %(version)s + %(name)s + %(url)s + %(description)s + + The Apache Software Foundation + http://www.apache.org + + + + The Apache Software License, Version 2.0 + /LICENSE.txt + + + + %(dependencies)s + + +""" + +vars = {} +vars.update(opts.__dict__) +vars["dependencies"] = "".join(deps) + +if opts.output is None: + out = sys.stdout +else: + out = open(opts.output, "w") +out.write(TEMPLATE % vars) +out.close() diff --git a/java/lib/jython-2.2-rc2.jar b/java/lib/jython-2.2-rc2.jar deleted file mode 100644 index e25e2cb945..0000000000 Binary files a/java/lib/jython-2.2-rc2.jar and /dev/null differ diff --git a/java/lib/jython-lib.jar b/java/lib/jython-lib.jar deleted file mode 100644 index bb3ba82db5..0000000000 Binary files a/java/lib/jython-lib.jar and /dev/null differ diff --git a/java/lib/poms/backport-util-concurrent-2.2.pom b/java/lib/poms/backport-util-concurrent-2.2.pom new file mode 100644 index 0000000000..ea281da344 --- /dev/null +++ b/java/lib/poms/backport-util-concurrent-2.2.pom @@ -0,0 +1,25 @@ + + 4.0.0 + backport-util-concurrent + backport-util-concurrent + 2.2 + jar + Backport of JSR 166 + http://www.mathcs.emory.edu/dcl/util/backport-util-concurrent/ + Dawid Kurzyniec's backport of JSR 166 + + + Public Domain + http://creativecommons.org/licenses/publicdomain + repo + + + + http://dcl.mathcs.emory.edu/cgi-bin/viewcvs.cgi/software/util/backport-util-concurrent/ + + + Dawid Kurzyniec + http://www.mathcs.emory.edu/~dawidk/ + + + diff --git a/java/lib/poms/commons-beanutils-core-1.8.0.pom b/java/lib/poms/commons-beanutils-core-1.8.0.pom new file mode 100644 index 0000000000..30d29c9048 --- /dev/null +++ b/java/lib/poms/commons-beanutils-core-1.8.0.pom @@ -0,0 +1,42 @@ + + + + 4.0.0 + + org.apache + apache + 4 + + commons-beanutils + commons-beanutils-core + 1.8.0 + Commons BeanUtils Core + http://commons.apache.org/beanutils/ + + + + commons-logging + commons-logging + 1.1.1 + + + + diff --git a/java/lib/poms/commons-cli-1.0.pom b/java/lib/poms/commons-cli-1.0.pom new file mode 100644 index 0000000000..cfc5a04d78 --- /dev/null +++ b/java/lib/poms/commons-cli-1.0.pom @@ -0,0 +1,76 @@ + + 4.0.0 + commons-cli + commons-cli + CLI + 1.0 + Commons CLI provides a simple API for working with the command line arguments and options. + 2002 + + + jstrachan + James Strachan + jstrachan@apache.org + SpiritSoft, Inc. + + + bob + bob mcwhirter + bob@werken.com + Werken + + + jkeyes + John Keyes + jbjk@mac.com + integral Source + + + + + Berin Loritsch + bloritsch@apache.org + + helped in the Avalon CLI merge + + + + Peter Maddocks + peter_maddocks@hp.com + Hewlett-Packard + + supplied patch + + + + + + + maven-surefire-plugin + + + **/*Test*.java + + + + + + + + commons-logging + commons-logging + 1.0 + + + commons-lang + commons-lang + 1.0 + + + junit + junit + 3.7 + test + + + \ No newline at end of file diff --git a/java/lib/poms/commons-codec-1.3.pom b/java/lib/poms/commons-codec-1.3.pom new file mode 100644 index 0000000000..dab16e299b --- /dev/null +++ b/java/lib/poms/commons-codec-1.3.pom @@ -0,0 +1,178 @@ + + 4.0.0 + commons-codec + commons-codec + Codec + 1.3 + The codec package contains simple encoder and decoders for + various formats such as Base64 and Hexadecimal. In addition to these + widely used encoders and decoders, the codec package also maintains a + collection of phonetic encoding utilities. + http://jakarta.apache.org/commons/codec/ + + http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Commons&component=Codec&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&newqueryname=&order=Reuse+same+sort+as+last+time + + + + +
commons-dev@jakarta.apache.org
+
+
+
+ 2002 + + + Commons Dev List + commons-dev-subscribe@jakarta.apache.org + commons-dev-unsubscribe@jakarta.apache.org + http://nagoya.apache.org/eyebrowse/SummarizeList?listName=commons-dev@jakarta.apache.org + + + Commons User List + commons-user-subscribe@jakarta.apache.org + commons-user-unsubscribe@jakarta.apache.org + http://nagoya.apache.org/eyebrowse/SummarizeList?listName=commons-user@jakarta.apache.org + + + + + bayard + Henri Yandell + bayard@generationjava.com + + + tobrien + Tim OBrien + tobrien@apache.org + -6 + + + sanders + Scott Sanders + sanders@totalsync.com + + + rwaldhoff + Rodney Waldhoff + rwaldhoff@apache.org + + + dlr + Daniel Rall + dlr@finemaltcoding.com + + + jon + Jon S. Stevens + jon@collab.net + + + ggregory + Gary D. Gregory + ggregory@seagullsw.com + Seagull Software + -8 + + + dgraham + David Graham + dgraham@apache.org + + + + + Christopher O'Brien + siege@preoccupied.net + + + Martin Redington + + + Jeffery Dever + + + Steve Zimmermann + steve.zimmermann@heii.com + + + Benjamin Walstrum + ben@walstrum.com + + + Oleg Kalnichevski + oleg@ural.ru + + + Dave Dribin + apache@dave.dribin.org + + + Alex Karasulu + aok123 at bellsouth.net + + + Matthew Inger + mattinger at yahoo.com + + + + + The Apache Software License, Version 2.0 + /LICENSE.txt + + + + scm:cvs:pserver:anoncvs@cvs.apache.org:/home/cvspublic:jakarta-commons/codec + http://cvs.apache.org/viewcvs/jakarta-commons/codec/ + + + The Apache Software Foundation + http://jakarta.apache.org + + + src/java + src/test + + + src/test + + **/*.xml + + + + + + maven-surefire-plugin + + + **/Test*.java + **/*Test.java + + + **/*AbstractTest.java + + + + + + + + junit + junit + 3.8.1 + test + + + + + default + Default Repository + file:///www/jakarta.apache.org/builds/jakarta-commons/codec/ + + + default + Default Site + scp://jakarta.apache.org//www/jakarta.apache.org/commons/codec/ + + +
\ No newline at end of file diff --git a/java/lib/poms/commons-collections-3.2.pom b/java/lib/poms/commons-collections-3.2.pom new file mode 100644 index 0000000000..88e5860df3 --- /dev/null +++ b/java/lib/poms/commons-collections-3.2.pom @@ -0,0 +1,420 @@ + + 4.0.0 + commons-collections + commons-collections + Collections + 3.2 + Types that extend and augment the Java Collections Framework. + http://jakarta.apache.org/commons/collections/ + + http://issues.apache.org/bugzilla/ + + + + + +
commons-dev@jakarta.apache.org
+
+
+
+
+ 2001 + + + Commons Dev List + commons-dev-subscribe@jakarta.apache.org + commons-dev-unsubscribe@jakarta.apache.org + http://mail-archives.apache.org/eyebrowse/SummarizeList?listName=commons-dev@jakarta.apache.org + + + Commons User List + commons-user-subscribe@jakarta.apache.org + commons-user-unsubscribe@jakarta.apache.org + http://mail-archives.apache.org/eyebrowse/SummarizeList?listName=commons-user@jakarta.apache.org + + + + + scolebourne + Stephen Colebourne + + + + + morgand + Morgan Delagrange + + + + + matth + Matthew Hawthorne + + + + + geirm + Geir Magnusson + + + + + craigmcc + Craig McClanahan + + + + + psteitz + Phil Steitz + + + + + amamment + Arun M. Thomas + + + + + rwaldhoff + Rodney Waldhoff + + + + + bayard + Henri Yandell + + + + + jcarman + James Carman + + + + + rdonkin + Robert Burrell Donkin + + + + + Rafael U. C. Afonso + + + Max Rydahl Andersen + + + Federico Barbieri + + + Arron Bates + + + Nicola Ken Barozzi + + + Sebastian Bazley + + + Matt Benson + + + Ola Berg + + + Christopher Berry + + + Nathan Beyer + + + Janek Bogucki + + + Chuck Burdick + + + Dave Bryson + + + Julien Buret + + + Jonathan Carlson + + + Ram Chidambaram + + + Steve Clark + + + Eric Crampton + + + Dimiter Dimitrov + + + Peter Donald + + + Steve Downey + + + Rich Dougherty + + + Tom Dunham + + + Stefano Fornari + + + Andrew Freeman + + + Gerhard Froehlich + + + Paul Jack + + + Eric Johnson + + + Kent Johnson + + + Marc Johnson + + + Nissim Karpenstein + + + Shinobu Kawai + + + Mohan Kishore + + + Simon Kitching + + + Thomas Knych + + + Serge Knystautas + + + Peter KoBek + + + Jordan Krey + + + Olaf Krische + + + Guilhem Lavaux + + + Paul Legato + + + David Leppik + + + Berin Loritsch + + + Stefano Mazzocchi + + + Brian McCallister + + + Steven Melzer + + + Leon Messerschmidt + + + Mauricio S. Moura + + + Kasper Nielsen + + + Stanislaw Osinski + + + Alban Peignier + + + Mike Pettypiece + + + Steve Phelps + + + Ilkka Priha + + + Jonas Van Poucke + + + Will Pugh + + + Herve Quiroz + + + Daniel Rall + + + Robert Ribnitz + + + Huw Roberts + + + Henning P. Schmiedehausen + + + Howard Lewis Ship + + + Joe Raysa + + + Thomas Schapitz + + + Jon Schewe + + + Andreas Schlosser + + + Christian Siefkes + + + Michael Smith + + + Stephen Smith + + + Jan Sorensen + + + Jon S. Stevens + + + James Strachan + + + Leo Sutic + + + Chris Tilden + + + Neil O'Toole + + + Jeff Turner + + + Kazuya Ujihara + + + Jeff Varszegi + + + Ralph Wagner + + + David Weinrich + + + Dieter Wimberger + + + Serhiy Yevtushenko + + + Jason van Zyl + + + + + The Apache Software License, Version 2.0 + /LICENSE.txt + + + + scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk + http://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk + + + The Apache Software Foundation + http://jakarta.apache.org + + + src/java + src/test + + + META-INF + . + + NOTICE.txt + + + + + + maven-surefire-plugin + + + org/apache/commons/collections/TestAllPackages.java + + + + + maven-plugins + maven-cobertura-plugin + 1.1.1 + + test + Required only for generating test coverage reports. + + + + + + + junit + junit + 3.8.1 + test + + + + + default + Default Repository + file:///www/jakarta.apache.org/builds/jakarta-commons/collections/ + + + default + Default Site + scp://people.apache.org//www/jakarta.apache.org/commons/collections/ + + converted + +
\ No newline at end of file diff --git a/java/lib/poms/commons-configuration-1.6.pom b/java/lib/poms/commons-configuration-1.6.pom new file mode 100644 index 0000000000..1597869b3a --- /dev/null +++ b/java/lib/poms/commons-configuration-1.6.pom @@ -0,0 +1,419 @@ + + 4.0.0 + commons-configuration + commons-configuration + Commons Configuration + 1.6 + Tools to assist in the reading of configuration/preferences files in + various formats + http://commons.apache.org/${pom.artifactId.substring(8)}/ + + http://issues.apache.org/jira/browse/CONFIGURATION + + + + + +
dev@commons.apache.org
+
+
+
+
+ 2001 + + + Commons Dev List + dev-subscribe@commons.apache.org + dev-unsubscribe@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-dev/ + + + Commons User List + user-subscribe@commons.apache.org + user-unsubscribe@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-user/ + + + + + dlr + Daniel Rall + dlr@finemaltcoding.com + CollabNet, Inc. + + + jvanzyl + Jason van Zyl + jason@zenplex.com + Zenplex + + + mpoeschl + Martin Poeschl + mpoeschl@marmot.at + tucana.at + + + dion + dIon Gillard + dion@multitask.com.au + Multitask Consulting + + + henning + Henning P. Schmiedehausen + hps@intermeta.de + INTERMETA - Gesellschaft fuer Mehrwertdienste mbH + 2 + + + epugh + Eric Pugh + epugh@upstate.com + upstate.com + + + bdunbar + Brian E. Dunbar + bdunbar@dunbarconsulting.org + dunbarconsulting.org + + + ebourg + Emmanuel Bourg + ebourg@apache.org + Ariane Software + +1 + + + oheger + Oliver Heger + oheger@apache.org + Agfa HealthCare + +1 + + + joehni + Jörg Schaible + joerg.schaible@gmx.de + +1 + + + + + Konstantin Shaposhnikov + ksh@scand.com + scand.com + + + Jamie M. Guillemette + JMGuillemette@gmail.com + TD Bank + + + Jorge Ferrer + jorge.ferrer@gmail.com + + + + Gabriele Garuglieri + gabriele.garuglieri@infoblu.it + Infoblu S.p.A + + + Nicolas De Loof + nicolas.deloof@gmail.com + Cap Gemini + + + + + The Apache Software License, Version 2.0 + /LICENSE.txt + + + + scm:svn:http://svn.apache.org/repos/asf/commons/proper/${pom.artifactId.substring(8)}/trunk + http://svn.apache.org/repos/asf/commons/proper/${pom.artifactId.substring(8)}/trunk + + + The Apache Software Foundation + http://commons.apache.org/ + + + src/java + src/test + + + conf + + digesterRules.xml + properties.dtd + PropertyList-1.0.dtd + + + + META-INF + ${basedir} + + NOTICE.txt + + + + + + conf + + *.xml + + + + conf + + testClasspath.properties + testdb.script + *.properties + *.dtd + + + + org/apache/commons/configuration + conf + + test.properties + include.properties + + + + config + conf/config + + **/*.properties + + + + + + maven-surefire-plugin + + + **/*Test*.java + + + **/TestBasePropertiesConfiguration.java + **/NonStringTestHolder.java + **/TestAbstractConfiguration.java + **/AbstractXPathTest.java + **/AbstractCombinerTest.java + **/AbstractTestConfigurationEvents.java + **/AbstractTestFileConfigurationEvents.java + **/AbstractTestPListEvents.java + **/InterpolationTestHelper.java + + + + + maven-plugins + maven-tasks-plugin + 1.1.0 + + + + maven-plugins + maven-findbugs-plugin + 1.4 + + + + maven-checkstyle-plugin + 3.0.1 + + + + maven-plugins + maven-cobertura-plugin + 1.2 + + + + maven-changes-plugin + 1.6 + + <strong>Site Only</strong> - v1.6 (minimum) + required for building the site documentation. + + + + maven-xdoc-plugin + 1.8 + + <strong>Site Only</strong> - v1.8 (minimum) + required for building the site documentation. + + + + maven-scm-plugin + 1.5 + + <strong>Site Only</strong> - v1.5 (minimum) + + + + maven-jdiff-plugin + 1.5 + + <strong>Site Only</strong> - v1.5 (minimum) + + + + maven-javadoc-plugin + 1.8 + + <strong>Site Only</strong> - v1.8 (minimum) + + + + + + + commons-collections + commons-collections + 3.2.1 + + + commons-lang + commons-lang + 2.4 + + + commons-logging + commons-logging + 1.1.1 + + + commons-digester + commons-digester + 1.8 + + + commons-beanutils + commons-beanutils-core + 1.8.0 + + + commons-codec + commons-codec + 1.3 + true + + + commons-jxpath + commons-jxpath + 1.3 + true + + + xerces + xercesImpl + 2.3.0 + provided + + + xalan + xalan + 2.7.0 + provided + + + xml-apis + xml-apis + 1.0.b2 + provided + + + javax.servlet + servlet-api + 2.4 + true + + + javax.mail + mail + 1.4 + true + + + ant + ant + 1.6.5 + true + + + commons-dbcp + commons-dbcp + 1.2.2 + test + + + commons-pool + commons-pool + 1.4 + test + + + hsqldb + hsqldb + 1.7.2.2 + test + + + dbunit + dbunit + 2.1 + test + + + junit + junit + 3.8.1 + test + + + junit-addons + junit-addons + 1.4 + test + + + mockobjects + mockobjects-core + 0.09 + test + + + mockobjects + mockobjects-jdk1.4-j2ee1.3 + 0.09 + test + + + log4j + log4j + 1.2.8 + test + + + + + default + Default Repository + www.apache.org//www/www.apache.org/dist/java-repository/ + + + default + Default Site + scp://people.apache.org//www/commons.apache.org/${pom.artifactId.substring(8)}/ + + converted + +
\ No newline at end of file diff --git a/java/lib/poms/commons-digester-1.8.1.pom b/java/lib/poms/commons-digester-1.8.1.pom new file mode 100644 index 0000000000..5470526527 --- /dev/null +++ b/java/lib/poms/commons-digester-1.8.1.pom @@ -0,0 +1,316 @@ + + + + + + + + org.apache.commons + commons-parent + 11 + + + 4.0.0 + Commons Digester + commons-digester + commons-digester + 1.8.1 + + 2001 + + The Digester package lets you configure an XML to Java object mapping module + which triggers certain actions called rules whenever a particular + pattern of nested XML elements is recognized. + + + http://commons.apache.org/digester/ + + + jira + http://issues.apache.org/jira/browse/DIGESTER + + + + scm:svn:http://svn.apache.org/repos/asf/commons/proper/digester/tags/DIGESTER_1_8_1 + scm:svn:https://svn.apache.org/repos/asf/commons/proper/digester/tags/DIGESTER_1_8_1 + http://svn.apache.org/viewvc/commons/proper/digester/tags/DIGESTER_1_8_1 + + + + + Craig McClanahan + craigmcc + craigmcc@apache.org + + + Robert Burrell Donkin + rdonkin + rdonkin@apache.org + + + Scott Sanders + sanders + sanders@totalsync.com + + + James Strachan + jstrachan + jstrachan@apache.org + + + Jason van Zyl + jvanzyl + jvanzyl@apache.org + + + Tim OBrien + tobrien + tobrien@apache.org + + + Jean-Francois Arcand + jfarcand + jfarcand@apache.org + + + Simon Kitching + skitching + skitching@apache.org + + + Rahul Akolkar + rahul + rahul AT apache DOT org + + + + + + Bradley M. Handy + bhandy@users.sf.net + + + Christopher Lenz + + + Ted Husted + + + David H. Martin + + + Henri Chen + + + Janek Bogucki + + + Mark Huisman + + + Paul Jack + + + Anton Maslovsky + + + Matt Cleveland + + + Gabriele Carcassi + + + Wendy Smoak + java@wendysmoak.com + + + Kevin Ross + kevin.ross@iverticalleap.com + + + + + + + apache.website + Apache Commons Site + ${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/digester + + + + + 1.2 + 1.2 + digester + 1.8.1 + RC1 + DIGESTER + 12310471 + + + + src/java + src/test + + + + . + META-INF + + NOTICE.txt + LICENSE.txt + + + + src/java + false + + **/*.dtd + + + + + + + src/test + false + + **/*.xml + + + + + + + + maven-surefire-plugin + + + **/TestBean.java + **/TestRule.java + **/TestRuleSet.java + **/Test*$*.java + + + + + + maven-assembly-plugin + + + src/assembly/bin.xml + src/assembly/src.xml + + gnu + + + + + + + + commons-beanutils + commons-beanutils + 1.8.0 + + + commons-logging + commons-logging + 1.1.1 + + + xml-apis + xml-apis + 1.0.b2 + provided + + + junit + junit + 3.8.1 + test + + + + + + + org.apache.maven.plugins + maven-changes-plugin + 2.0 + + %URL%/../%ISSUE% + + + + + changes-report + jira-report + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 2.1 + + ${basedir}/checkstyle.xml + false + ${basedir}/file-header.txt + + + + org.apache.maven.plugins + maven-pmd-plugin + 2.3 + + + + org.codehaus.mojo + clirr-maven-plugin + 2.2.1 + + 1.8 + + + + + + + + rc + + + + apache.website + Apache Commons Release Candidate Staging Site + ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/builds/commons/${commons.componentid}/${commons.release.version}/${commons.rc.version}/site + + + + + + diff --git a/java/lib/poms/commons-lang-2.2.pom b/java/lib/poms/commons-lang-2.2.pom new file mode 100644 index 0000000000..9337a4374b --- /dev/null +++ b/java/lib/poms/commons-lang-2.2.pom @@ -0,0 +1,414 @@ + + 4.0.0 + commons-lang + commons-lang + Lang + 2.2 + Commons.Lang, a package of Java utility classes for the + classes that are in java.lang's hierarchy, or are considered to be so + standard as to justify existence in java.lang. + http://jakarta.apache.org/commons/lang/ + + http://issues.apache.org/jira/ + + + + + +
commons-dev@jakarta.apache.org
+
+
+
+
+ 2001 + + + Commons Dev List + commons-dev-subscribe@jakarta.apache.org + commons-dev-unsubscribe@jakarta.apache.org + http://mail-archives.apache.org/eyebrowse/SummarizeList?listName=commons-dev@jakarta.apache.org + + + Commons User List + commons-user-subscribe@jakarta.apache.org + commons-user-unsubscribe@jakarta.apache.org + http://mail-archives.apache.org/eyebrowse/SummarizeList?listName=commons-user@jakarta.apache.org + + + + + dlr + Daniel Rall + dlr@finemaltcoding.com + CollabNet, Inc. + + Java Developer + + + + scolebourne + Stephen Colebourne + scolebourne@joda.org + SITA ATS Ltd + + Java Developer + + 0 + + + bayard + Henri Yandell + bayard@generationjava.com + + + Java Developer + + + + scaswell + Steven Caswell + stevencaswell@apache.org + + + Java Developer + + -5 + + + rdonkin + Robert Burrell Donkin + rdonkin@apache.org + + + Java Developer + + + + ggregory + Gary D. Gregory + ggregory@seagullsw.com + Seagull Software + + Java Developer + + -8 + + + psteitz + Phil Steitz + phil@steitz.com + + + Java Developer + + + + fredrik + Fredrik Westermarck + + + + Java Developer + + + + jcarman + James Carman + jcarman@apache.org + Carman Consulting, Inc. + + Java Developer + + + + + + C. Scott Ananian + + + Chris Audley + + + Stephane Bailliez + + + Michael Becke + + + Ola Berg + + + Nathan Beyer + + + Stefan Bodewig + + + Janek Bogucki + + + Mike Bowler + + + Sean Brown + + + Alexander Day Chaffee + + + Al Chou + + + Greg Coladonato + + + Maarten Coene + + + Justin Couch + + + Michael Davey + + + Norm Deane + + + Ringo De Smet + + + Russel Dittmar + + + Steve Downey + + + Matthias Eichel + + + Christopher Elkins + + + Chris Feldhacker + + + Pete Gieser + + + Jason Gritman + + + Matthew Hawthorne + + + Michael Heuer + + + Oliver Heger + + + Chris Hyzer + + + Marc Johnson + + + Shaun Kalley + + + Tetsuya Kaneuchi + + + Nissim Karpenstein + + + Ed Korthof + + + Holger Krauth + + + Rafal Krupinski + + + Rafal Krzewski + + + Craig R. McClanahan + + + Rand McNeely + + + Nikolay Metchev + + + Kasper Nielsen + + + Tim O'Brien + + + Brian S O'Neill + + + Andrew C. Oliver + + + Alban Peignier + + + Moritz Petersen + + + Dmitri Plotnikov + + + Neeme Praks + + + Eric Pugh + + + Stephen Putman + + + Travis Reeder + + + Antony Riley + + + Scott Sanders + + + Ralph Schaer + + + Henning P. Schmiedehausen + + + Sean Schofield + + + Reuben Sivan + + + Ville Skytta + + + Jan Sorensen + + + Glen Stampoultzis + + + Scott Stanchfield + + + Jon S. Stevens + + + Sean C. Sullivan + + + Ashwin Suresh + + + Helge Tesgaard + + + Arun Mammen Thomas + + + Masato Tezuka + + + Jeff Varszegi + + + Chris Webb + + + Mario Winterer + + + + + The Apache Software License, Version 2.0 + /LICENSE.txt + + + + scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk + http://svn.apache.org/viewvc/jakarta/commons/proper/lang/trunk + + + The Apache Software Foundation + http://jakarta.apache.org + + + src/java + src/test + + + META-INF + . + + NOTICE.txt + + + + + + ${pom.build.unitTestSourceDirectory} + + **/*.xml + + + + + + maven-surefire-plugin + + + **/*TestSuite.java + + + **/AllLangTestSuite.java + + + + + maven-plugins + maven-cobertura-plugin + 1.1.1 + + test + Required only for generating test coverage reports. + + + + + + + junit + junit + 3.8.1 + test + + + + + default + Default Repository + file:///www/jakarta.apache.org/builds/jakarta-commons/lang/ + + + default + Default Site + scp://people.apache.org//www/jakarta.apache.org/commons/lang/ + + converted + +
\ No newline at end of file diff --git a/java/lib/poms/commons-logging-1.0.4.pom b/java/lib/poms/commons-logging-1.0.4.pom new file mode 100644 index 0000000000..7c1017dc2a --- /dev/null +++ b/java/lib/poms/commons-logging-1.0.4.pom @@ -0,0 +1,165 @@ + + 4.0.0 + commons-logging + commons-logging + Logging + 1.0.4 + Commons Logging is a thin adapter allowing configurable bridging to other, + well known logging systems. + http://jakarta.apache.org/commons/logging/ + + http://issues.apache.org/bugzilla/ + + + + + +
commons-dev@jakarta.apache.org
+
+
+
+
+ 2001 + + + Commons Dev List + commons-dev-subscribe@jakarta.apache.org + commons-dev-unsubscribe@jakarta.apache.org + http://nagoya.apache.org/eyebrowse/SummarizeList?listName=commons-dev@jakarta.apache.org + + + Commons User List + commons-user-subscribe@jakarta.apache.org + commons-user-unsubscribe@jakarta.apache.org + http://nagoya.apache.org/eyebrowse/SummarizeList?listName=commons-user@jakarta.apache.org + + + + + morgand + Morgan Delagrange + morgand at apache dot org + Apache + + Java Developer + + + + rwaldhoff + Rodney Waldhoff + rwaldhoff at apache org + Apache Software Foundation + + + craigmcc + Craig McClanahan + craigmcc at apache org + Apache Software Foundation + + + sanders + Scott Sanders + sanders at apache dot org + Apache Software Foundation + + + rdonkin + Robert Burrell Donkin + rdonkin at apache dot org + Apache Software Foundation + + + donaldp + Peter Donald + donaldp at apache dot org + + + + costin + Costin Manolache + costin at apache dot org + Apache Software Foundation + + + rsitze + Richard Sitze + rsitze at apache dot org + Apache Software Foundation + + + baliuka + Juozas Baliuka + baliuka@apache.org + + + Java Developer + + + + + + The Apache Software License, Version 2.0 + /LICENSE.txt + + + + scm:cvs:pserver:anoncvs@cvs.apache.org:/home/cvspublic:jakarta-commons/logging + http://cvs.apache.org/viewcvs/jakarta-commons/logging/ + + + The Apache Software Foundation + http://jakarta.apache.org + + + src/java + src/test + + + maven-surefire-plugin + + + **/AvalonLoggerTest.java + + + + + + + + log4j + log4j + 1.2.6 + true + + + logkit + logkit + 1.0.1 + true + + + junit + junit + 3.7 + test + + + avalon-framework + avalon-framework + 4.1.3 + true + + + + + default + Default Repository + file:///www/jakarta.apache.org/builds/jakarta-commons/logging/ + + + default + Default Site + scp://jakarta.apache.org//www/jakarta.apache.org/commons/logging/ + + +
diff --git a/java/lib/poms/commons-pool-1.4.pom b/java/lib/poms/commons-pool-1.4.pom new file mode 100644 index 0000000000..3dd87ae576 --- /dev/null +++ b/java/lib/poms/commons-pool-1.4.pom @@ -0,0 +1,209 @@ + + 4.0.0 + commons-pool + commons-pool + Commons Pool + 1.4 + Commons Object Pooling Library + http://commons.apache.org/pool/ + + http://issues.apache.org/jira/ + + + + + +
dev@commons.apache.org
+
+
+
+
+ 2001 + + + Commons Dev List + dev-subscribe@commons.apache.org + dev-unsubscribe@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-dev/ + + + Commons User List + user-subscribe@commons.apache.org + user-unsubscribe@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-user/ + + + + + morgand + Morgan Delagrange + + + + + geirm + Geir Magnusson + + + + + craigmcc + Craig McClanahan + + + + + rwaldhoff + Rodney Waldhoff + + + + + dweinr1 + David Weinrich + + + + + dirkv + Dirk Verbeeck + + + + + rdonkin + Robert Burrell Donkin + + Apache Software Foundation + + + sandymac + Sandy McArthur + + Apache Software Foundation + + + psteitz + Phil Steitz + + Apache Software Foundation + + + + + Todd Carmichael + toddc@concur.com + + + + + The Apache Software License, Version 2.0 + /LICENSE.txt + + + + scm:svn:http://svn.apache.org/repos/asf/commons/proper/pool/trunk + http://svn.apache.org/repos/asf/commons/proper/pool/trunk + + + The Apache Software Foundation + http://commons.apache.org/ + + + src/java + src/test + + + META-INF + ${basedir} + + NOTICE.txt + + + + + + maven-surefire-plugin + + + org/apache/commons/pool/TestBaseObjectPool.java + org/apache/commons/pool/TestBaseKeyedObjectPool.java + org/apache/commons/pool/TestBasePoolableObjectFactory.java + org/apache/commons/pool/TestBaseKeyedPoolableObjectFactory.java + org/apache/commons/pool/TestPoolUtils.java + org/apache/commons/pool/impl/TestStackObjectPool.java + org/apache/commons/pool/impl/TestStackKeyedObjectPool.java + org/apache/commons/pool/impl/TestGenericObjectPool.java + org/apache/commons/pool/impl/TestGenericKeyedObjectPool.java + org/apache/commons/pool/impl/TestSoftReferenceObjectPool.java + org/apache/commons/pool/impl/TestGenericObjectPoolFactory.java + org/apache/commons/pool/impl/TestStackObjectPoolFactory.java + org/apache/commons/pool/impl/TestGenericKeyedObjectPoolFactory.java + org/apache/commons/pool/impl/TestStackKeyedObjectPoolFactory.java + org/apache/commons/pool/composite/TestFifoLender.java + org/apache/commons/pool/composite/TestIdleEvictorLender.java + org/apache/commons/pool/composite/TestInvalidEvictorLender.java + org/apache/commons/pool/composite/TestLifoLender.java + org/apache/commons/pool/composite/TestNullLender.java + org/apache/commons/pool/composite/TestSoftLender.java + org/apache/commons/pool/composite/TestFailManager.java + org/apache/commons/pool/composite/TestGrowManager.java + org/apache/commons/pool/composite/TestIdleLimitManager.java + org/apache/commons/pool/composite/TestFailLimitManager.java + org/apache/commons/pool/composite/TestWaitLimitManager.java + org/apache/commons/pool/composite/TestNullTracker.java + org/apache/commons/pool/composite/TestReferenceTracker.java + org/apache/commons/pool/composite/TestDebugTracker.java + org/apache/commons/pool/composite/TestSimpleTracker.java + org/apache/commons/pool/composite/TestCompositeObjectPool.java + org/apache/commons/pool/composite/TestCompositeKeyedObjectPool.java + org/apache/commons/pool/composite/TestCompositeKeyedObjectPool2.java + org/apache/commons/pool/composite/TestCompositeKeyedObjectPoolFactory.java + + + + + maven-jdiff-plugin + 1.5 + + <strong>Site Only</strong> - v1.5 (minimum) + + + + maven-changes-plugin + 1.6 + + <strong>Site Only</strong> - v1.6 (minimum) + + + + maven-javadoc-plugin + 1.8 + + <b>Site</b> only + + + + + + + junit + junit + 3.8.2 + test + + + + + default + Default Repository + file:///www/people.apache.org/builds/commons/pool/ + + + default + Default Site + scp://people.apache.org//www/commons.apache.org/pool/ + + converted + +
\ No newline at end of file diff --git a/java/lib/poms/derby-10.3.2.1.pom b/java/lib/poms/derby-10.3.2.1.pom new file mode 100644 index 0000000000..175046203d --- /dev/null +++ b/java/lib/poms/derby-10.3.2.1.pom @@ -0,0 +1,43 @@ + + 4.0.0 + org.apache.derby + derby + Derby Engine + 10.3.2.1 + + http://db.apache.org/derby/ + + http://issues.apache.org/jira/browse/DERBY + + 2004 + + + Derby User List + derby-user-subscribe@db.apache.org + derby-user-unsubscribe@db.apache.org + http://issues.apache.org/eyebrowse/SummarizeList?listName=derby-user@db.apache.org + + + Derby Developer List + derby-dev-subscribe@db.apache.org + derby-dev-unsubscribe@db.apache.org + http://issues.apache.org/eyebrowse/SummarizeList?listName=derby-dev@db.apache.org + + + Derby Commit List + derby-commits-subscribe@db.apache.org + derby-commits-unsubscribe@db.apache.org + http://issues.apache.org/eyebrowse/SummarizeList?listName=derby-commits@db.apache.org + + + + scm:svn:http://svn.apache.org/repos/asf/db/derby/code/trunk + scm:svn:https://svn.apache.org/repos/asf/db/derby/code/trunk + http://svn.apache.org/viewcvs.cgi/db/derby/code/trunk/?root=Apache-SVN + + + Apache Software Foundation + http://db.apache.org/ + + + \ No newline at end of file diff --git a/java/lib/poms/geronimo-jms_1.1_spec-1.0.pom b/java/lib/poms/geronimo-jms_1.1_spec-1.0.pom new file mode 100644 index 0000000000..bde503231e --- /dev/null +++ b/java/lib/poms/geronimo-jms_1.1_spec-1.0.pom @@ -0,0 +1,6 @@ + + 4.0.0 + org.apache.geronimo.specs + geronimo-jms_1.1_spec + 1.0 + \ No newline at end of file diff --git a/java/lib/poms/junit-3.8.1.pom b/java/lib/poms/junit-3.8.1.pom new file mode 100644 index 0000000000..2169a65d76 --- /dev/null +++ b/java/lib/poms/junit-3.8.1.pom @@ -0,0 +1,29 @@ + + + 4.0.0 + junit + junit + 3.8.1 + JUnit + http://junit.org + + JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. + + + JUnit + http://www.junit.org + + + + Common Public License Version 1.0 + http://www.opensource.org/licenses/cpl1.0.txt + + + + http://junit.cvs.sourceforge.net/junit/ + + + + diff --git a/java/lib/poms/log4j-1.2.12.pom b/java/lib/poms/log4j-1.2.12.pom new file mode 100644 index 0000000000..8c10608604 --- /dev/null +++ b/java/lib/poms/log4j-1.2.12.pom @@ -0,0 +1,6 @@ + + 4.0.0 + log4j + log4j + 1.2.12 + \ No newline at end of file diff --git a/java/lib/poms/mina-core-1.0.1.pom b/java/lib/poms/mina-core-1.0.1.pom new file mode 100644 index 0000000000..def70418c9 --- /dev/null +++ b/java/lib/poms/mina-core-1.0.1.pom @@ -0,0 +1,34 @@ + + + build + org.apache.mina + 1.0.1 + + 4.0.0 + mina-core + Apache MINA Core API + 1.0.1 + + + org.slf4j + slf4j-simple + 1.0 + provided + + + backport-util-concurrent + backport-util-concurrent + 2.2 + compile + + + easymock + easymock + 1.2_Java1.3 + test + + + + deployed + + \ No newline at end of file diff --git a/java/lib/poms/mina-filter-ssl-1.0.1.pom b/java/lib/poms/mina-filter-ssl-1.0.1.pom new file mode 100644 index 0000000000..1d5a1ec18c --- /dev/null +++ b/java/lib/poms/mina-filter-ssl-1.0.1.pom @@ -0,0 +1,27 @@ + + + build + org.apache.mina + 1.0.1 + + 4.0.0 + mina-filter-ssl + Apache MINA SSL Filter + 1.0.1 + + + org.apache.mina + mina-core + 1.0.1 + + + org.slf4j + slf4j-simple + 1.0 + provided + + + + deployed + + \ No newline at end of file diff --git a/java/lib/poms/org.apache.felix.framework-1.0.0.pom b/java/lib/poms/org.apache.felix.framework-1.0.0.pom new file mode 100644 index 0000000000..c7e6cd489e --- /dev/null +++ b/java/lib/poms/org.apache.felix.framework-1.0.0.pom @@ -0,0 +1,66 @@ + + + + org.apache.felix + felix + 1.0.0 + ../pom/pom.xml + + 4.0.0 + bundle + Apache Felix Framework + org.apache.felix.framework + 1.0.0 + + + ${pom.groupId} + org.osgi.core + 1.0.0 + + + + + + + org.apache.felix + maven-bundle-plugin + 1.0.0 + true + + + Apache Felix Framework + OSGi R4 framework implementation. + org.osgi.framework,org.osgi.service.packageadmin,org.osgi.service.url,org.osgi.service.startlevel,org.osgi.util.tracker + org.apache.felix.moduleloader.*,org.apache.felix.framework.* + !* + {src/main/resources/},org/osgi/framework/=target/classes/org/osgi/framework/ + + + + + + diff --git a/java/lib/poms/org.osgi.core-1.0.0.pom b/java/lib/poms/org.osgi.core-1.0.0.pom new file mode 100644 index 0000000000..4e512c06a4 --- /dev/null +++ b/java/lib/poms/org.osgi.core-1.0.0.pom @@ -0,0 +1,56 @@ + + + + org.apache.felix + felix + 1.0.0 + ../pom/pom.xml + + + OSGi Alliance + http://www.osgi.org/ + + 4.0.0 + OSGi R4 Core Bundle + OSGi Service Platform Release 4 Core Interfaces and Classes. + org.osgi.core + 1.0.0 + bundle + + + + org.apache.felix + maven-bundle-plugin + 1.0.0 + true + + + org.osgi.core + org.osgi.framework, org.osgi.service.condpermadmin, org.osgi.service.packageadmin, org.osgi.service.permissionadmin, org.osgi.service.startlevel, org.osgi.service.url + org.osgi.framework,org.osgi.service.packageadmin,org.osgi.service.startlevel,org.osgi.service.url,!org.osgi.*,* + 4 + Copyright (c) OSGi Alliance (2000, 2006). All Rights Reserved. + osgi + + + + + + diff --git a/java/lib/poms/slf4j-api-1.4.0.pom b/java/lib/poms/slf4j-api-1.4.0.pom new file mode 100644 index 0000000000..13e1418d2b --- /dev/null +++ b/java/lib/poms/slf4j-api-1.4.0.pom @@ -0,0 +1,73 @@ + + + slf4j-parent + org.slf4j + 1.4.0 + + 4.0.0 + org.slf4j + slf4j-api + SLF4J API Module + 1.4.0 + The slf4j API + http://www.slf4j.org + + + + maven-surefire-plugin + + once + plain + false + + **/AllTest.java + **/PackageTest.java + + + + + maven-jar-plugin + + + bundle-test-jar + package + + jar + test-jar + + + + + + + ${pv4osgi} + ${project.description} + 1.4.0 + + src/main/resources/META-INF/MANIFEST.MF + + + + + maven-antrun-plugin + + + process-classes + + run + + + + + + Removing slf4j-api's dummy StaticLoggerBinder and StaticMarkerBinder + + + + + + + + deployed + + \ No newline at end of file diff --git a/java/lib/poms/slf4j-log4j12-1.4.0.pom b/java/lib/poms/slf4j-log4j12-1.4.0.pom new file mode 100644 index 0000000000..29302557e6 --- /dev/null +++ b/java/lib/poms/slf4j-log4j12-1.4.0.pom @@ -0,0 +1,44 @@ + + + slf4j-parent + org.slf4j + 1.4.0 + + 4.0.0 + org.slf4j + slf4j-log4j12 + SLF4J LOG4J-12 Binding + 1.4.0 + The slf4j log4j-12 binding + http://www.slf4j.org + + + + maven-jar-plugin + + + + ${pv4osgi} + ${project.description} + 1.4.0 + + src/main/resources/META-INF/MANIFEST.MF + + + + + + + + org.slf4j + slf4j-api + + + log4j + log4j + + + + deployed + + \ No newline at end of file diff --git a/java/lib/poms/xalan-2.7.0.pom b/java/lib/poms/xalan-2.7.0.pom new file mode 100644 index 0000000000..f543d7e6e2 --- /dev/null +++ b/java/lib/poms/xalan-2.7.0.pom @@ -0,0 +1,19 @@ + + 4.0.0 + xalan + xalan + 2.7.0 + + + xml-apis + xml-apis + 2.0.2 + + + xerces + xercesImpl + 2.6.0 + true + + + \ No newline at end of file diff --git a/java/module.xml b/java/module.xml index 42da1fe7ed..edfa217781 100644 --- a/java/module.xml +++ b/java/module.xml @@ -36,7 +36,7 @@ - + @@ -49,27 +49,35 @@ - - - - - - - - + + + + + + + + + + - + + + + + + + @@ -102,11 +110,11 @@ - + - + @@ -155,6 +163,21 @@ + + + + + + + + + + + + + + + @@ -330,7 +353,7 @@ - + @@ -342,7 +365,7 @@ - + -- cgit v1.2.1