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

How can I make scala-maven-plugin recognize Cp1252 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 不切实际。

我使用了这个解决方案:

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

不确定它是否适合您。

文档中的内容适用于

The -encoding argument for the Java compiler. (when using incremental compiler).

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

Gooseman的解是对的:

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