You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ro...@apache.org on 2011/02/07 23:17:45 UTC

svn commit: r1068179 - in /qpid/trunk/qpid/java: ./ lib/poms/

Author: robbie
Date: Mon Feb  7 22:17:44 2011
New Revision: 1068179

URL: http://svn.apache.org/viewvc?rev=1068179&view=rev
Log:
QPID-2977: simply specify the required dep info in a file rather than using full POMs. Update the SLF4J, Derby, Felix dep info to match the jars currently in use.

Added:
    qpid/trunk/qpid/java/lib/poms/backport-util-concurrent-2.2.xml
    qpid/trunk/qpid/java/lib/poms/commons-beanutils-core-1.8.0.xml
    qpid/trunk/qpid/java/lib/poms/commons-cli-1.0.xml
    qpid/trunk/qpid/java/lib/poms/commons-codec-1.3.xml
    qpid/trunk/qpid/java/lib/poms/commons-collections-3.2.xml
    qpid/trunk/qpid/java/lib/poms/commons-configuration-1.6.xml
    qpid/trunk/qpid/java/lib/poms/commons-digester-1.8.1.xml
    qpid/trunk/qpid/java/lib/poms/commons-lang-2.2.xml
    qpid/trunk/qpid/java/lib/poms/commons-logging-1.0.4.xml
    qpid/trunk/qpid/java/lib/poms/commons-pool-1.4.xml
    qpid/trunk/qpid/java/lib/poms/derby-10.6.1.0.xml
    qpid/trunk/qpid/java/lib/poms/geronimo-jms_1.1_spec-1.0.xml
    qpid/trunk/qpid/java/lib/poms/junit-3.8.1.xml
    qpid/trunk/qpid/java/lib/poms/log4j-1.2.12.xml
    qpid/trunk/qpid/java/lib/poms/mina-core-1.0.1.xml
    qpid/trunk/qpid/java/lib/poms/mina-filter-ssl-1.0.1.xml
    qpid/trunk/qpid/java/lib/poms/org.apache.felix.framework-2.0.5.xml
    qpid/trunk/qpid/java/lib/poms/org.osgi.core-1.0.0.xml
    qpid/trunk/qpid/java/lib/poms/slf4j-api-1.6.1.xml
    qpid/trunk/qpid/java/lib/poms/slf4j-log4j12-1.6.1.xml
    qpid/trunk/qpid/java/lib/poms/xalan-2.7.0.xml
Removed:
    qpid/trunk/qpid/java/lib/poms/backport-util-concurrent-2.2.pom
    qpid/trunk/qpid/java/lib/poms/commons-beanutils-core-1.8.0.pom
    qpid/trunk/qpid/java/lib/poms/commons-cli-1.0.pom
    qpid/trunk/qpid/java/lib/poms/commons-codec-1.3.pom
    qpid/trunk/qpid/java/lib/poms/commons-collections-3.2.pom
    qpid/trunk/qpid/java/lib/poms/commons-configuration-1.6.pom
    qpid/trunk/qpid/java/lib/poms/commons-digester-1.8.1.pom
    qpid/trunk/qpid/java/lib/poms/commons-lang-2.2.pom
    qpid/trunk/qpid/java/lib/poms/commons-logging-1.0.4.pom
    qpid/trunk/qpid/java/lib/poms/commons-pool-1.4.pom
    qpid/trunk/qpid/java/lib/poms/derby-10.3.2.1.pom
    qpid/trunk/qpid/java/lib/poms/geronimo-jms_1.1_spec-1.0.pom
    qpid/trunk/qpid/java/lib/poms/junit-3.8.1.pom
    qpid/trunk/qpid/java/lib/poms/log4j-1.2.12.pom
    qpid/trunk/qpid/java/lib/poms/mina-core-1.0.1.pom
    qpid/trunk/qpid/java/lib/poms/mina-filter-ssl-1.0.1.pom
    qpid/trunk/qpid/java/lib/poms/org.apache.felix.framework-1.0.0.pom
    qpid/trunk/qpid/java/lib/poms/org.osgi.core-1.0.0.pom
    qpid/trunk/qpid/java/lib/poms/slf4j-api-1.4.0.pom
    qpid/trunk/qpid/java/lib/poms/slf4j-log4j12-1.4.0.pom
    qpid/trunk/qpid/java/lib/poms/xalan-2.7.0.pom
