Я пытаюсь настроить мой установленный maven 3.0.3 в кодировке Cp1252.Можно ли изменить кодировку БЕЗ редактирования одного из файлов pom.xml?возможно создание профиля для компилятора-плагина в settings.xml?Если да, то как это сделать?Следующее не сработало:
<settings>
...
<profiles>
<profile>
<id>encoding</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<encoding>Cp1252</encoding>
</configuration>
</plugin>
</build>
</profile>
</profiles>
<activeProfiles>
<activeProfile>encoding</activeProfile>
</activeProfiles>
</settings>