This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to annotated tag sling-servlet-archetype-1.0.2 in repository https://gitbox.apache.org/repos/asf/sling-servlet-archetype.git
commit 72dd51825a970444bdbc7abe3d4593b75c08bf50 Author: Justin Edelson <[email protected]> AuthorDate: Wed Jun 6 13:05:42 2012 +0000 SLING-2338 - adding antrum to fix crlfs when a checkout is done under cygwin on windows git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/maven/archetypes/servlet@1346871 13f79535-47bb-0310-9956-ffa450edef68 --- pom.xml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/pom.xml b/pom.xml index 8d97cfc..30cfa18 100644 --- a/pom.xml +++ b/pom.xml @@ -17,6 +17,7 @@ specific language governing permissions and limitations under the License. --> + <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> @@ -67,6 +68,23 @@ <version>2.2</version> <extensions>true</extensions> </plugin> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <executions> + <execution> + <id>fix-crlfs</id> + <phase>process-test-resources</phase> + <configuration> + <target> + <fixcrlf srcdir="${project.build.testOutputDirectory}" /> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build> -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
