Repository: maven-archetype Updated Branches: refs/heads/master 81efe27c7 -> cae0a37d2
Add ignoreEOLStyle to test pom.xmls Sometimes git screws up with line endings so it's better to compare the contents of the files with ignoreEOLStyle=true set. Project: http://git-wip-us.apache.org/repos/asf/maven-archetype/repo Commit: http://git-wip-us.apache.org/repos/asf/maven-archetype/commit/cae0a37d Tree: http://git-wip-us.apache.org/repos/asf/maven-archetype/tree/cae0a37d Diff: http://git-wip-us.apache.org/repos/asf/maven-archetype/diff/cae0a37d Branch: refs/heads/master Commit: cae0a37d28130b9d40679a122952dcec0fda4f9c Parents: 81efe27 Author: Petar Tahchiev <[email protected]> Authored: Sat Aug 13 23:57:46 2016 +0300 Committer: Petar Tahchiev <[email protected]> Committed: Sat Aug 13 23:57:46 2016 +0300 ---------------------------------------------------------------------- .../it/build-archetype-and-run-its-with-existing-parent/pom.xml | 1 + maven-archetype-plugin/src/it/build-archetype/pom.xml | 1 + maven-archetype-plugin/src/it/property-setting-cli/pom.xml | 3 +++ 3 files changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/maven-archetype/blob/cae0a37d/maven-archetype-plugin/src/it/build-archetype-and-run-its-with-existing-parent/pom.xml ---------------------------------------------------------------------- diff --git a/maven-archetype-plugin/src/it/build-archetype-and-run-its-with-existing-parent/pom.xml b/maven-archetype-plugin/src/it/build-archetype-and-run-its-with-existing-parent/pom.xml index 4fff62d..ecc4f16 100644 --- a/maven-archetype-plugin/src/it/build-archetype-and-run-its-with-existing-parent/pom.xml +++ b/maven-archetype-plugin/src/it/build-archetype-and-run-its-with-existing-parent/pom.xml @@ -48,6 +48,7 @@ under the License. <configuration> <settingsFile>${basedir}/test-settings.xml</settingsFile> <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath> + <ignoreEOLStyle>true</ignoreEOLStyle> </configuration> </plugin> http://git-wip-us.apache.org/repos/asf/maven-archetype/blob/cae0a37d/maven-archetype-plugin/src/it/build-archetype/pom.xml ---------------------------------------------------------------------- diff --git a/maven-archetype-plugin/src/it/build-archetype/pom.xml b/maven-archetype-plugin/src/it/build-archetype/pom.xml index d0970af..b24c297 100644 --- a/maven-archetype-plugin/src/it/build-archetype/pom.xml +++ b/maven-archetype-plugin/src/it/build-archetype/pom.xml @@ -48,6 +48,7 @@ under the License. <configuration> <settingsFile>${basedir}/test-settings.xml</settingsFile> <localRepositoryPath>${basedir}/target/local-repo</localRepositoryPath> + <ignoreEOLStyle>true</ignoreEOLStyle> </configuration> </plugin> http://git-wip-us.apache.org/repos/asf/maven-archetype/blob/cae0a37d/maven-archetype-plugin/src/it/property-setting-cli/pom.xml ---------------------------------------------------------------------- diff --git a/maven-archetype-plugin/src/it/property-setting-cli/pom.xml b/maven-archetype-plugin/src/it/property-setting-cli/pom.xml index 8e06204..42fec0c 100644 --- a/maven-archetype-plugin/src/it/property-setting-cli/pom.xml +++ b/maven-archetype-plugin/src/it/property-setting-cli/pom.xml @@ -45,6 +45,9 @@ under the License. <plugin> <artifactId>maven-archetype-plugin</artifactId> <version>@project.version@</version> + <configuration> + <ignoreEOLStyle>true</ignoreEOLStyle> + </configuration> </plugin> </plugins> </pluginManagement>