Modified:
    qpid/trunk/qpid/java/genpom

Modified: qpid/trunk/qpid/java/genpom
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/java/genpom?rev=1068179&r1=1068178&r2=1068179&view=diff
==============================================================================
--- qpid/trunk/qpid/java/genpom (original)
+++ qpid/trunk/qpid/java/genpom Mon Feb  7 22:17:44 2011
@@ -34,9 +34,9 @@ parser.add_option("-d", "--description",
 parser.add_option("-u", "--url", default="")
 parser.add_option("-m", "--modules", help="modules dependencies")
 parser.add_option("-p", "--prefix", help="prefix of the project's artifacts names")
-parser.add_option("-i", "--ignore", action="store_true", help="ignore missing poms")
+parser.add_option("-i", "--ignore", action="store_true", help="ignore missing deps")
 parser.add_option("-s", "--search-path", action="append",
-                  help="the path to search for poms")
+                  help="the path to search for deps")
 parser.add_option("-S", "--scope", metavar="ARTIFACT=SCOPE", action="append",
                   default=[],
                   help="specify scope for an artifact")
@@ -73,10 +73,9 @@ if opts.name is None:
 if opts.artifact is None:
   opts.artifact = opts.name
 
-def lookup(pom, attr):
-  nd = pom["project"][attr]
+def lookup(dep, attr):
+  nd = dep["dep"][attr]
   if nd is None:
-    nd = pom["project/parent"][attr]
     if nd is None:
       return None
   return nd.text()
@@ -115,15 +114,15 @@ for module in module_depends:
 
 for jar in jars:
   base, ext = os.path.splitext(os.path.basename(jar))
