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 89611de40910dbea86e4562c783d5af56eedf3c1 Author: Robert Munteanu <[email protected]> AuthorDate: Mon Jul 8 15:16:11 2013 +0000 SLING-2948 - Servlet archetype - set encoding for generated project This prevents build warnings from being issued. git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/maven/archetypes/servlet@1500794 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/resources/archetype-resources/pom.xml | 4 ++++ src/test/resources/projects/normal/reference/pom.xml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/src/main/resources/archetype-resources/pom.xml b/src/main/resources/archetype-resources/pom.xml index 6e09b4f..c0e336a 100644 --- a/src/main/resources/archetype-resources/pom.xml +++ b/src/main/resources/archetype-resources/pom.xml @@ -104,6 +104,10 @@ <scope>test</scope> </dependency> </dependencies> + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> + </properties> <profiles> <profile> <id>autoInstallBundle</id> diff --git a/src/test/resources/projects/normal/reference/pom.xml b/src/test/resources/projects/normal/reference/pom.xml index f35f9e8..ffa8542 100644 --- a/src/test/resources/projects/normal/reference/pom.xml +++ b/src/test/resources/projects/normal/reference/pom.xml @@ -104,6 +104,10 @@ <scope>test</scope> </dependency> </dependencies> + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> + </properties> <profiles> <profile> <id>autoInstallBundle</id> -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
