diff options
| author | Robert Gemmell <robbie@apache.org> | 2013-10-07 07:56:04 +0000 |
|---|---|---|
| committer | Robert Gemmell <robbie@apache.org> | 2013-10-07 07:56:04 +0000 |
| commit | c06c61c2eb52a7bcf8c18866d2f12145bebef3e4 (patch) | |
| tree | 787fceeb0d22bfdf99aac0c2189d931c0228cf02 /java | |
| parent | 90c0ad704c0d78c95f79c868cdfe9938c525ad93 (diff) | |
| download | qpid-python-c06c61c2eb52a7bcf8c18866d2f12145bebef3e4.tar.gz | |
QPID-5207: fix the pom generation in the Ant build
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1529781 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java')
| -rwxr-xr-x | java/genpom | 5 | ||||
| -rw-r--r-- | java/lib/poms/dojo-1.8.3.xml | 23 |
2 files changed, 28 insertions, 0 deletions
diff --git a/java/genpom b/java/genpom index 43c0132ecf..55da2fe3d6 100755 --- a/java/genpom +++ b/java/genpom @@ -145,6 +145,11 @@ for jar in jars: <scope>%s</scope>""" % (group, artifactId, version, scopes.get(artifactId, "compile"))) + deptype = lookup(dep, "deptype") + if deptype is not None: + deps.append(""" + <type>%s</type>""" % deptype) + exclusions = lookupElement(dep, "exclusions") if exclusions is not None: deps.append(""" diff --git a/java/lib/poms/dojo-1.8.3.xml b/java/lib/poms/dojo-1.8.3.xml new file mode 100644 index 0000000000..0768c3b576 --- /dev/null +++ b/java/lib/poms/dojo-1.8.3.xml @@ -0,0 +1,23 @@ +<?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.dojotoolkit</groupId> + <artifactId>dojo</artifactId> + <version>1.8.3</version> + <deptype>zip</deptype> +</dep> |
