details:   https://code.openbravo.com/erp/devel/pi/rev/8a37ee35c54f
changeset: 32767:8a37ee35c54f
user:      Stefan Hühner <stefan.huehner <at> openbravo.com>
date:      Sun Jul 09 14:12:15 2017 +0200
summary:   [build-cleanup] Remove ant javadoc targets from 
src-core,src-trl,src-wad

This removes the following ant calls from main build.xml file:
- core.docs, wad.docs, trl.docs

Javadoc for all three items is included in main ant generate.java.doc target
already. src-wad + src-trl as very tied to Openbravo so not useful outside
of Openbravo project. src-core in theory could be used outside, but that will
be very hard, was never an official feature, and no known user is known.

Also each of the 3 target had matching eclipse .launch files which are also
removed as not useful with the ant targets.

Note:
The rm call to remove the docs subfolder where javadoc would be generated is
left in the files to cleanup any earlier created folder or javadoc.

details:   https://code.openbravo.com/erp/devel/pi/rev/76ea5b1d9df4
changeset: 32768:76ea5b1d9df4
user:      Stefan Hühner <stefan.huehner <at> openbravo.com>
date:      Sun Jul 09 14:15:12 2017 +0200
summary:   [build-cleanup] Remove internal unused debugging targets

internal src/build.xml has 2 targets sqlcmod and compileSqlcmod which re never
called anywhere. Apart they were already marked with FIXME -> only for
development should be removed.

This changes removes.

Note:
Checking in getAllModules did not find any reference in modules either.

details:   https://code.openbravo.com/erp/devel/pi/rev/392bba693482
changeset: 32769:392bba693482
user:      Stefan Hühner <stefan.huehner <at> openbravo.com>
date:      Sun Jul 09 14:27:29 2017 +0200
summary:   [build-cleanup] Remove extra copy.core.lib target (inlined into 
core.lib)

The main build.xml target core.lib after calling out to src-core/build.xml
does an antcall to another separate copy.core.lib target in the same main
build.xml file. That extra target is never used anywhere else.

Inline it into the main core.lib target to simplify the build file.

Note: getAllModules did not show any reference to it any module.
Note: As secondary effect this removes one occurance of the annoying:
  'Trying to override old definition of ...' messages because of the antcall
  removal.

details:   https://code.openbravo.com/erp/devel/pi/rev/5f147a9c2478
changeset: 32770:5f147a9c2478
user:      Stefan Hühner <stefan.huehner <at> openbravo.com>
date:      Sun Jul 09 14:34:48 2017 +0200
summary:   [build-cleanup] Remove some not needed mkdir calls

ant mkdir target does create any missing parent folders when creating a fodler.
That allows to remove some mkdir calls for such parent folders when we create
subfolder directly afterwards anyway.

details:   https://code.openbravo.com/erp/devel/pi/rev/4a0991bbc795
changeset: 32771:4a0991bbc795
user:      Stefan Hühner <stefan.huehner <at> openbravo.com>
date:      Sun Jul 09 15:12:25 2017 +0200
summary:   [build-cleanup] Simplify file copying

src/build.xml file has few places with several <copy> calls where source
and destination folder as identical and just the includes part differs.

Merge all those into single copy call with nested includes.

Both shorter & easier to read as well as reduces I/O and syscalls to not
need to iterate over the source folders several times.
Speedup is only noticable on slow disk systems though (i.e. sources on NFS)

details:   https://code.openbravo.com/erp/devel/pi/rev/03ee9b0ac0fe
changeset: 32772:03ee9b0ac0fe
user:      Stefan Hühner <stefan.huehner <at> openbravo.com>
date:      Sat Jul 15 17:25:34 2017 +0200
summary:   [build-cleanup] feature removal: eclipse specific ant targets

Code has a few eclipse specific ant targets which can be used directly from
inside eclipse and are slightly nicer to use (doing refresh + eclipse build)

However those have never been maintained for many years, duplicate quite some
logic of the build files.
So remove that hidden feature as part of getting build* xml files smaller and
maintainable.

details:   https://code.openbravo.com/erp/devel/pi/rev/5ec02ced52e4
changeset: 32773:5ec02ced52e4
user:      Stefan Hühner <stefan.huehner <at> openbravo.com>
date:      Sat Jul 15 17:30:54 2017 +0200
summary:   [build-cleanup] Remove target to call obsolete update.database.mod

The update.database.mod effort was abandoned years ago and instead the normal
update.database has been made a lot faster.

