用 Maven 构建 Java-Scala 混合项目

Posted hippiebaby

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用 Maven 构建 Java-Scala 混合项目相关的知识,希望对你有一定的参考价值。


<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>duan</groupId>
    <artifactId>mix</artifactId>
    <version>1.0-SNAPSHOT</version>

    <dependencies>
        <dependency>
            <groupId>org.scala-lang</groupId>
            <artifactId>scala-library</artifactId>
            <version>2.12.0</version>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <!-- scala compile  -->
            <plugin>
                <groupId>net.alchim31.maven</groupId>
                <artifactId>scala-maven-plugin</artifactId>
                <version>3.3.2</version>
                <executions>
                    <execution>
                        <!-- 必须要写 id -->
                        <id>scala-main-compile</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>
            </plugin>

            <!-- shade package -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-shade-plugin</artifactId>
                <version>3.1.1</version>
                <!-- 设置不生成 dependency-reduced-pom.xml,默认生成-->
                <configuration>
                    <createDependencyReducedPom>false</createDependencyReducedPom>
                </configuration>
                <executions>
                    <execution>
                        <!-- 将 shade:shade 绑定到 package 阶段 -->
                        <phase>package</phase>
                        <goals>
                            <goal>shade</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
    
</project>

以上是关于用 Maven 构建 Java-Scala 混合项目的主要内容,如果未能解决你的问题,请参考以下文章

Maven - 使用依赖项构建 [重复]

Play 2.0 和 SNAPSHOT 依赖项

使用 kotlin-maven-plugin 构建的 jar 中的 Kotlin 类

Intellij 处理混合项目(maven+gradle)

涉及 BoxedUnit/void 返回类型的 Java-Scala 互操作问题

涉及 BoxedUnit/void 返回类型的 Java-Scala 互操作问题