diff options
| author | Keith Wall <kwall@apache.org> | 2013-11-15 16:38:00 +0000 |
|---|---|---|
| committer | Keith Wall <kwall@apache.org> | 2013-11-15 16:38:00 +0000 |
| commit | 1fa6d0353d7cea5e206fec2c8d97282bdf5adf39 (patch) | |
| tree | a8317873cfcdf7a74e606219c318ea0580c64891 /qpid/java/broker-plugins | |
| parent | 32b480e3a6a1173195bc1a322b3a14852ca03068 (diff) | |
| download | qpid-python-1fa6d0353d7cea5e206fec2c8d97282bdf5adf39.tar.gz | |
QPID-5048: [Maven build system] Fix poms so that resources beneath the nonstandard src/main/java/resources are also included in the jar artifacts.
This problem prevented the proper creation of virtual hosts when using builds created by Maven.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1542317 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/broker-plugins')
| -rw-r--r-- | qpid/java/broker-plugins/derby-store/pom.xml | 11 | ||||
| -rw-r--r-- | qpid/java/broker-plugins/jdbc-provider-bone/pom.xml | 11 | ||||
| -rw-r--r-- | qpid/java/broker-plugins/jdbc-store/pom.xml | 11 | ||||
| -rw-r--r-- | qpid/java/broker-plugins/memory-store/pom.xml | 11 |
4 files changed, 44 insertions, 0 deletions
diff --git a/qpid/java/broker-plugins/derby-store/pom.xml b/qpid/java/broker-plugins/derby-store/pom.xml index 09bb66d589..51578a5db6 100644 --- a/qpid/java/broker-plugins/derby-store/pom.xml +++ b/qpid/java/broker-plugins/derby-store/pom.xml @@ -59,6 +59,17 @@ </dependencies> <build> + <resources> + <resource> + <directory>src/main/resources</directory> + </resource> + <resource> + <directory>src/main/java</directory> + <includes> + <include>resources/</include> + </includes> + </resource> + </resources> </build> </project> diff --git a/qpid/java/broker-plugins/jdbc-provider-bone/pom.xml b/qpid/java/broker-plugins/jdbc-provider-bone/pom.xml index ced20e165e..52631a44e3 100644 --- a/qpid/java/broker-plugins/jdbc-provider-bone/pom.xml +++ b/qpid/java/broker-plugins/jdbc-provider-bone/pom.xml @@ -58,6 +58,17 @@ </dependencies> <build> + <resources> + <resource> + <directory>src/main/resources</directory> + </resource> + <resource> + <directory>src/main/java</directory> + <includes> + <include>resources/</include> + </includes> + </resource> + </resources> </build> </project> diff --git a/qpid/java/broker-plugins/jdbc-store/pom.xml b/qpid/java/broker-plugins/jdbc-store/pom.xml index cca9c301e0..1cc75d8465 100644 --- a/qpid/java/broker-plugins/jdbc-store/pom.xml +++ b/qpid/java/broker-plugins/jdbc-store/pom.xml @@ -59,6 +59,17 @@ </dependencies> <build> + <resources> + <resource> + <directory>src/main/resources</directory> + </resource> + <resource> + <directory>src/main/java</directory> + <includes> + <include>resources/</include> + </includes> + </resource> + </resources> </build> </project> diff --git a/qpid/java/broker-plugins/memory-store/pom.xml b/qpid/java/broker-plugins/memory-store/pom.xml index 1cef06c1f0..6bfd2a8d49 100644 --- a/qpid/java/broker-plugins/memory-store/pom.xml +++ b/qpid/java/broker-plugins/memory-store/pom.xml @@ -36,6 +36,17 @@ </dependencies> <build> + <resources> + <resource> + <directory>src/main/resources</directory> + </resource> + <resource> + <directory>src/main/java</directory> + <includes> + <include>resources/</include> + </includes> + </resource> + </resources> </build> </project> |
