Thanks Timo. I'm compiling on a mac using maven. This has not been a problem
before, so I simply didn't think of it. 

My java source files are stored in iso-8859-1 (which gives less problems
when interacting with people using windows). I specified the encoding in the
maven pom-file, and that solved the problem.

It's done like this, in case anyone else has this problem:

<project..>
[...]
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <encoding>iso-8859-15</encoding>
                </configuration>
            </plugin>
[...]
</project>
-- 
View this message in context: 
http://www.nabble.com/Problems-with-character-encoding-of-text-from-data-model-tp18596015p18611341.html
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to