diff options
author | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2010-11-14 21:35:42 +0000 |
---|---|---|
committer | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2010-11-14 21:35:42 +0000 |
commit | fd73129351c15dc30e78504d1504073a45c24ca2 (patch) | |
tree | 76940a72913fb142a268f402550436014517ee98 /sca-java-1.x/branches | |
parent | 899655a7c9341f4886178e9cb36b04327ef8ac3f (diff) |
TUSCANY-3762: Fix comments in pom.xml files and clean up handling of filtered resource files
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1035075 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-1.x/branches')
3 files changed, 10 insertions, 10 deletions
diff --git a/sca-java-1.x/branches/sca-java-1.6.1/tools/eclipse/features/core/pom.xml b/sca-java-1.x/branches/sca-java-1.6.1/tools/eclipse/features/core/pom.xml index 6033b273d6..f1ec9ec817 100644 --- a/sca-java-1.x/branches/sca-java-1.6.1/tools/eclipse/features/core/pom.xml +++ b/sca-java-1.x/branches/sca-java-1.6.1/tools/eclipse/features/core/pom.xml @@ -57,7 +57,7 @@ <artifactId>maven-resources-plugin</artifactId> <version>2.4.3</version> <executions> - <!-- TUSCANY-xxxx: Copy resource files that need to be filtered --> + <!-- TUSCANY-3762: Copy resource files that need to be filtered --> <execution> <id>copy-filtered-resources</id> <phase>generate-resources</phase> @@ -93,12 +93,12 @@ <artifactId>maven-clean-plugin</artifactId> <configuration> <filesets> - <!-- TUSCANY-xxxx: Delete copied filtered resource files --> + <!-- TUSCANY-3762: Delete copied filtered resource files --> <fileset> <directory>${basedir}</directory> <includes> <include>NOTICE</include> - <include>META-INF/MANIFEST.MF</include> + <include>META-INF/**</include> <include>feature.xml</include> </includes> </fileset> diff --git a/sca-java-1.x/branches/sca-java-1.6.1/tools/eclipse/plugins/core/pom.xml b/sca-java-1.x/branches/sca-java-1.6.1/tools/eclipse/plugins/core/pom.xml index af3c204a40..6bb0a138d9 100644 --- a/sca-java-1.x/branches/sca-java-1.6.1/tools/eclipse/plugins/core/pom.xml +++ b/sca-java-1.x/branches/sca-java-1.6.1/tools/eclipse/plugins/core/pom.xml @@ -88,7 +88,7 @@ <artifactId>maven-resources-plugin</artifactId> <version>2.4.3</version> <executions> - <!-- TUSCANY-xxxx: Copy resource files that need to be filtered --> + <!-- TUSCANY-3762: Copy resource files that need to be filtered --> <execution> <id>copy-filtered-resources</id> <phase>generate-resources</phase> @@ -124,14 +124,14 @@ <artifactId>maven-clean-plugin</artifactId> <configuration> <filesets> - <!-- TUSCANY-xxxx: Delete copied filtered resource files --> + <!-- TUSCANY-3762: Delete copied filtered resource files --> <fileset> <directory>${basedir}</directory> <includes> <include>about.ini</include> <include>about_files/NOTICE</include> - <include>META-INF/MANIFEST.MF</include> - <include>org/apache/tuscany/sca/core/feature.version</include> + <include>META-INF/**</include> + <include>org/**</include> </includes> </fileset> </filesets> diff --git a/sca-java-1.x/branches/sca-java-1.6.1/tools/eclipse/site/updatesite/pom.xml b/sca-java-1.x/branches/sca-java-1.6.1/tools/eclipse/site/updatesite/pom.xml index 7a6f68cd47..105a80f520 100644 --- a/sca-java-1.x/branches/sca-java-1.6.1/tools/eclipse/site/updatesite/pom.xml +++ b/sca-java-1.x/branches/sca-java-1.6.1/tools/eclipse/site/updatesite/pom.xml @@ -65,7 +65,7 @@ <artifactId>maven-resources-plugin</artifactId> <version>2.4.3</version> <executions> - <!-- TUSCANY-xxxx: Copy resource files that need to be filtered --> + <!-- TUSCANY-3762: Copy resource files that need to be filtered --> <execution> <id>copy-filtered-resources</id> <phase>generate-resources</phase> @@ -112,13 +112,13 @@ <artifactId>maven-clean-plugin</artifactId> <configuration> <filesets> - <!-- TUSCANY-xxxx: Delete copied filtered resource files --> + <!-- TUSCANY-3762: Delete copied filtered resource files --> <fileset> <directory>${basedir}</directory> <includes> <include>site.xml</include> <include>NOTICE</include> - <include>src/main/assembly/updatesite.xml</include> + <include>src/**</include> </includes> </fileset> </filesets> |