0 Replies Latest reply on Jul 4, 2009 9:47 AM by piergiorgiolucidi

    Maven dependencies refactoring

    piergiorgiolucidi

      Today I will commit the latest refactoring dedicated to Maven 2 poms.
      Now all the dependences are taken from JBoss public Maven repository.

      Only two dependencies doesn't exist in the public repo and you must to install these in your local maven repo in the following way:

      To build this project you need to have manually installed
      in your local Maven repo 2 libraries from jboss-portal.sar/lib:
      
      portal-api-lib.jar
      jboss-portlet-api-lib.jar
      
      You can execute these Maven commands to install these in your local repo from jboss-portal.sar/lib directory:
      
      mvn install:install-file -DgroupId=jboss -DartifactId=portal-api-lib -Dversion=2.7.1 -Dpackaging=jar -Dfile=%PORTAL_HOME%\jboss-portal.sar\lib\portal-api-lib.jar
      
      mvn install:install-file -DgroupId=jboss -DartifactId=jboss-portlet-api-lib -Dversion=1.0 -Dpackagin g=jar -Dfile=%PORTAL_HOME%\jboss-portal.sar\lib\jboss-portlet-api-lib.jar
      


      Hope this helps.