如何从maven项目外部链接源代码并使用该链接源进行进一步开发。

时间:2015-04-09 10:06:04

标签: java eclipse maven-2 pom.xml m2eclipse

我的问题类似于link source using maven

如果我按照上面的问题回答我可以在我的最终战争文件中有一些额外的类,这些类将由maven生成。

但我的要求是,我的IDE(Eclipse)应将其视为当前项目中的附加源。所以我将有一个额外的源文件夹(不手动添加)。此附加源包含一些将由当前项目使用的公共类。

这里我不想手动添加这个源文件夹。让maven做这项工作,这样我就可以为战争中的一些常见类和相同的源类提供额外的源代码。

有人可以提供帮助。提前谢谢。

1 个答案:

答案 0 :(得分:0)

添加来源可以使用以下标记

<repositories>
    <repository>
        <id>file.repo</id>
        <url>file://url/repo</url>
    </repository>
</repositories>

或者您也可以添加

<pluginRepositories>
     <pluginRepository>
           <id></id>
           <name></name>
           <url>*your source*</url>
           <releases><enabled>true</enabled></releases>
           <snapshots><enabled>true</enabled></snapshots>
     </pluginRepository>
</pluginRepositories>