This commit removes the ant target to be able to call update.database.mod.

Apart from the main build file also 2 internal related targets are removed,
one of which was not directly callable.

details:   https://code.openbravo.com/erp/devel/pi/rev/4c996fb3dcf3
changeset: 32774:4c996fb3dcf3
user:      Stefan Hühner <stefan.huehner <at> openbravo.com>
date:      Sat Sep 02 13:12:43 2017 +0200
summary:   [build-cleanup] remove unused posrcsrcmod target from internal 
build.xml

diffstat:

 build.xml                       |   81 ----------------------------
 create.database.launch          |   22 -------
 eclipse.compile.complete.launch |   22 -------
 eclipse.compile.launch          |   23 --------
 eclipse.install.source.launch   |   23 --------
 export.database.launch          |   22 -------
 src-core/build.xml              |   20 +------
 src-core/core.docs.launch       |   22 -------
 src-db/database/build.xml       |   39 -------------
 src-trl/build.xml               |   20 +------
 src-trl/eclipse.trl.lib.launch  |   21 -------
 src-trl/trl.docs.launch         |   22 -------
 src-wad/build.xml               |   11 +---
 src-wad/eclipse.wad.lib.launch  |   22 -------
 src-wad/wad.docs.launch         |   22 -------
 src/build.xml                   |  113 +++++++++------------------------------
 update.database.launch          |   22 -------
 17 files changed, 32 insertions(+), 495 deletions(-)

diffs (truncated from 794 to 300 lines):

diff -r 0e8f0e82bcd9 -r 4c996fb3dcf3 build.xml
--- a/build.xml Thu Sep 21 14:53:58 2017 +0200
+++ b/build.xml Sat Sep 02 13:12:43 2017 +0200
@@ -27,17 +27,10 @@
 compile.development: refer to compile.development target of src.
 compile.web: refer to compile.web: target of src.
 compile.web.development: refer to compile.web.development: target of src.
-eclipse.compile: refer to eclipse.compile target of src.
-eclipse.compile.complete: refer to eclipse.compile.complete target of src.
 compile.src: refer to compile.src target of src.
 war: refer to build.war target of src.
-core.docs: refer to doc target of src-core.
 core.lib: refer to build target of src-core.
-eclipse.wad.lib: refer to sqlc target of src-wad.
-wad.docs: refer to doc target of src-wad.
 wad.lib: refer to build target of src-wad.
-eclipse.trl.lib: refer to sqlc target of src-trl.
-trl.docs: refer to doc target of src-trl.
 trl.lib: refer to build target of src-trl.
 database.lib: refer to jar target of src-db.
 clean: refer to clean target of src.
@@ -47,7 +40,6 @@
 uninstallWebService: refer to uninstallWebService target of src.
 deploy.context: deploy the context into Tomcat using the manager
 install.source: install the ERP from sources (from subversion).
-eclipse.install.source: install the ERP from sources for eclipse (from 
Mercurial).
 create.database: refer to create.database target of database.
 update.database: refer to update.database target of database.
 create.database.script: refer to create.database.script target of database.
@@ -526,30 +518,6 @@
     <ant dir="${base.src}" target="compile.web.development" inheritAll="true" 
inheritRefs="true" />
   </target>
 
-  <target name="eclipse.compile" depends="init">
-    <fail unless="eclipse.running" message="eclipse.* tasks must be executed 
inside Eclipse" />
-    <ant dir="${base.src.core}" target="build.jar" inheritAll="true" 
inheritRefs="true" />
-    <ant dir="${base.src.trl}" target="build.jar" inheritAll="true" 
inheritRefs="true" />
-    <ant dir="${base.src.wad}" target="build.jar" inheritAll="true" 
inheritRefs="true" />
-    <ant dir="${base.src}" target="eclipse.compile" inheritAll="true" 
inheritRefs="true" />
-    <echo message="Refreshing project..." level="info" />
-    <eclipse.refreshLocal resource="openbravo" depth="infinite" />
-    <echo message="Building project..." level="info" />
-    <eclipse.incrementalBuild project="openbravo" kind="incremental" />
-  </target>
-
-  <target name="eclipse.compile.complete" depends="init">
-    <fail unless="eclipse.running" message="eclipse.* tasks must be executed 
inside Eclipse" />
-    <ant dir="${base.src.core}" target="build.jar" inheritAll="true" 
inheritRefs="true" />
-    <ant dir="${base.src.trl}" target="build.jar" inheritAll="true" 
inheritRefs="true" />
-    <ant dir="${base.src.wad}" target="build.jar" inheritAll="true" 
inheritRefs="true" />
-    <ant dir="${base.src}" target="eclipse.compile.complete" inheritAll="true" 
inheritRefs="true" />
-    <echo message="Refreshing project..." level="info" />
-    <eclipse.refreshLocal resource="openbravo" depth="infinite" />
-    <echo message="Building project..." level="info" />
-    <eclipse.incrementalBuild project="openbravo" kind="full" />
-  </target>
-
   <target name="compile.src.gen" depends="init">
     <ant dir="${base.src}" target="compile.src.gen" inheritAll="true" 
