GIT clone and checkout eclipselink.runtime
git clone https://.../eclipselink.runtime.git
git checkout -b testing tag/2.6.5
POM.xml中的版本是<version>2.6.5-SNAPSHOT</version>
???
尝试将eclipselink.jar添加到本地存储库中:
mvn install:install-file -Dfile=eclipselink.jar
-DgroupId=org/eclipse/persistence -DartifactId=eclipselink
-Dversion=2.6.5 -Dpackaging=jar
错误:您指定的目标需要执行项目,但此目录中没有POM
是否有用于将eclipselink jar安装到本地存储库的ant / maven目标?
答案 0 :(得分:0)
您需要将eclipse链接添加到您的pom文件
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>eclipselink</artifactId>
<version>2.7.0</version>
</dependency>