如何让scala-maven-plugin识别Cp1252编码?

时间:2015-01-05 20:23:08

标签: scala maven encoding

我有几个使用Cp1252编码的maven模块。在将scala添加到其中一个模块之前,我对此编码没有任何问题。 scala-maven-plugin忽略project.build.sourceEncoding属性并尝试解析源文件,就好像它们是UTF-8一样。

我尝试将编码添加到插件配置中:

<plugin>
    <groupId>net.alchim31.maven</groupId>
    <artifactId>scala-maven-plugin</artifactId>
    <version>3.1.6</version>
    <executions>
        <execution>
            <id>scala-compile-first</id>
            <phase>process-resources</phase>
            <goals>
                <goal>add-source</goal>
                <goal>compile</goal>
            </goals>
        </execution>
        <execution>
            <id>scala-test-compile</id>
            <phase>process-test-resources</phase>
            <goals>
                <goal>testCompile</goal>
            </goals>
        </execution>
    </executions>
    <configuration>
        <encoding>Cp1252</encoding>
    </configuration>
</plugin>

当这不起作用时,我也尝试将编码添加到执行中:

<plugin>
    <groupId>net.alchim31.maven</groupId>
    <artifactId>scala-maven-plugin</artifactId>
    <version>3.1.6</version>
    <executions>
        <execution>
            <id>scala-compile-first</id>
            <phase>process-resources</phase>
            <goals>
                <goal>add-source</goal>
                <goal>compile</goal>
            </goals>
            <configuration>
                <sourceDir>${basedir}/scala</sourceDir>
                <encoding>Cp1252</encoding>
            </configuration>
        </execution>
        <execution>
            <id>scala-test-compile</id>
            <phase>process-test-resources</phase>
            <goals>
                <goal>testCompile</goal>
            </goals>
            <configuration>
                <sourceDir>${basedir}/scala</sourceDir>
                <encoding>Cp1252</encoding>
            </configuration>
        </execution>
    </executions>
    <configuration>
        <encoding>Cp1252</encoding>
    </configuration>
</plugin>

有问题的模块有1454个源文件,因此将模块转换为使用UTF-8是不切实际的。

2 个答案:

答案 0 :(得分:1)

我使用了这个解决方案:

<configuration>
    <args>
    <arg>-encoding</arg>
    <arg>${project.build.sourceEncoding}</arg>
    </args>
</configuration>

不确定它是否适合你。

答案 1 :(得分:0)

来自文档的

  

Java编译器的-encoding参数。 (使用增量编译器时)。

所以它不适合你的情况(不是增量+而不是java)。

Gooseman的解决方案是正确的:

<configuration>
  <args>
    <arg>-encoding</arg>
    <arg>${project.build.sourceEncoding}</arg>
  </args>
</configuration>