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 | b5188a9cbd760c80c4fa0826088cc99e7d18f6a0 (patch) | |
| tree | e0984efe29080a9e857e8bded5768fca28655b7d /java/bdbstore | |
| parent | 7b69da362fa2f2d53ec5378539195b8a4a7cfa41 (diff) | |
| download | qpid-python-b5188a9cbd760c80c4fa0826088cc99e7d18f6a0.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/qpid@1542317 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/bdbstore')
| -rw-r--r-- | java/bdbstore/pom.xml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/java/bdbstore/pom.xml b/java/bdbstore/pom.xml index 8e71ee1b02..c90f904171 100644 --- a/java/bdbstore/pom.xml +++ b/java/bdbstore/pom.xml @@ -86,6 +86,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> |
