DHTMLX JavaPlanner maven dependency

折月煮酒 提交于 2020-01-03 00:40:52

问题


Is there any maven dependency for DHTMLX javaCalendar and/or DHTMLX JavaPlanner?

Thanks


回答1:


Solved!

There are 2 cases that you need to issue Maven’s command to include a jar into the Maven local repository manually.

1.The jar you want to use doesn’t exist in the Maven center repository.
2.You created a custom jar, and need to use for another Maven project.

Please Check the link. mkyong http://www.mkyong.com/maven/how-to-include-library-manully-into-maven-local-repository/

Thanks mkyong.




回答2:


In Netbeans:

1.Add maven dependency in you pom file.

    <dependency>
        <groupId>com.dhtmlx</groupId>
        <artifactId>javaplanner</artifactId>
        <version>1.5</version>
    </dependency>

2.Clean Build your project

3.You will see warning sign in your javaplanner1.5 in your maven dependencies list.

4.Right Click and select 'Manually Install Artifact' and select the downloaded jar file.

5.Select 'install locally' and you are done.



来源:https://stackoverflow.com/questions/20745666/dhtmlx-javaplanner-maven-dependency

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!