我已经下载了tnt4j-api-final-all.jar和TNT4j.jar并保存在Grails应用程序的lib
文件夹中。但现在要求已经改变了我需要给这两个罐子maven中心。但我发现没有maven所以最好的方法是什么。如何将这些插件上传到Maven?
答案 0 :(得分:0)
我搜索了这些工件,但无法在任何Maven公共存储库中找到它们。
您需要做的是使用maven-install-plugin
:
mvn install:install-file -Dfile=path-to-artifact-jar -DgroupId=[groupId] -DartifactId=[artifactId] -Dversion=[version] -Dpackaging=jar -DgeneratePom=true
然后您可以将这些依赖项用于:
<dependency>
<groupId>[groupId]</groupId>
<artifactId>[artifactId]</artifactId>
<version>[version]</version>
</dependency>
另一个解决方案是使用像Artifactory这样的私有存储库管理器并在那里上传工件。