[jboss-cvs] jboss-portal/api ...

Julien Viet julien at jboss.com
Mon Jul 31 15:29:44 EDT 2006


  User: julien  
  Date: 06/07/31 15:29:44

  Modified:    api      build.xml
  Log:
  - moved the portal api in the api module in order to have a standalone jar
  - JBPORTAL-631 : Try to move org.jboss.portlet package to the api module
  - IPC support in 2.4 (only for local portlets)
  
  Revision  Changes    Path
  1.6       +7 -3      jboss-portal/api/build.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/api/build.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -b -r1.5 -r1.6
  --- build.xml	16 Jul 2006 23:38:53 -0000	1.5
  +++ build.xml	31 Jul 2006 19:29:44 -0000	1.6
  @@ -8,7 +8,7 @@
      <!ENTITY targets    SYSTEM "../tools/etc/buildfragments/targets.ent">
   ]>
   
  -<!-- $Id: build.xml,v 1.5 2006/07/16 23:38:53 julien Exp $ -->
  +<!-- $Id: build.xml,v 1.6 2006/07/31 19:29:44 julien Exp $ -->
   
   <!--+======================================================================+-->
   <!--| JBoss Portal (The OpenSource Portal) Build File                      |-->
  @@ -60,7 +60,7 @@
      <target name="configure" unless="configure.disable">
   
         <!-- Override the javadoc packages to javax.portlet.* -->
  -      <property name="javadoc.packages" value="javax.portlet.*"/>
  +      <property name="javadoc.packages" value="javax.portlet.*,org.jboss.portal.*"/>
   
         <!-- Configure thirdparty libraries -->
         &libraries;
  @@ -121,7 +121,11 @@
         <mkdir dir="${build.lib}"/>
   
         <jar jarfile="${build.lib}/portlet-api-lib.jar">
  -         <fileset dir="${build.classes}" excludes="org/jboss/portal/test/**"/>
  +         <fileset dir="${build.classes}" includes="javax/portlet/**"/>
  +      </jar>
  +
  +      <jar jarfile="${build.lib}/portal-api-lib.jar">
  +         <fileset dir="${build.classes}" includes="org/jboss/portal/**"/>
         </jar>
   
      </target>
  
  
  



More information about the jboss-cvs-commits mailing list