Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to have the encoding of my project's file to be set to UTF-8.

Following maven FAQ answer, I set the project.build.sourceEncoding property to UTF-8. unfortunatly, it has no effect.

Then, by looking at a m2eclipse JIRA, I tried a workaround by defining compiler plugin sourceEncoding, but it neither worked, as I try to do that in a separate module parent pom.

Then, what is the solution to ensure my files are all in UTF-8 from maven ?

Thanks.

share|improve this question

2 Answers

up vote 8 down vote accepted

(A bit late) Solution / workaround I'm using to avoid inheriting MacRoman.

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-eclipse-plugin</artifactId>
        <version>2.6</version>
        <configuration>
          <additionalConfig>
            <file>
              <name>.settings/org.eclipse.core.resources.prefs</name>
              <content>
                <![CDATA[eclipse.preferences.version=1${line.separator}encoding/<project>=${project.build.sourceEncoding}${line.separator}]]>
              </content>
            </file>
          </additionalConfig>
        </configuration>
      </plugin>
    </plugins>
  </build>

Credits to Steven Cummings.

share|improve this answer

Define Eclipse project encoding as UTF-8 from Maven

I don't know if you saw MNGECLIPSE-1782 but this is currently not supported, m2eclipse doesn't derive the project encoding from your POM. You'll have to set up the encoding manually under Eclipse (which can be done globally for the workspace via Preferences > General > Workspace).

share|improve this answer
So there absolutely no workaround except the tedious manual process of setting file encoding on each Eclipse workspace where one have to work ? – Riduidel Oct 28 '10 at 14:55
@Riduidel: Well, the above Jira issue does mention a workaround: "writing an extension for org.maven.ide.eclipse.projectConfigurators extension point". – Pascal Thivent Oct 28 '10 at 14:58
@Pascal_Thivent Was thinking they integrated this workaround in m2eclipse ... – Riduidel Nov 2 '10 at 10:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.