Include some missing resources in the jars
Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/590f52df Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/590f52df Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/590f52df Branch: refs/heads/master Commit: 590f52df82b749abb9c17d3df02e88e9e29bc9b8 Parents: 2bc99c7 Author: Darren Shepherd <[email protected]> Authored: Tue Aug 28 08:59:20 2012 -0700 Committer: Darren Shepherd <[email protected]> Committed: Tue Aug 28 08:59:20 2012 -0700 ---------------------------------------------------------------------- awsapi/pom.xml | 8 ++++++++ console-proxy/pom.xml | 8 ++++++++ utils/pom.xml | 5 +++++ 3 files changed, 21 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/590f52df/awsapi/pom.xml ---------------------------------------------------------------------- diff --git a/awsapi/pom.xml b/awsapi/pom.xml index 321f348..b23e78c 100644 --- a/awsapi/pom.xml +++ b/awsapi/pom.xml @@ -93,6 +93,14 @@ <build> <defaultGoal>install</defaultGoal> <sourceDirectory>src</sourceDirectory> + <resources> + <resource> + <directory>src</directory> + <excludes> + <exclude>**/*.java</exclude> + </excludes> + </resource> + </resources> <!-- <testSourceDirectory>test</testSourceDirectory> <plugins> http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/590f52df/console-proxy/pom.xml ---------------------------------------------------------------------- diff --git a/console-proxy/pom.xml b/console-proxy/pom.xml index 052bd5a..5a42c2c 100644 --- a/console-proxy/pom.xml +++ b/console-proxy/pom.xml @@ -46,5 +46,13 @@ <build> <defaultGoal>install</defaultGoal> <sourceDirectory>src</sourceDirectory> + <resources> + <resource> + <directory>certs</directory> + <excludes> + <exclude>realhostip.csr</exclude> + </excludes> + </resource> + </resources> </build> </project> http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/590f52df/utils/pom.xml ---------------------------------------------------------------------- diff --git a/utils/pom.xml b/utils/pom.xml index 4bab5f9..a9b276a 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -127,5 +127,10 @@ </executions> </plugin> </plugins> + <resources> + <resource> + <directory>certs</directory> + </resource> + </resources> </build> </project>
