Author: jonesde
Date: Tue Mar 4 14:21:17 2008
New Revision: 633678
URL:
http://svn.apache.org/viewvc?rev=633678&view=revLog:
Added seed-initial to a couple of existing install targets where it makes sense, removed the initial specific target
Modified:
ofbiz/trunk/build.xml
ofbiz/trunk/framework/webtools/src/org/ofbiz/webtools/artifactinfo/ServiceArtifactInfo.java
Modified: ofbiz/trunk/build.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/build.xml?rev=633678&r1=633677&r2=633678&view=diff==============================================================================
--- ofbiz/trunk/build.xml (original)
+++ ofbiz/trunk/build.xml Tue Mar 4 14:21:17 2008
@@ -245,25 +245,18 @@
<arg value="readers=seed"/>
</java>
</target>
- <target name="run-install-extseed-initial" depends="build">
- <java jar="ofbiz.jar" fork="true">
- <jvmarg value="${memory.max.param}"/>
- <arg value="install"/>
- <arg value="readers=seed,seed-initial,ext"/>
- </java>
- </target>
<target name="run-install-extseed" depends="build">
<java jar="ofbiz.jar" fork="true">
<jvmarg value="${memory.max.param}"/>
<arg value="install"/>
- <arg value="readers=seed,ext"/>
+ <arg value="readers=seed,seed-initial,ext"/>
</java>
</target>
<target name="run-install-exttest" depends="build">
<java jar="ofbiz.jar" fork="true">
<jvmarg value="${memory.max.param}"/>
<arg value="install"/>
- <arg value="readers=seed,ext,ext-test"/>
+ <arg value="readers=seed,seed-initial,ext,ext-test"/>
</java>
</target>
<target name="run-debug" depends="build">
Modified: ofbiz/trunk/framework/webtools/src/org/ofbiz/webtools/artifactinfo/ServiceArtifactInfo.java
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/webtools/src/org/ofbiz/webtools/artifactinfo/ServiceArtifactInfo.java?rev=633678&r1=633677&r2=633678&view=diff==============================================================================
--- ofbiz/trunk/framework/webtools/src/org/ofbiz/webtools/artifactinfo/ServiceArtifactInfo.java (original)
+++ ofbiz/trunk/framework/webtools/src/org/ofbiz/webtools/artifactinfo/ServiceArtifactInfo.java Tue Mar 4 14:21:17 2008
@@ -233,6 +233,9 @@
List<ServiceArtifactInfo> allServiceList = FastList.newInstance();
List<ServiceEcaArtifactInfo> allServiceEcaList = FastList.newInstance();
+ // put this service in the master list
+ allDiagramEntitiesWithPrefixes.add(this.modelService.name);
+
// all services that call this service
Set<ServiceArtifactInfo> callingServiceList = this.getServicesCallingService();
if (callingServiceList != null) {