maven将一个本地类目录添加到模块的类路径中

时间:2012-03-29 12:26:12

标签: java maven classpath

我知道这有点超出了maven的范围,但是我需要将一个带有编译类的本地目录添加到模块的类路径中。 我看到了Maven: add a folder or jar file into current classpath,但这只适用于一个罐子。

我需要一个类似的解决方案,但在本地文件系统的目录中编译类。这甚至可能吗?

THX!

1 个答案:

答案 0 :(得分:1)

经过一些广泛的研究,我发现我最好的选择是使用maven-antrun-plugin,在进程资源阶段,从类中生成一个jar,并将其作为系统范围和systemPath的依赖项添加到jar中我刚刚建成。

Pom片段:

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.6</version>
<executions>
    <execution>
        <phase>process-resources</phase>
        <goals>
            <goal>run</goal>
        </goals>
        <configuration>
            <target name="mpower.jar">
                <taskdef resource="net/sf/antcontrib/antcontrib.properties" classpath="${env.USERPROFILE}\.m2\repository\ant-contrib\ant-contrib\1.0b3\ant-contrib-1.0b3.jar"/>

                <if>
                    <available file="${classes.dir}" type="dir"/>
                    <then>
                        <jar destfile="${env.TEMP}\classes.jar">
                            <fileset dir="${classes.dir}\classes">
                                <include name="**/**"/>
                            </fileset>
                        </jar>
                    </then>
                    <else>
                        <fail message="${classes.dir} not found. Skipping jar creation"/>
                    </else>
                </if>
            </target>
        </configuration>
    </execution>
</executions>

...

    <dependency>
        <groupId>ant-contrib</groupId>
        <artifactId>ant-contrib</artifactId>
        <version>1.0b3</version>
    </dependency>
    <dependency>
        <groupId>com.my.code</groupId>
        <artifactId>classes.jar</artifactId>
        <version>1.1</version>
        <scope>system</scope>
        <systemPath>${env.TEMP}\classes.jar</systemPath>
    </dependency>