diff options
| author | Robert Gemmell <robbie@apache.org> | 2012-06-29 13:54:07 +0000 |
|---|---|---|
| committer | Robert Gemmell <robbie@apache.org> | 2012-06-29 13:54:07 +0000 |
| commit | b72879b0f51e41e4945ff2332f790f23b74708ce (patch) | |
| tree | dae74ef85183a5532187b3b945168f7a6383367d /qpid/java/genpom | |
| parent | c39471a13af2e8dae9129a0f063ef12799381f4a (diff) | |
| download | qpid-python-b72879b0f51e41e4945ff2332f790f23b74708ce.tar.gz | |
QPID-4098: update POM generation for the plugins to mark the dependencies as being provided (by the broker itself) at runtime
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1355391 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/genpom')
| -rwxr-xr-x | qpid/java/genpom | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/qpid/java/genpom b/qpid/java/genpom index 07a5b82a1f..6ac0e970cc 100755 --- a/qpid/java/genpom +++ b/qpid/java/genpom @@ -111,8 +111,10 @@ for module in module_depends: <groupId>%s</groupId> <artifactId>%s</artifactId> <version>%s</version> + <scope>%s</scope> </dependency> -""" % (opts.group, artifactId, opts.version)) +""" % (opts.group, artifactId, opts.version, + scopes.get(artifactId, "compile"))) for jar in jars: base, ext = os.path.splitext(os.path.basename(jar)) |
