在liferay-plugin-package.properties中有Portal Dependency部分,我可以在其中添加jar到portlet。
我想添加gson-2.2.4和jersey-bundle但这些jar不在列表中。我想将这个罐子添加到我的项目中,可能使用常春藤。我的目标是使用maven风格,所以编写依赖项和常春藤下载jar。我试过添加
< dependency name="gson" org="com.google.code.gson" rev="2.2.4" />
< dependency name="jersey-bundle" org="com.sun.jersey" rev="1.18.1" />
进入ivy.xml但没有成功。
答案 0 :(得分:0)
只有常春藤才能在本地下载罐子。现在继续导航到liferay-plugin-sdk目录并从.ivy文件夹中复制jar文件,然后粘贴到<Your-Project-portlet>/lib
。转到项目属性,然后转到Java Build Path。在“库”标签中,点击Add JARs
并导航至<your-project>/lib
并添加它们。