inheritRefs="true" />
   </target>
@@ -650,43 +618,15 @@
     <ant dir="${base.src}" target="build.war" inheritAll="true" 
inheritRefs="true" />
   </target>
 
-  <target name="core.docs" depends="init">
-    <ant dir="${base.src.core}" target="doc" inheritAll="true" 
inheritRefs="true" />
-  </target>
-
   <target name="core.lib" depends="init">
     <ant dir="${base.src.core}" target="build" inheritAll="true" 
inheritRefs="true" />
-    <antcall target="copy.core.lib" />
-  </target>
-
-  <target name="copy.core.lib">
     <copy file="${base.src.core}/lib/openbravo-core.jar" 
todir="${base.lib}/runtime" failonerror="false" />
   </target>
 
-  <target name="eclipse.wad.lib" depends="init">
-    <ant dir="${base.src.wad}" target="sqlc" inheritAll="true" 
inheritRefs="true" />
-    <eclipse.refreshLocal resource="OpenbravoWAD" depth="infinite" />
-    <eclipse.incrementalBuild project="OpenbravoWAD" kind="full" />
-  </target>
-
-  <target name="wad.docs" depends="init">
-    <ant dir="${base.src.wad}" target="doc" inheritAll="true" 
inheritRefs="true" />
-  </target>
-
   <target name="wad.lib" depends="init">
     <ant dir="${base.src.wad}" target="build" inheritAll="true" 
inheritRefs="true" />
   </target>
 
-  <target name="eclipse.trl.lib" depends="init">
-    <ant dir="${base.src.trl}" target="sqlc" inheritAll="true" 
inheritRefs="true" />
-    <eclipse.refreshLocal resource="OpenbravoTrl" depth="infinite" />
-    <eclipse.incrementalBuild project="OpenbravoTrl" kind="full" />
-  </target>
-
-  <target name="trl.docs" depends="init">
-    <ant dir="${base.src.trl}" target="doc" inheritAll="true" 
inheritRefs="true" />
-  </target>
-
   <target name="trl.lib" depends="init">
     <ant dir="${base.src.trl}" target="build" inheritAll="true" 
inheritRefs="true" />
   </target>
@@ -736,20 +676,6 @@
                -->
   </target>
 
-  <target name="eclipse.install.source" depends="init, cleanSubfolders, 
create.database">
-    <fail unless="eclipse.running" message="eclipse.* tasks must be executed 
inside Eclipse" />
-    <echo message="Building OpenbravoCore project..." level="info" />
-    <eclipse.incrementalBuild project="OpenbravoCore" kind="full"/>
-    <antcall target="eclipse.wad.lib"/>
-    <antcall target="eclipse.trl.lib"/>
-    <antcall target="eclipse.compile.complete"/>
-    <echo message="applying modules" />    
-    <antcall inheritall="true" inheritrefs="true" target="apply.module" />
-    <antcall target="import.sample.data" />
-    <updatesystemstatus v="RB51"/>
-    <ant dir="${base.db}" target="setApplied" inheritAll="true" 
inheritRefs="true" />
-  </target>
-
   <target name="create.database" depends="init, core.lib, database.lib">
     <ant dir="${base.db}" antfile="build-create.xml" target="create.database" 
inheritAll="true" inheritRefs="true" />
     <antcall target="db.apply.modules.sampledata" />
@@ -762,13 +688,6 @@
     <antcall target="apply.module" />
   </target>
 
-  <target name="update.database.mod" depends="init, core.lib, database.lib, 
buildvalidation">
-    <updatesystemstatus v="RB12"/>
-    <ant dir="${base.db}" target="update.database.mod.java" inheritAll="true" 
inheritRefs="true" />
-    <antcall target="generate.entities.quick" />
-    <antcall target="apply.module" />
-  </target>
-
   <target name="create.database.script" depends="init, core.lib">
     <ant dir="${base.db}" target="create.database.script" inheritAll="true" 
