[jbpm-cvs] jbpm.3/designer/jpdl/org.jbpm.gd.jpdl.build ...

Koen Aers <[email protected]>
Newsgroups gmane.comp.jbpm.cvs
Message-ID <[email protected]>
  User: kaers   
  Date: 08/07/17 08:28:37

  Modified:    designer/jpdl/org.jbpm.gd.jpdl.build   Tag:
                        branch_jbpm_jpdl_gpd_3_1_x dependencies.properties
                        build.xml
  Log:
  eclipse 3.4
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.5.2.3   +9 -0      jbpm.3/designer/jpdl/org.jbpm.gd.jpdl.build/Attic/dependencies.properties
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: dependencies.properties
  ===================================================================
  RCS file: /cvsroot/jbpm/jbpm.3/designer/jpdl/org.jbpm.gd.jpdl.build/Attic/dependencies.properties,v
  retrieving revision 1.5.2.2
  retrieving revision 1.5.2.3
  diff -u -b -r1.5.2.2 -r1.5.2.3
  --- dependencies.properties	17 Jul 2008 09:45:47 -0000	1.5.2.2
  +++ dependencies.properties	17 Jul 2008 12:28:37 -0000	1.5.2.3
  @@ -7,6 +7,8 @@
   # Eclipse filename and version info
   lib.eclipse.emf.version=2.4.0
   lib.eclipse.emf.filename=emf-runtime-2.4.0.zip
  +lib.eclipse.xsd.version=2.4.0
  +lib.eclipse.xsd.filename=xsd-runtime-2.4.0.zip
   lib.eclipse.gef.version=3.4
   lib.eclipse.gef.filename=GEF-SDK-3.4.0.zip
   lib.eclipse.dtp.version=1.6
  @@ -23,6 +25,13 @@
   lib.eclipse.emf.local=${local.repository}/${lib.eclipse.emf.path}
   lib.eclipse.emf.remote=${remote.repository}/${lib.eclipse.emf.path}
   
  +# Eclipse XSD location and license info
  +lib.eclipse.xsd.license=epl-1.0
  +lib.eclipse.xsd.dir=eclipse/xsd/${lib.eclipse.xsd.version}
  +lib.eclipse.xsd.path=${lib.eclipse.xsd.dir}/${lib.eclipse.xsd.filename}
  +lib.eclipse.xsd.local=${local.repository}/${lib.eclipse.xsd.path}
  +lib.eclipse.xsd.remote=${remote.repository}/${lib.eclipse.xsd.path}
  +
   # Eclipse GEF location and license info
   lib.eclipse.gef.license=epl-1.0
   lib.eclipse.gef.dir=eclipse/gef/${lib.eclipse.gef.version}
  
  
  
  1.59.2.9  +10 -3     jbpm.3/designer/jpdl/org.jbpm.gd.jpdl.build/Attic/build.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jbpm/jbpm.3/designer/jpdl/org.jbpm.gd.jpdl.build/Attic/build.xml,v
  retrieving revision 1.59.2.8
  retrieving revision 1.59.2.9
  diff -u -b -r1.59.2.8 -r1.59.2.9
  --- build.xml	17 Jul 2008 10:05:18 -0000	1.59.2.8
  +++ build.xml	17 Jul 2008 12:28:37 -0000	1.59.2.9
  @@ -29,6 +29,7 @@
     	<and>
      	  <available file="${eclipse.home}/${lib.eclipse.sdk.filename}.txt"/>
      	  <available file="${eclipse.home}/${lib.eclipse.emf.filename}.txt"/>
  +      <available file="${eclipse.home}/${lib.eclipse.xsd.filename}.txt"/>
      	  <available file="${eclipse.home}/${lib.eclipse.gef.filename}.txt"/>
      	  <available file="${eclipse.home}/${lib.eclipse.wtp.filename}.txt"/>
      	  <available file="${eclipse.home}/${lib.eclipse.dtp.filename}.txt"/>
  @@ -41,6 +42,7 @@
     <condition property="eclipse.locally.available">
     	<and>
     	  <available file="${lib.eclipse.emf.local}"/>
  +      <available file="${lib.eclipse.xsd.local}"/>
     	  <available file="${lib.eclipse.gef.local}"/>
     	  <available file="${lib.eclipse.sdk.local}"/>
     	  <available file="${lib.eclipse.dtp.local}"/>
  @@ -81,13 +83,15 @@
     	<mkdir dir="${eclipse.home}" />
     	<touch file="${eclipse.home}/${lib.eclipse.sdk.filename}.txt" />
     	<touch file="${eclipse.home}/${lib.eclipse.gef.filename}.txt" />
  +	<touch file="${eclipse.home}/${lib.eclipse.xsd.filename}.txt" />
   	<touch file="${eclipse.home}/${lib.eclipse.emf.filename}.txt" />
     	<touch file="${eclipse.home}/${lib.eclipse.wtp.filename}.txt" />
     	<touch file="${eclipse.home}/${lib.eclipse.dtp.filename}.txt" />
     	<unzip src="${lib.eclipse.sdk.local}" dest="${eclipse.home}/.." />
  +    <unzip src="${lib.eclipse.emf.local}" dest="${eclipse.home}/.." />
  +    <unzip src="${lib.eclipse.xsd.local}" dest="${eclipse.home}/.." />
       <unzip src="${lib.eclipse.wtp.local}" dest="${eclipse.home}/.." />
       <unzip src="${lib.eclipse.gef.local}" dest="${eclipse.home}/.." />
  -    <unzip src="${lib.eclipse.emf.local}" dest="${eclipse.home}/.." />
       <unzip src="${lib.eclipse.dtp.local}" dest="${eclipse.home}/.." /> 
    	<copy tofile="${eclipse.home}/plugins/org.eclipse.equinox.launcher.jar">
    	  <fileset dir="${eclipse.home}/plugins"
  @@ -96,6 +100,9 @@
     </target>
   	
     <target name="get.eclipse" unless="eclipse.locally.available">
  +    <mkdir dir="${local.repository}/${lib.eclipse.xsd.dir}" />
  +    <get src="${lib.eclipse.xsd.remote}" dest="${lib.eclipse.xsd.local}" usetimestamp="true" ignoreerrors="true" />
  +    <get src="${remote.license.dir}/${lib.eclipse.xsd.license}.txt" dest="${lib.eclipse.xsd.local}.license.txt" usetimestamp="true" ignoreerrors="true" />
       <mkdir dir="${local.repository}/${lib.eclipse.emf.dir}" />
       <get src="${lib.eclipse.emf.remote}" dest="${lib.eclipse.emf.local}" usetimestamp="true" ignoreerrors="true" />
       <get src="${remote.license.dir}/${lib.eclipse.emf.license}.txt" dest="${lib.eclipse.emf.local}.license.txt" usetimestamp="true" ignoreerrors="true" />
  
  
  

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.