-  pom = search(expanded_path, "%s.pom" % base)
-  if pom is None:
+  dep = search(expanded_path, "%s.xml" % base)
+  if dep 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")
+      die("unable to locate xml for %s" % jar)
+  group = lookup(dep, "groupId")
+  artifactId = lookup(dep, "artifactId")
+  version = lookup(dep, "version")
   deps.append("""
     <dependency>
       <groupId>%s</groupId>

Added: qpid/trunk/qpid/java/lib/poms/backport-util-concurrent-2.2.xml
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/java/lib/poms/backport-util-concurrent-2.2.xml?rev=1068179&view=auto
==============================================================================
--- qpid/trunk/qpid/java/lib/poms/backport-util-concurrent-2.2.xml (added)
+++ qpid/trunk/qpid/java/lib/poms/backport-util-concurrent-2.2.xml Mon Feb  7 22:17:44 2011
@@ -0,0 +1,22 @@
+<?xml version="1.0"?>
+<!--
+   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.
+-->
+<dep>
+  <groupId>backport-util-concurrent</groupId>
+  <artifactId>backport-util-concurrent</artifactId>
+  <version>2.2</version>
+</dep>

Added: qpid/trunk/qpid/java/lib/poms/commons-beanutils-core-1.8.0.xml
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/java/lib/poms/commons-beanutils-core-1.8.0.xml?rev=1068179&view=auto
==============================================================================
--- qpid/trunk/qpid/java/lib/poms/commons-beanutils-core-1.8.0.xml (added)
+++ qpid/trunk/qpid/java/lib/poms/commons-beanutils-core-1.8.0.xml Mon Feb  7 22:17:44 2011
@@ -0,0 +1,22 @@
+<?xml version="1.0"?>
+<!--
+   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.
+-->
+<dep>
+  <groupId>commons-beanutils</groupId>
+  <artifactId>commons-beanutils-core</artifactId>
+  <version>1.8.0</version>
+</dep>

Added: qpid/trunk/qpid/java/lib/poms/commons-cli-1.0.xml
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/java/lib/poms/commons-cli-1.0.xml?rev=1068179&view=auto
==============================================================================
--- qpid/trunk/qpid/java/lib/poms/commons-cli-1.0.xml (added)
+++ qpid/trunk/qpid/java/lib/poms/commons-cli-1.0.xml Mon Feb  7 22:17:44 2011
@@ -0,0 +1,22 @@
+<?xml version="1.0"?>
+<!--
+   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.
+-->
+<dep>
+  <groupId>commons-cli</groupId>
+  <artifactId>commons-cli</artifactId>
+  <version>1.0</version>
+</dep>

Added: qpid/trunk/qpid/java/lib/poms/commons-codec-1.3.xml
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/java/lib/poms/commons-codec-1.3.xml?rev=1068179&view=auto
==============================================================================
--- qpid/trunk/qpid/java/lib/poms/commons-codec-1.3.xml (added)
+++ qpid/trunk/qpid/java/lib/poms/commons-codec-1.3.xml Mon Feb  7 22:17:44 2011
@@ -0,0 +1,22 @@
+<?xml version="1.0"?>
+<!--
+   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.
+-->
+<dep>
+  <groupId>commons-codec</groupId>
+  <artifactId>commons-codec</artifactId>
+  <version>1.3</version>
+</dep>

Added: qpid/trunk/qpid/java/lib/poms/commons-collections-3.2.xml
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/java/lib/poms/commons-collections-3.2.xml?rev=1068179&view=auto
==============================================================================
--- qpid/trunk/qpid/java/lib/poms/commons-collections-3.2.xml (added)
+++ qpid/trunk/qpid/java/lib/poms/commons-collections-3.2.xml Mon Feb  7 22:17:44 2011
@@ -0,0 +1,22 @@
+<?xml version="1.0"?>
+<!--
+   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.
+-->
+<dep>
+  <groupId>commons-collections</groupId>
+  <artifactId>commons-collections</artifactId>
+  <version>3.2</version>
+</dep>

Added: qpid/trunk/qpid/java/lib/poms/commons-configuration-1.6.xml
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/java/lib/poms/commons-configuration-1.6.xml?rev=1068179&view=auto
==============================================================================
--- qpid/trunk/qpid/java/lib/poms/commons-configuration-1.6.xml (added)
+++ qpid/trunk/qpid/java/lib/poms/commons-configuration-1.6.xml Mon Feb  7 22:17:44 2011
@@ -0,0 +1,22 @@
+<?xml version="1.0"?>
+<!--
+   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.
+-->
+<dep>
+  <groupId>commons-configuration</groupId>
+  <artifactId>commons-configuration</artifactId>
+  <version>1.6</version>
+</dep>

Added: qpid/trunk/qpid/java/lib/poms/commons-digester-1.8.1.xml
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/java/lib/poms/commons-digester-1.8.1.xml?rev=1068179&view=auto
==============================================================================
--- qpid/trunk/qpid/java/lib/poms/commons-digester-1.8.1.xml (added)
+++ qpid/trunk/qpid/java/lib/poms/commons-digester-1.8.1.xml Mon Feb  7 22:17:44 2011
@@ -0,0 +1,22 @@
+<?xml version="1.0"?>
+<!--
+   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.
+-->
+<dep>
+  <groupId>commons-digester</groupId>
+  <artifactId>commons-digester</artifactId>
+  <version>1.8.1</version>
+</dep>

Added: qpid/trunk/qpid/java/lib/poms/commons-lang-2.2.xml
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/java/lib/poms/commons-lang-2.2.xml?rev=1068179&view=auto
==============================================================================
--- qpid/trunk/qpid/java/lib/poms/commons-lang-2.2.xml (added)
+++ qpid/trunk/qpid/java/lib/poms/commons-lang-2.2.xml Mon Feb  7 22:17:44 2011
@@ -0,0 +1,22 @@
+<?xml version="1.0"?>
+<!--
+   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.
+-->
+<dep>
+  <groupId>commons-lang</groupId>
+  <artifactId>commons-lang</artifactId>
+  <version>2.2</version>
+</dep>

Added: qpid/trunk/qpid/java/lib/poms/commons-logging-1.0.4.xml
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/java/lib/poms/commons-logging-1.0.4.xml?rev=1068179&view=auto
==============================================================================
--- qpid/trunk/qpid/java/lib/poms/commons-logging-1.0.4.xml (added)
+++ qpid/trunk/qpid/java/lib/poms/commons-logging-1.0.4.xml Mon Feb  7 22:17:44 2011
@@ -0,0 +1,22 @@
+<?xml version="1.0"?>
+<!--
+   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.
+-->
+<dep>
+  <groupId>commons-logging</groupId>
+  <artifactId>commons-logging</artifactId>
+  <version>1.0.4</version>
+</dep>

Added: qpid/trunk/qpid/java/lib/poms/commons-pool-1.4.xml
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/java/lib/poms/commons-pool-1.4.xml?rev=1068179&view=auto
==============================================================================
--- qpid/trunk/qpid/java/lib/poms/commons-pool-1.4.xml (added)
+++ qpid/trunk/qpid/java/lib/poms/commons-pool-1.4.xml Mon Feb  7 22:17:44 2011
@@ -0,0 +1,22 @@
+<?xml version="1.0"?>
+<!--
+   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.
+-->
+<dep>
+  <groupId>commons-pool</groupId>
+  <artifactId>commons-pool</artifactId>
+  <version>1.4</version>
+</dep>

Added: qpid/trunk/qpid/java/lib/poms/derby-10.6.1.0.xml
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/java/lib/poms/derby-10.6.1.0.xml?rev=1068179&view=auto
==============================================================================
--- qpid/trunk/qpid/java/lib/poms/derby-10.6.1.0.xml (added)
+++ qpid/trunk/qpid/java/lib/poms/derby-10.6.1.0.xml Mon Feb  7 22:17:44 2011
@@ -0,0 +1,22 @@
+<?xml version="1.0"?>
+<!--
+   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.
+-->
+<dep>
+  <groupId>org.apache.derby</groupId>
+  <artifactId>derby</artifactId>
+  <version>10.6.1.0</version>
+</dep>

Added: qpid/trunk/qpid/java/lib/poms/geronimo-jms_1.1_spec-1.0.xml
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/java/lib/poms/geronimo-jms_1.1_spec-1.0.xml?rev=1068179&view=auto
==============================================================================
--- qpid/trunk/qpid/java/lib/poms/geronimo-jms_1.1_spec-1.0.xml (added)
+++ qpid/trunk/qpid/java/lib/poms/geronimo-jms_1.1_spec-1.0.xml Mon Feb  7 22:17:44 2011
@@ -0,0 +1,22 @@
+<?xml version="1.0"?>
+<!--
+   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.
+-->
+<dep>
+  <groupId>org.apache.geronimo.specs</groupId>
+  <artifactId>geronimo-jms_1.1_spec</artifactId>
+  <version>1.0</version>
+</dep>

Added: qpid/trunk/qpid/java/lib/poms/junit-3.8.1.xml
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/java/lib/poms/junit-3.8.1.xml?rev=1068179&view=auto
==============================================================================
--- qpid/trunk/qpid/java/lib/poms/junit-3.8.1.xml (added)
+++ qpid/trunk/qpid/java/lib/poms/junit-3.8.1.xml Mon Feb  7 22:17:44 2011
@@ -0,0 +1,22 @@
+<?xml version="1.0"?>
+<!--
+   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.
+-->
+<dep>
+  <groupId>junit</groupId>
+  <artifactId>junit</artifactId>
+  <version>3.8.1</version>
+</dep>

Added: qpid/trunk/qpid/java/lib/poms/log4j-1.2.12.xml
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/java/lib/poms/log4j-1.2.12.xml?rev=1068179&view=auto
==============================================================================
--- qpid/trunk/qpid/java/lib/poms/log4j-1.2.12.xml (added)
+++ qpid/trunk/qpid/java/lib/poms/log4j-1.2.12.xml Mon Feb  7 22:17:44 2011
@@ -0,0 +1,22 @@
+<?xml version="1.0"?>
+<!--
+   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.
+-->
+<dep>
+  <groupId>log4j</groupId>
+  <artifactId>log4j</artifactId>
+  <version>1.2.12</version>
+</dep>

Added: qpid/trunk/qpid/java/lib/poms/mina-core-1.0.1.xml
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/java/lib/poms/mina-core-1.0.1.xml?rev=1068179&view=auto
==============================================================================
--- qpid/trunk/qpid/java/lib/poms/mina-core-1.0.1.xml (added)
+++ qpid/trunk/qpid/java/lib/poms/mina-core-1.0.1.xml Mon Feb  7 22:17:44 2011
@@ -0,0 +1,22 @@
+<?xml version="1.0"?>
+<!--
+   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.
+-->
+<dep>
+  <groupId>org.apache.mina</groupId>
+  <artifactId>mina-core</artifactId>
+  <version>1.0.1</version>
+</dep>

Added: qpid/trunk/qpid/java/lib/poms/mina-filter-ssl-1.0.1.xml
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/java/lib/poms/mina-filter-ssl-1.0.1.xml?rev=1068179&view=auto
==============================================================================
--- qpid/trunk/qpid/java/lib/poms/mina-filter-ssl-1.0.1.xml (added)
+++ qpid/trunk/qpid/java/lib/poms/mina-filter-ssl-1.0.1.xml Mon Feb  7 22:17:44 2011
@@ -0,0 +1,22 @@
+<?xml version="1.0"?>
+<!--
+   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.
+-->
+<dep>
+  <groupId>org.apache.mina</groupId>
+  <artifactId>mina-filter-ssl</artifactId>
+  <version>1.0.1</version>
+</dep>

Added: qpid/trunk/qpid/java/lib/poms/org.apache.felix.framework-2.0.5.xml
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/java/lib/poms/org.apache.felix.framework-2.0.5.xml?rev=1068179&view=auto
==============================================================================
--- qpid/trunk/qpid/java/lib/poms/org.apache.felix.framework-2.0.5.xml (added)
+++ qpid/trunk/qpid/java/lib/poms/org.apache.felix.framework-2.0.5.xml Mon Feb  7 22:17:44 2011
@@ -0,0 +1,22 @@
+<?xml version="1.0"?>
+<!--
+   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.
+-->
+<dep>
+  <groupId>org.apache.felix</groupId>
+  <artifactId>org.apache.felix.framework</artifactId>
+  <version>2.0.5</version>
+</dep>

Added: qpid/trunk/qpid/java/lib/poms/org.osgi.core-1.0.0.xml
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/java/lib/poms/org.osgi.core-1.0.0.xml?rev=1068179&view=auto
==============================================================================
--- qpid/trunk/qpid/java/lib/poms/org.osgi.core-1.0.0.xml (added)
+++ qpid/trunk/qpid/java/lib/poms/org.osgi.core-1.0.0.xml Mon Feb  7 22:17:44 2011
@@ -0,0 +1,22 @@
+<?xml version="1.0"?>
+<!--
+   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.
+-->
+<dep>
+  <groupId>org.apache.felix</groupId>
+  <artifactId>org.osgi.core</artifactId>
+  <version>1.0.0</version>
+</dep>

Added: qpid/trunk/qpid/java/lib/poms/slf4j-api-1.6.1.xml
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/java/lib/poms/slf4j-api-1.6.1.xml?rev=1068179&view=auto
==============================================================================
--- qpid/trunk/qpid/java/lib/poms/slf4j-api-1.6.1.xml (added)
+++ qpid/trunk/qpid/java/lib/poms/slf4j-api-1.6.1.xml Mon Feb  7 22:17:44 2011
@@ -0,0 +1,22 @@
+<?xml version="1.0"?>
+<!--
+   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.
+-->
+<dep>
+  <groupId>org.slf4j</groupId>
+  <artifactId>slf4j-api</artifactId>
+  <version>1.6.1</version>
+</dep>

Added: qpid/trunk/qpid/java/lib/poms/slf4j-log4j12-1.6.1.xml
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/java/lib/poms/slf4j-log4j12-1.6.1.xml?rev=1068179&view=auto
==============================================================================
--- qpid/trunk/qpid/java/lib/poms/slf4j-log4j12-1.6.1.xml (added)
+++ qpid/trunk/qpid/java/lib/poms/slf4j-log4j12-1.6.1.xml Mon Feb  7 22:17:44 2011
@@ -0,0 +1,22 @@
+<?xml version="1.0"?>
+<!--
+   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.
+-->
+<dep>
+  <groupId>org.slf4j</groupId>
+  <artifactId>slf4j-log4j12</artifactId>
+  <version>1.6.1</version>
+</dep>

Added: qpid/trunk/qpid/java/lib/poms/xalan-2.7.0.xml
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/java/lib/poms/xalan-2.7.0.xml?rev=1068179&view=auto
==============================================================================
--- qpid/trunk/qpid/java/lib/poms/xalan-2.7.0.xml (added)
+++ qpid/trunk/qpid/java/lib/poms/xalan-2.7.0.xml Mon Feb  7 22:17:44 2011
@@ -0,0 +1,22 @@
+<?xml version="1.0"?>
+<!--
+   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.
+-->
+<dep>
+  <groupId>xalan</groupId>
+  <artifactId>xalan</artifactId>
+  <version>2.7.0</version>
+</dep>



---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:commits-subscribe@qpid.apache.org