inheritRefs="true" />
   </target>
diff -r 0e8f0e82bcd9 -r 4c996fb3dcf3 create.database.launch
--- a/create.database.launch    Thu Sep 21 14:53:58 2017 +0200
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<launchConfiguration type="org.eclipse.ant.AntLaunchConfigurationType">
-<stringAttribute key="org.eclipse.ant.ui.ATTR_BUILD_SCOPE" value="${none}"/>
-<booleanAttribute key="org.eclipse.ant.ui.DEFAULT_VM_INSTALL" value="false"/>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
-<listEntry value="/openbravo/build.xml"/>
-</listAttribute>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
-<listEntry value="1"/>
-</listAttribute>
-<booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" 
value="true"/>
-<listAttribute key="org.eclipse.debug.ui.favoriteGroups">
-<listEntry value="org.eclipse.ui.externaltools.launchGroup"/>
-</listAttribute>
-<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" 
value="org.eclipse.ant.ui.AntClasspathProvider"/>
-<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="openbravo"/>
-<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" 
value="org.eclipse.ant.ui.AntClasspathProvider"/>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_ANT_TARGETS" 
value="create.database,"/>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_LOCATION" 
value="${workspace_loc:/openbravo/build.xml}"/>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_WORKING_DIRECTORY" 
value="${workspace_loc:/openbravo}"/>
-<stringAttribute key="process_factory_id" 
value="org.eclipse.ant.ui.remoteAntProcessFactory"/>
-</launchConfiguration>
diff -r 0e8f0e82bcd9 -r 4c996fb3dcf3 eclipse.compile.complete.launch
--- a/eclipse.compile.complete.launch   Thu Sep 21 14:53:58 2017 +0200
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<launchConfiguration type="org.eclipse.ant.AntLaunchConfigurationType">
-<stringAttribute key="org.eclipse.ant.ui.ATTR_BUILD_SCOPE" value="${none}"/>
-<booleanAttribute key="org.eclipse.ant.ui.DEFAULT_VM_INSTALL" value="false"/>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
-<listEntry value="/openbravo/build.xml"/>
-</listAttribute>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
-<listEntry value="1"/>
-</listAttribute>
-<booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" 
value="true"/>
-<listAttribute key="org.eclipse.debug.ui.favoriteGroups">
-<listEntry value="org.eclipse.ui.externaltools.launchGroup"/>
-</listAttribute>
-<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" 
value="org.eclipse.ant.ui.AntClasspathProvider"/>
-<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="openbravo"/>
-<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" 
value="org.eclipse.ant.ui.AntClasspathProvider"/>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_ANT_TARGETS" 
value="eclipse.compile.complete,"/>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_LOCATION" 
value="${workspace_loc:/openbravo/build.xml}"/>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_WORKING_DIRECTORY" 
value="${workspace_loc:/openbravo}"/>
-<stringAttribute key="process_factory_id" 
value="org.eclipse.ant.ui.remoteAntProcessFactory"/>
-</launchConfiguration>
diff -r 0e8f0e82bcd9 -r 4c996fb3dcf3 eclipse.compile.launch
--- a/eclipse.compile.launch    Thu Sep 21 14:53:58 2017 +0200
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<launchConfiguration type="org.eclipse.ant.AntLaunchConfigurationType">
-<stringAttribute key="org.eclipse.ant.ui.ATTR_BUILD_SCOPE" value="${none}"/>
-<booleanAttribute key="org.eclipse.ant.ui.DEFAULT_VM_INSTALL" value="false"/>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
-<listEntry value="/openbravo/build.xml"/>
-</listAttribute>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
-<listEntry value="1"/>
-</listAttribute>
-<booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" 
value="true"/>
-<listAttribute key="org.eclipse.debug.ui.favoriteGroups">
-<listEntry value="org.eclipse.ui.externaltools.launchGroup"/>
-</listAttribute>
-<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" 
value="org.eclipse.ant.ui.AntClasspathProvider"/>
-<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="openbravo"/>
-<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" 
value="org.eclipse.ant.ui.AntClasspathProvider"/>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_ANT_TARGETS" 
value="eclipse.compile,"/>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_LOCATION" 
value="${workspace_loc:/openbravo/build.xml}"/>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_TOOL_ARGUMENTS" 
value="-Dtab=${string_prompt:window name}"/>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_WORKING_DIRECTORY" 
value="${workspace_loc:/openbravo}"/>
-<stringAttribute key="process_factory_id" 
value="org.eclipse.ant.ui.remoteAntProcessFactory"/>
-</launchConfiguration>
diff -r 0e8f0e82bcd9 -r 4c996fb3dcf3 eclipse.install.source.launch
--- a/eclipse.install.source.launch     Thu Sep 21 14:53:58 2017 +0200
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<launchConfiguration type="org.eclipse.ant.AntLaunchConfigurationType">
-<stringAttribute key="org.eclipse.ant.ui.ATTR_BUILD_SCOPE" value="${none}"/>
-<booleanAttribute key="org.eclipse.ant.ui.DEFAULT_VM_INSTALL" value="false"/>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
-<listEntry value="/openbravo/build.xml"/>
-</listAttribute>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
-<listEntry value="1"/>
-</listAttribute>
-<booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" 
value="true"/>
-<listAttribute key="org.eclipse.debug.ui.favoriteGroups">
-<listEntry value="org.eclipse.ui.externaltools.launchGroup"/>
-</listAttribute>
-<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" 
value="org.eclipse.ant.ui.AntClasspathProvider"/>
-<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="openbravo"/>
-<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" 
value="org.eclipse.ant.ui.AntClasspathProvider"/>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_ANT_TARGETS" 
value="eclipse.install.source,"/>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_LOCATION" 
value="${workspace_loc:/openbravo/build.xml}"/>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_TOOL_ARGUMENTS" 
value="-Ddebug.level=true"/>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_WORKING_DIRECTORY" 
value="${workspace_loc:/openbravo}"/>
-<stringAttribute key="process_factory_id" 
value="org.eclipse.ant.ui.remoteAntProcessFactory"/>
-</launchConfiguration>
diff -r 0e8f0e82bcd9 -r 4c996fb3dcf3 export.database.launch
--- a/export.database.launch    Thu Sep 21 14:53:58 2017 +0200
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<launchConfiguration type="org.eclipse.ant.AntLaunchConfigurationType">
-<stringAttribute key="process_factory_id" 
value="org.eclipse.ant.ui.remoteAntProcessFactory"/>
-<booleanAttribute key="org.eclipse.ant.ui.DEFAULT_VM_INSTALL" value="false"/>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
-<listEntry value="1"/>
-</listAttribute>
-<listAttribute key="org.eclipse.debug.ui.favoriteGroups">
-<listEntry value="org.eclipse.ui.externaltools.launchGroup"/>
-</listAttribute>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_WORKING_DIRECTORY" 
value="${workspace_loc:/openbravo}"/>
-<booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" 
value="true"/>
-<stringAttribute key="org.eclipse.ant.ui.ATTR_BUILD_SCOPE" value="${none}"/>
-<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" 
value="org.eclipse.ant.ui.AntClasspathProvider"/>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_ANT_TARGETS" 
value="export.database,"/>
-<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" 
value="org.eclipse.ant.ui.AntClasspathProvider"/>
-<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="openbravo"/>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
-<listEntry value="/openbravo/build.xml"/>
-</listAttribute>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_LOCATION" 
value="${workspace_loc:/openbravo/build.xml}"/>
-</launchConfiguration>
diff -r 0e8f0e82bcd9 -r 4c996fb3dcf3 src-core/build.xml
--- a/src-core/build.xml        Thu Sep 21 14:53:58 2017 +0200
+++ b/src-core/build.xml        Sat Sep 02 13:12:43 2017 +0200
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!--
 
************************************************************************************
-* Copyright (C) 2001-2016 Openbravo S.L.U.
+* Copyright (C) 2001-2017 Openbravo S.L.U.
 * Licensed under the Apache Software License version 2.0
 * You may obtain a copy of the License at 
http://www.apache.org/licenses/LICENSE-2.0
 * Unless required by applicable law or agreed to  in writing,  software  
distributed
@@ -18,8 +18,7 @@
 clean: removes all the files and folders.
 compile: compile the java files of the project.
 build.jar: generates the jar file in the lib folder.
-build: compile the project and generates the jar and doc.
-doc: generates the api for the project.
+build: compile the project and generates the jar
 -->
 <project default="compile" basedir="." name="openbravo-core">
   <property name="build.core" value="${basedir}/build/classes"/>
@@ -34,7 +33,6 @@
 
   <target name="init">
     <mkdir dir="${build.core}"/>
-    <mkdir dir="${build.core.docs}"/>
   </target>
 

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Openbravo-commits mailing list
Openbravo-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/openbravo-commits

Reply via email to