运行 在 pom 中导入的依赖项中具有 main() 方法的 Maven 项目

Run maven project with main() method in imported dependency in pom

有没有办法在 maven 项目的 pom 中导入依赖项。然后我们打包和运行jar的时候,Main()方法是我们引入的依赖提供的,而不是我们自己开发的项目中提供的。

有没有可能做到?基本上,依赖项会从类路径加载我开发的项目,并使用我实现的一些它已知的接口。

我还没有尝试过,但您可以使用 maven-jar-plugin 在清单中简单地指定主要 class,如下所示:

<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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.maventest</groupId>
    <artifactId>aproject</artifactId>
    <packaging>jar</packaging>
    <version>1.0-SNAPSHOT</version>
    <name>aproject</name>
    <url>http://maven.apache.org</url>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <configuration>
                    <archive>
                        <manifest>
                            <mainClass>com.maventest.App</mainClass>
                        </manifest>
                    </archive>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

如果这不起作用,您始终可以提供自己的 class,从所需的 class.

导入并调用主要方法

你能试试这个吗:

<plugins>
        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>exec-maven-plugin</artifactId>
             <dependencies>
             <dependency>
                <!--  Dependency which includes the main class -->
             </dependency>
             </dependencies>
            <configuration>
                <mainClass>absolute.name.MainClass</mainClass>
            </configuration>
        </plugin>
    </plugins>