From: Eric C. <ecr...@us...> - 2006-09-17 17:42:27
|
User: ecrutchfield Date: 06/09/17 10:42:26 Modified: andromdapp/projects/csharp/maven2/src/main/resources/templates/csharp/maven2/web pom.xml.vsl Log: add extra 'clean' info for VS2005 solutions Revision Changes Path 1.2 +17 -0 plugins/andromdapp/projects/csharp/maven2/src/main/resources/templates/csharp/maven2/web/pom.xml.vsl Index: pom.xml.vsl =================================================================== RCS file: /cvsroot/andromdaplugins/plugins/andromdapp/projects/csharp/maven2/src/main/resources/templates/csharp/maven2/web/pom.xml.vsl,v retrieving revision 1.1 retrieving revision 1.2 diff -u -w -r1.1 -r1.2 --- pom.xml.vsl 5 Mar 2006 06:16:54 -0000 1.1 +++ pom.xml.vsl 17 Sep 2006 17:42:26 -0000 1.2 @@ -37,6 +37,23 @@ <groupId>org.andromda.maven.plugins</groupId> <artifactId>andromda-multi-source-plugin</artifactId> </plugin> +#if($visualStudioVersion.equals("2005")) + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-clean-plugin</artifactId> + <version>2.1</version> + <configuration> + <filesets> + <fileset> + <directory>${basedir}/App_Code</directory> + <includes> + <include>target</include> + </includes> + </fileset> + </filesets> + </configuration> + </plugin> +#end </plugins> </build> </project> \ No newline at end of file |