JBoss Tools SVN: r18028 - in trunk: jsf/tests/org.jboss.tools.jsf.ui.bot.test/src/org/jboss/tools/jsf/ui/bot/test and 8 other directories.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2009-10-09 20:23:50 -0400 (Fri, 09 Oct 2009)
New Revision: 18028
Removed:
trunk/seam/tests/org.jboss.tools.seam.ui.bot.test/screenshots/
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/screenshots/
Modified:
trunk/jsf/tests/org.jboss.tools.jsf.ui.bot.test/META-INF/MANIFEST.MF
trunk/jsf/tests/org.jboss.tools.jsf.ui.bot.test/src/org/jboss/tools/jsf/ui/bot/test/JSFAllTests.java
trunk/jst/tests/org.jboss.tools.jst.ui.bot.test/META-INF/MANIFEST.MF
trunk/jst/tests/org.jboss.tools.jst.ui.bot.test/resources/SWTBot.properties
trunk/jst/tests/org.jboss.tools.jst.ui.firstrun.bot.test/META-INF/MANIFEST.MF
trunk/seam/tests/org.jboss.tools.seam.ui.bot.test/META-INF/MANIFEST.MF
trunk/seam/tests/org.jboss.tools.seam.ui.bot.test/New_configuration.launch
trunk/seam/tests/org.jboss.tools.seam.ui.bot.test/src/org/jboss/tools/seam/ui/bot/test/SeamTestLauncher.java
trunk/seam/tests/org.jboss.tools.seam.ui.bot.test/src/org/jboss/tools/seam/ui/bot/test/TestControl.java
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/META-INF/MANIFEST.MF
Log:
SWTBot support added to build
Modified: trunk/jsf/tests/org.jboss.tools.jsf.ui.bot.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.ui.bot.test/META-INF/MANIFEST.MF 2009-10-09 22:13:14 UTC (rev 18027)
+++ trunk/jsf/tests/org.jboss.tools.jsf.ui.bot.test/META-INF/MANIFEST.MF 2009-10-10 00:23:50 UTC (rev 18028)
@@ -8,13 +8,15 @@
org.eclipse.core.runtime,
org.eclipse.swtbot.eclipse.core;bundle-version="2.0.0",
org.eclipse.swtbot.eclipse.finder;bundle-version="2.0.0",
+ org.eclipse.swtbot.swt.finder;bundle-version="2.0.0",
+ org.apache.log4j;bundle-version="1.2.13",
+ org.junit4;bundle-version="4.5.0",
org.eclipse.swtbot.eclipse.spy;bundle-version="2.0.0",
org.eclipse.swtbot.eclipse.ui;bundle-version="2.0.0",
- org.eclipse.swtbot.swt.finder;bundle-version="2.0.0",
- org.apache.log4j;bundle-version="1.2.13",
- org.junit4;bundle-version="4.5.0"
+ org.eclipse.swtbot.junit4_x;bundle-version="2.0.0"
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Import-Package: org.jboss.tools.ui.bot.test,
org.jboss.tools.vpe.ui.bot.test
-Export-Package: org.jboss.tools.jsf.ui.bot.test
+Export-Package: org.jboss.tools.jsf.ui.bot.test,
+ org.jboss.tools.jsf.ui.bot.test.cssdialog.jbide
Modified: trunk/jsf/tests/org.jboss.tools.jsf.ui.bot.test/src/org/jboss/tools/jsf/ui/bot/test/JSFAllTests.java
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.ui.bot.test/src/org/jboss/tools/jsf/ui/bot/test/JSFAllTests.java 2009-10-09 22:13:14 UTC (rev 18027)
+++ trunk/jsf/tests/org.jboss.tools.jsf.ui.bot.test/src/org/jboss/tools/jsf/ui/bot/test/JSFAllTests.java 2009-10-10 00:23:50 UTC (rev 18028)
@@ -1,23 +1,21 @@
package org.jboss.tools.jsf.ui.bot.test;
-import org.eclipse.swtbot.swt.finder.SWTBotTestCase;
+import junit.extensions.TestSetup;
+import junit.framework.Test;
+import junit.framework.TestSuite;
+
import org.jboss.tools.jsf.ui.bot.test.cssdialog.jbide.JBIDE3148and4441Test;
import org.jboss.tools.jsf.ui.bot.test.cssdialog.jbide.JBIDE3577Test;
import org.jboss.tools.jsf.ui.bot.test.cssdialog.jbide.JBIDE3579Test;
import org.jboss.tools.jsf.ui.bot.test.cssdialog.jbide.JBIDE3920Test;
import org.jboss.tools.jsf.ui.bot.test.cssdialog.jbide.JBIDE4391Test;
-import junit.extensions.TestSetup;
-import junit.framework.Test;
-import junit.framework.TestSuite;
-
-
/**
*
* This is a sample swtbot testcase for an eclipse application.
*
*/
-public class JSFAllTests extends SWTBotTestCase{
+public class JSFAllTests{
public static Test suite(){
TestSuite suite = new TestSuite("CSS dialog JBIDE tests");
suite.addTestSuite(JBIDE3148and4441Test.class);
@@ -25,6 +23,6 @@
suite.addTestSuite(JBIDE3577Test.class);
suite.addTestSuite(JBIDE3579Test.class);
suite.addTestSuite(JBIDE3920Test.class);
- return new TestSetup(suite);
+ return suite;
}
}
\ No newline at end of file
Modified: trunk/jst/tests/org.jboss.tools.jst.ui.bot.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.ui.bot.test/META-INF/MANIFEST.MF 2009-10-09 22:13:14 UTC (rev 18027)
+++ trunk/jst/tests/org.jboss.tools.jst.ui.bot.test/META-INF/MANIFEST.MF 2009-10-10 00:23:50 UTC (rev 18028)
@@ -2,22 +2,19 @@
Bundle-ManifestVersion: 2
Bundle-Name: Test
Bundle-SymbolicName: org.jboss.tools.jst.ui.bot.test;singleton:=true
-Bundle-Version: 1.0.0.qualifier
+Bundle-Version: 1.0.0
Bundle-Activator: org.jboss.tools.ui.bot.test.Activator
Require-Bundle: org.eclipse.core.runtime,
- org.eclipse.swtbot.eclipse.core;bundle-version="2.0.0",
org.eclipse.swtbot.eclipse.finder;bundle-version="2.0.0",
- org.eclipse.swtbot.eclipse.spy;bundle-version="2.0.0",
- org.eclipse.swtbot.eclipse.ui;bundle-version="2.0.0",
org.eclipse.swtbot.swt.finder;bundle-version="2.0.0",
- org.apache.log4j;bundle-version="1.2.13",
org.hamcrest;bundle-version="1.1.0",
org.jboss.tools.jst.jsp;bundle-version="2.0.0",
- org.jboss.tools.common.text.ext;bundle-version="2.0.0",
org.jboss.tools.jst.web;bundle-version="2.0.0",
org.eclipse.ui,
+ org.apache.log4j;bundle-version="1.2.13",
+ org.jboss.tools.common.text.ext;bundle-version="2.0.0",
org.eclipse.ui.ide;bundle-version="3.5.0",
- org.junit;bundle-version="3.8.2"
+ org.junit4;bundle-version="4.5.0"
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Export-Package: org.jboss.tools.test,
Modified: trunk/jst/tests/org.jboss.tools.jst.ui.bot.test/resources/SWTBot.properties
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.ui.bot.test/resources/SWTBot.properties 2009-10-09 22:13:14 UTC (rev 18027)
+++ trunk/jst/tests/org.jboss.tools.jst.ui.bot.test/resources/SWTBot.properties 2009-10-10 00:23:50 UTC (rev 18028)
@@ -1,2 +1 @@
SWTBotPreferences.PLAYBACK_DELAY=25
-SWTBotPreferences.TIMEOUT=1000
Modified: trunk/jst/tests/org.jboss.tools.jst.ui.firstrun.bot.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.ui.firstrun.bot.test/META-INF/MANIFEST.MF 2009-10-09 22:13:14 UTC (rev 18027)
+++ trunk/jst/tests/org.jboss.tools.jst.ui.firstrun.bot.test/META-INF/MANIFEST.MF 2009-10-10 00:23:50 UTC (rev 18028)
@@ -6,17 +6,13 @@
Bundle-Activator: org.jboss.tools.ui.runtime.bot.test.Activator
Bundle-Vendor: %BundleVendor
Require-Bundle: org.eclipse.core.runtime,
- org.eclipse.core.resources,
- org.jboss.tools.seam.core,
org.eclipse.ui,
org.eclipse.wst.server.core,
org.eclipse.jdt.launching,
- org.eclipse.ui.workbench,
org.eclipse.datatools.connectivity;visibility:=reexport,
org.eclipse.datatools.connectivity.db.generic,
- org.jboss.tools.common,
org.jboss.tools.jst.ui.bot.test;bundle-version="1.0.0",
- org.jboss.tools.jst.firstrun;bundle-version="2.0.0"
+ org.eclipse.core.resources;bundle-version="3.5.0"
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-ActivationPolicy: lazy
Bundle-Localization: plugin
Modified: trunk/seam/tests/org.jboss.tools.seam.ui.bot.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.ui.bot.test/META-INF/MANIFEST.MF 2009-10-09 22:13:14 UTC (rev 18027)
+++ trunk/seam/tests/org.jboss.tools.seam.ui.bot.test/META-INF/MANIFEST.MF 2009-10-10 00:23:50 UTC (rev 18028)
@@ -1,7 +1,7 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: SWTBotTests
-Bundle-SymbolicName: org.jboss.tools.seam.ui.bot.test
+Bundle-SymbolicName: org.jboss.tools.seam.ui.bot.test;singleton:=true
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.jboss.tools.seam.ui.bot.test.Activator
Require-Bundle: org.eclipse.ui,
@@ -13,11 +13,7 @@
org.eclipse.swtbot.eclipse.ui;bundle-version="2.0.0",
org.eclipse.swtbot.swt.finder;bundle-version="2.0.0",
org.apache.log4j;bundle-version="1.2.13",
- org.eclipse.swtbot.junit4_x;bundle-version="2.0.0",
- org.junit4;bundle-version="4.5.0",
- org.eclipse.swtbot.eclipse.junit4.headless;bundle-version="2.0.0",
- org.junit;bundle-version="3.8.2"
+ org.junit4;bundle-version="4.5.0"
Eclipse-RegisterBuddy: org.apache.log4j
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: J2SE-1.5
-Import-Package: junit.framework
Modified: trunk/seam/tests/org.jboss.tools.seam.ui.bot.test/New_configuration.launch
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.ui.bot.test/New_configuration.launch 2009-10-09 22:13:14 UTC (rev 18027)
+++ trunk/seam/tests/org.jboss.tools.seam.ui.bot.test/New_configuration.launch 2009-10-10 00:23:50 UTC (rev 18028)
@@ -27,7 +27,7 @@
<stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" value="-os ${target.os} -ws ${target.ws} -arch ${target.arch} -nl ${target.nl}"/>
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="org.jboss.tools.seam.ui.bot.test"/>
<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" value="org.eclipse.pde.ui.workbenchClasspathProvider"/>
-<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-Xms1024m -Xmx2048m"/>
+<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-Xms128m -Xmx512m -XX:MaxPermSize=256m -Djbosstools.test.jboss.home=/home/eskimo/jbdevstudio/jboss-eap/jboss-as -Djbosstools.test.seam.1.2.1.eap.home=/home/eskimo/jbdevstudio/jboss-eap/seam -Djbosstools.test.seam.2fp.eap.home=/home/eskimo/jbdevstudio/jboss-eap/seam -Djbosstools.test.seam.2.0.1.GA.home=/home/eskimo/Java/jboss-seam-2.0.1.GA -Djbosstools.test.seam.2.1.0.GA.home=/home/eskimo/Java/jboss-seam-2.1.1.GA"/>
<stringAttribute key="pde.version" value="3.3"/>
<stringAttribute key="product" value="org.eclipse.sdk.ide"/>
<booleanAttribute key="run_in_ui_thread" value="true"/>
Modified: trunk/seam/tests/org.jboss.tools.seam.ui.bot.test/src/org/jboss/tools/seam/ui/bot/test/SeamTestLauncher.java
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.ui.bot.test/src/org/jboss/tools/seam/ui/bot/test/SeamTestLauncher.java 2009-10-09 22:13:14 UTC (rev 18027)
+++ trunk/seam/tests/org.jboss.tools.seam.ui.bot.test/src/org/jboss/tools/seam/ui/bot/test/SeamTestLauncher.java 2009-10-10 00:23:50 UTC (rev 18028)
@@ -8,6 +8,7 @@
import org.jboss.tools.seam.ui.bot.test.create.CreateConversations;
import org.jboss.tools.seam.ui.bot.test.create.CreateEntities;
import org.jboss.tools.seam.ui.bot.test.create.DeleteSeamProjects;
+import org.jboss.tools.ui.bot.test.JBTSWTBotTestCase;
import junit.extensions.TestSetup;
import junit.framework.Test;
@@ -20,7 +21,7 @@
* This is a swtbot testcase for an eclipse application.
*
*/
-public class SeamTestLauncher extends SWTBotTestCase{
+public class SeamTestLauncher {
public static Test suite(){
TestSuite suite = new TestSuite("Seam tests");
suite.addTestSuite(CreateSeamRuntimes.class);
@@ -29,7 +30,6 @@
suite.addTestSuite(CreateActions.class);
suite.addTestSuite(CreateConversations.class);
suite.addTestSuite(CreateEntities.class);
- suite.addTestSuite(DeleteSeamProjects.class);
- return new TestSetup(suite);
+ return suite;
}
}
\ No newline at end of file
Modified: trunk/seam/tests/org.jboss.tools.seam.ui.bot.test/src/org/jboss/tools/seam/ui/bot/test/TestControl.java
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.ui.bot.test/src/org/jboss/tools/seam/ui/bot/test/TestControl.java 2009-10-09 22:13:14 UTC (rev 18027)
+++ trunk/seam/tests/org.jboss.tools.seam.ui.bot.test/src/org/jboss/tools/seam/ui/bot/test/TestControl.java 2009-10-10 00:23:50 UTC (rev 18028)
@@ -4,11 +4,12 @@
import java.io.InputStream;
import java.util.Properties;
-import org.eclipse.core.runtime.Platform;
import org.eclipse.swtbot.swt.finder.SWTBot;
import org.eclipse.swtbot.swt.finder.waits.Conditions;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotShell;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotTree;
+import org.hamcrest.CoreMatchers;
+import org.hamcrest.Matcher;
import org.jboss.tools.test.TestProperties;
import org.jboss.tools.ui.bot.test.JBTSWTBotTestCase;
import org.jboss.tools.ui.bot.test.WidgetVariables;
@@ -112,7 +113,6 @@
if (!bot.perspectiveByLabel("Seam").isActive()) {
bot.perspectiveByLabel("Seam").activate();
}
-
}
private static void substituteSystemProperties(Properties projectProperties2) {
@@ -189,7 +189,7 @@
bot.radio(type).click();
bot.comboBoxWithLabel("Connection profile:").setSelection(projectProperties.getProperty("connName"));
bot.button("Finish").click();
- bot.waitUntil(Conditions.shellCloses(bot.activeShell()),15000);
+ bot.waitUntil(Conditions.shellCloses(bot.activeShell()),30000);
}
/**Creates any Seam Action, Form etc. */
@@ -233,5 +233,4 @@
bot.sleep(1000);
}
}
-
}
Modified: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/META-INF/MANIFEST.MF 2009-10-09 22:13:14 UTC (rev 18027)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/META-INF/MANIFEST.MF 2009-10-10 00:23:50 UTC (rev 18028)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: SWTBotTests
Bundle-SymbolicName: org.jboss.tools.vpe.ui.bot.test
-Bundle-Version: 1.0.0.qualifier
+Bundle-Version: 1.0.0
Bundle-Activator: org.jboss.tools.vpe.ui.bot.test.Activator
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
15 years, 1 month
JBoss Tools SVN: r18027 - trunk/as/plugins/org.jboss.ide.eclipse.as.wtp.ui/src/org/jboss/ide/eclipse/as/wtp/ui/propertypage.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2009-10-09 18:13:14 -0400 (Fri, 09 Oct 2009)
New Revision: 18027
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.wtp.ui/src/org/jboss/ide/eclipse/as/wtp/ui/propertypage/AddModuleDependenciesPropertiesPage.java
Log:
JBIDE-4983 - consumed references in module assembly wizard
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.wtp.ui/src/org/jboss/ide/eclipse/as/wtp/ui/propertypage/AddModuleDependenciesPropertiesPage.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.wtp.ui/src/org/jboss/ide/eclipse/as/wtp/ui/propertypage/AddModuleDependenciesPropertiesPage.java 2009-10-09 21:59:05 UTC (rev 18026)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.wtp.ui/src/org/jboss/ide/eclipse/as/wtp/ui/propertypage/AddModuleDependenciesPropertiesPage.java 2009-10-09 22:13:14 UTC (rev 18027)
@@ -871,8 +871,13 @@
protected void addOneComponent(IVirtualComponent component) throws CoreException {
String path, archiveName;
- path = new Path(objectToRuntimePath.get(component)).removeLastSegments(1).toString();
- archiveName = new Path(objectToRuntimePath.get(component)).lastSegment();
+ path = archiveName = null;
+ if( !consumedReferences.contains(component)) {
+ path = new Path(objectToRuntimePath.get(component)).removeLastSegments(1).toString();
+ archiveName = new Path(objectToRuntimePath.get(component)).lastSegment();
+ } else {
+ path = objectToRuntimePath.get(component);
+ }
IDataModelProvider provider = getAddReferenceDataModelProvider(component);
IDataModel dm = DataModelFactory.createDataModel(provider);
@@ -881,9 +886,11 @@
dm.setProperty(ICreateReferenceComponentsDataModelProperties.TARGET_COMPONENT_LIST, Arrays.asList(component));
//[Bug 238264] the uri map needs to be manually set correctly
- Map<IVirtualComponent, String> uriMap = new HashMap<IVirtualComponent, String>();
- uriMap.put(component, archiveName);
- dm.setProperty(ICreateReferenceComponentsDataModelProperties.TARGET_COMPONENTS_TO_URI_MAP, uriMap);
+ if( archiveName != null ) {
+ Map<IVirtualComponent, String> uriMap = new HashMap<IVirtualComponent, String>();
+ uriMap.put(component, archiveName);
+ dm.setProperty(ICreateReferenceComponentsDataModelProperties.TARGET_COMPONENTS_TO_URI_MAP, uriMap);
+ }
dm.setProperty(ICreateReferenceComponentsDataModelProperties.TARGET_COMPONENTS_DEPLOY_PATH, path);
IStatus stat = dm.validateProperty(ICreateReferenceComponentsDataModelProperties.TARGET_COMPONENT_LIST);
15 years, 1 month
JBoss Tools SVN: r18026 - trunk/as/plugins/org.jboss.ide.eclipse.as.wtp.ui.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2009-10-09 17:59:05 -0400 (Fri, 09 Oct 2009)
New Revision: 18026
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.wtp.ui/plugin.xml
Log:
JBIDE-5005 - Changing export wizard description
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.wtp.ui/plugin.xml
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.wtp.ui/plugin.xml 2009-10-09 21:16:00 UTC (rev 18025)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.wtp.ui/plugin.xml 2009-10-09 21:59:05 UTC (rev 18026)
@@ -80,7 +80,7 @@
id="org.jboss.ide.eclipse.as.wtp.ui.wizards.export.ProjectModuleExportWizard"
name="Module Archive">
<description>
- Export this project as an arbitrary zipped archive file.
+ Export any Flexible Module projects into a zipped archive. A "Flexible Project" is a project with the ModuleCore nature.
</description>
<selection
class="org.eclipse.core.resources.IResource">
15 years, 1 month
JBoss Tools SVN: r18025 - trunk/jbpm/releng/org.jboss.tools.jbpm4.releng.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2009-10-09 17:16:00 -0400 (Fri, 09 Oct 2009)
New Revision: 18025
Modified:
trunk/jbpm/releng/org.jboss.tools.jbpm4.releng/build.properties
trunk/jbpm/releng/org.jboss.tools.jbpm4.releng/build.properties.example.linux
trunk/jbpm/releng/org.jboss.tools.jbpm4.releng/build.properties.example.macosx
Log:
verify build works and update properties
Modified: trunk/jbpm/releng/org.jboss.tools.jbpm4.releng/build.properties
===================================================================
--- trunk/jbpm/releng/org.jboss.tools.jbpm4.releng/build.properties 2009-10-09 20:11:10 UTC (rev 18024)
+++ trunk/jbpm/releng/org.jboss.tools.jbpm4.releng/build.properties 2009-10-09 21:16:00 UTC (rev 18025)
@@ -4,45 +4,35 @@
thirdPartyDownloadLicenseAcceptance="I accept"
projectid=jbosstools.jbpm4
-zipPrefix=jBPM
+zipPrefix=jbpm4
incubation=
buildType=N
version=4.0.0
-buildAlias=jPDL4
mainFeatureToBuildID=org.jboss.tools.jbpm4.sdk.feature
testFeatureToBuildID=org.jboss.tools.jbpm4.tests.feature
build.steps=buildUpdate,buildTests,generateDigests,test,publish,cleanup
-# Re-use local sources?
-localSourceCheckoutDir=/Users/koen/Workspace/Eclipse/3.5.0/jBPM-GPD
-relengBuilderDir=/Users/koen/Workspace/Eclipse/3.5.0/jBPM-GPD/org.jboss.tools.jbpm4.releng
-relengBaseBuilderDir=/Users/koen/Workspace/Eclipse/3.5.0/jBPM-GPD/org.eclipse.releng.basebuilder
-relengCommonBuilderDir=/Users/koen/Workspace/Eclipse/3.5.0/jBPM-GPD/org.eclipse.dash.common.releng
+# If using local sources, must copy or symlink jbosstools-trunk/flow/* into jbosstools-trunk/jbpm/ to find all plugins/features
+localSourceCheckoutDir=/home/nboldt/eclipse/workspace-jboss/jbosstools-trunk/jbpm
-JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Home
-JAVA50_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Home
+relengBuilderDir=/home/nboldt/eclipse/workspace-jboss/jbosstools-trunk/jbpm/releng/org.jboss.tools.jbpm4.releng
+relengBaseBuilderDir=/home/nboldt/eclipse/workspace-jboss/org.eclipse.releng.basebuilder
+relengCommonBuilderDir=/home/nboldt/eclipse/workspace-jboss/org.eclipse.dash.common.releng
+JAVA_HOME=/usr/lib/jvm/java
+JAVA14_HOME=/usr/lib/jvm/java
+JAVA50_HOME=/usr/lib/jvm/java
+JAVA60_HOME=/usr/lib/jvm/java
+
dependencyURLs=\
-http://eclipse.unixheads.org/tools/gef/downloads/drops/3.5.0/R200906221200/GEF-runtime-3.5.0.zip,\
-http://ftp.osuosl.org/pub/eclipse/modeling/emf/emf/downloads/drops/2.5.0/R200906151043/emf-runtime-2.5.0.zip,\
-http://ftp.osuosl.org/pub/eclipse/modeling/emf/emf/downloads/drops/2.5.0/R200906151043/xsd-runtime-2.5.0.zip,\
-http://eclipse.unixheads.org/webtools/downloads/drops/R3.1/R-3.1-20090616035105/wtp-R-3.1-20090616035105.zip,\
-http://eclipse.unixheads.org/webtools/downloads/drops/R3.1/R-3.1-20090616035105/wtp-jpt-R-3.1-20090616035105.zip,\
-http://eclipse.unixheads.org/eclipse/downloads/drops/R-3.5-200906111540/eclipse-SDK-3.5-linux-gtk.tar.gz
+http://repository.jboss.org/eclipse/galileo/GEF-runtime-3.5.1.zip,\
+http://repository.jboss.org/eclipse/galileo/emf-runtime-2.5.0.zip,\
+http://repository.jboss.org/eclipse/galileo/xsd-runtime-2.5.0.zip,\
+http://repository.jboss.org/eclipse/galileo/wtp-R-3.1.1-20090917225226.zip,\
+http://repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5.1-linux-gtk.tar.gz
-# alternate eclipse platforms - swap in above as needed
-#http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5RC3-win32.zip,\
-#http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5RC3-linux-gtk-x86_64.tar.gz,\
-#http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5RC3-macosx-carbon.tar.gz,\
-
-# not needed for jbpm, copied for reference (other builds may need these)
-#http://www.eclipse.org/downloads/download.php?r=1&file=/birt/downloads/drops/M-R1-2.5M7-200905061338/birt-report-framework-2.5M7.zip,\
-#http://www.eclipse.org/downloads/download.php?r=1&file=/birt/downloads/drops/M-R1-2.5M7-200905061338/birt-wtp-integration-sdk-2.5M7.zip,\
-#http://www.eclipse.org/downloads/download.php?r=1&file=/datatools/downloads/drops/N_DTP_1.7/dtp-1.7.0M7-200905052200.zip,\
-#http://www.eclipse.org/downloads/download.php?r=1&file=/tptp/4.6.0/TPTP-4.6.0M7-200904260100/tptp.runtime-TPTP-4.6.0M7.zip,\
-
flattenDependencies=true
parallelCompilation=true
generateFeatureVersionSuffix=true
Modified: trunk/jbpm/releng/org.jboss.tools.jbpm4.releng/build.properties.example.linux
===================================================================
--- trunk/jbpm/releng/org.jboss.tools.jbpm4.releng/build.properties.example.linux 2009-10-09 20:11:10 UTC (rev 18024)
+++ trunk/jbpm/releng/org.jboss.tools.jbpm4.releng/build.properties.example.linux 2009-10-09 21:16:00 UTC (rev 18025)
@@ -14,34 +14,25 @@
build.steps=buildUpdate,buildTests,generateDigests,test,publish,cleanup
-# Re-use local sources?
+# If using local sources, must copy or symlink jbosstools-trunk/flow/* into jbosstools-trunk/jbpm/ to find all plugins/features
localSourceCheckoutDir=/home/nboldt/eclipse/workspace-jboss/jbosstools-trunk/jbpm
+
relengBuilderDir=/home/nboldt/eclipse/workspace-jboss/jbosstools-trunk/jbpm/releng/org.jboss.tools.jbpm4.releng
relengBaseBuilderDir=/home/nboldt/eclipse/workspace-jboss/org.eclipse.releng.basebuilder
relengCommonBuilderDir=/home/nboldt/eclipse/workspace-jboss/org.eclipse.dash.common.releng
JAVA_HOME=/usr/lib/jvm/java
+JAVA14_HOME=/usr/lib/jvm/java
JAVA50_HOME=/usr/lib/jvm/java
+JAVA60_HOME=/usr/lib/jvm/java
dependencyURLs=\
-http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/GEF-runtime-3.5.0RC2.zip,\
-http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/emf-runtime-2.5.0RC2.zip,\
-http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/xsd-runtime-2.5.0RC2.zip,\
-http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/wtp-S-3.1RC2-20090526075706.zip,\
-http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/wtp-jpt-S-3.1RC2-20090526075706.zip,\
-http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5RC3-linux-gtk.tar.gz
+http://repository.jboss.org/eclipse/galileo/GEF-runtime-3.5.1.zip,\
+http://repository.jboss.org/eclipse/galileo/emf-runtime-2.5.0.zip,\
+http://repository.jboss.org/eclipse/galileo/xsd-runtime-2.5.0.zip,\
+http://repository.jboss.org/eclipse/galileo/wtp-R-3.1.1-20090917225226.zip,\
+http://repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5.1-linux-gtk.tar.gz
-# alternate eclipse platforms - swap in above as needed
-#http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5RC3-win32.zip,\
-#http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5RC3-linux-gtk-x86_64.tar.gz,\
-#http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5RC3-macosx-carbon.tar.gz,\
-
-# not needed for jbpm, copied for reference (other builds may need these)
-#http://www.eclipse.org/downloads/download.php?r=1&file=/birt/downloads/drops/M-R1-2.5M7-200905061338/birt-report-framework-2.5M7.zip,\
-#http://www.eclipse.org/downloads/download.php?r=1&file=/birt/downloads/drops/M-R1-2.5M7-200905061338/birt-wtp-integration-sdk-2.5M7.zip,\
-#http://www.eclipse.org/downloads/download.php?r=1&file=/datatools/downloads/drops/N_DTP_1.7/dtp-1.7.0M7-200905052200.zip,\
-#http://www.eclipse.org/downloads/download.php?r=1&file=/tptp/4.6.0/TPTP-4.6.0M7-200904260100/tptp.runtime-TPTP-4.6.0M7.zip,\
-
flattenDependencies=true
parallelCompilation=true
generateFeatureVersionSuffix=true
Modified: trunk/jbpm/releng/org.jboss.tools.jbpm4.releng/build.properties.example.macosx
===================================================================
--- trunk/jbpm/releng/org.jboss.tools.jbpm4.releng/build.properties.example.macosx 2009-10-09 20:11:10 UTC (rev 18024)
+++ trunk/jbpm/releng/org.jboss.tools.jbpm4.releng/build.properties.example.macosx 2009-10-09 21:16:00 UTC (rev 18025)
@@ -15,35 +15,25 @@
# "tests" step may not work on Mac OS X
build.steps=buildUpdate,buildTests,generateDigests,test,publish,cleanup
-# Re-use local sources?
+# If using local sources, must copy or symlink jbosstools-trunk/flow/* into jbosstools-trunk/jbpm/ to find all plugins/features
localSourceCheckoutDir=/Users/nboldt/workspace/jbosstools-trunk/jbpm
+
relengBuilderDir=/Users/nboldt/workspace/jbosstools-trunk/jbpm/releng/org.jboss.tools.jbpm4.releng
relengBaseBuilderDir=/Users/nboldt/workspace/org.eclipse.releng.basebuilder
relengCommonBuilderDir=/Users/nboldt/workspace/org.eclipse.dash.common.releng
JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Home
+JAVA14_HOME=/System/Library/Frameworks/JavaVM.framework/Home
JAVA50_HOME=/System/Library/Frameworks/JavaVM.framework/Home
+JAVA60_HOME=/System/Library/Frameworks/JavaVM.framework/Home
dependencyURLs=\
-http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/GEF-runtime-3.5.0RC2.zip,\
-http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/emf-runtime-2.5.0RC2.zip,\
-http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/xsd-runtime-2.5.0RC2.zip,\
-http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/wtp-S-3.1RC2-20090526075706.zip,\
-http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/wtp-jpt-S-3.1RC2-20090526075706.zip,\
-http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5RC3-macosx-carbon.tar.gz
+http://repository.jboss.org/eclipse/galileo/GEF-runtime-3.5.1.zip,\
+http://repository.jboss.org/eclipse/galileo/emf-runtime-2.5.0.zip,\
+http://repository.jboss.org/eclipse/galileo/xsd-runtime-2.5.0.zip,\
+http://repository.jboss.org/eclipse/galileo/wtp-R-3.1.1-20090917225226.zip,\
+http://repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5.1-macosx-carbon.tar.gz
-# alternate eclipse platforms - swap in above as needed
-#http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5RC3-linux-gtk.tar.gz,\
-#http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5RC3-win32.zip,\
-#http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5RC3-linux-gtk-x86_64.tar.gz,\
-#http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5RC3-macosx-carbon.tar.gz,\
-
-# not needed for jbpm, copied for reference (other builds may need these)
-#http://www.eclipse.org/downloads/download.php?r=1&file=/birt/downloads/drops/M-R1-2.5M7-200905061338/birt-report-framework-2.5M7.zip,\
-#http://www.eclipse.org/downloads/download.php?r=1&file=/birt/downloads/drops/M-R1-2.5M7-200905061338/birt-wtp-integration-sdk-2.5M7.zip,\
-#http://www.eclipse.org/downloads/download.php?r=1&file=/datatools/downloads/drops/N_DTP_1.7/dtp-1.7.0M7-200905052200.zip,\
-#http://www.eclipse.org/downloads/download.php?r=1&file=/tptp/4.6.0/TPTP-4.6.0M7-200904260100/tptp.runtime-TPTP-4.6.0M7.zip,\
-
flattenDependencies=true
parallelCompilation=true
generateFeatureVersionSuffix=true
15 years, 1 month
JBoss Tools SVN: r18024 - trunk/jbpm/releng/org.jboss.tools.jbpm3.releng.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2009-10-09 16:11:10 -0400 (Fri, 09 Oct 2009)
New Revision: 18024
Modified:
trunk/jbpm/releng/org.jboss.tools.jbpm3.releng/build.properties
trunk/jbpm/releng/org.jboss.tools.jbpm3.releng/build.properties.example.linux
trunk/jbpm/releng/org.jboss.tools.jbpm3.releng/build.properties.example.macosx
Log:
verify build works and update properties
Modified: trunk/jbpm/releng/org.jboss.tools.jbpm3.releng/build.properties
===================================================================
--- trunk/jbpm/releng/org.jboss.tools.jbpm3.releng/build.properties 2009-10-09 20:02:04 UTC (rev 18023)
+++ trunk/jbpm/releng/org.jboss.tools.jbpm3.releng/build.properties 2009-10-09 20:11:10 UTC (rev 18024)
@@ -12,40 +12,26 @@
mainFeatureToBuildID=org.jboss.tools.jbpm3.sdk.feature
testFeatureToBuildID=org.jboss.tools.jbpm3.tests.feature
-# "tests" step may not work on Mac OS X
build.steps=buildUpdate,buildTests,generateDigests,test,publish,cleanup
# Re-use local sources?
-localSourceCheckoutDir=/Users/nboldt/workspace/jbosstools-trunk/jbpm
-relengBuilderDir=/Users/nboldt/workspace/jbosstools-trunk/jbpm/releng/org.jboss.tools.jbpm3.releng
-relengBaseBuilderDir=/Users/nboldt/workspace/org.eclipse.releng.basebuilder
-relengCommonBuilderDir=/Users/nboldt/workspace/org.eclipse.dash.common.releng
+localSourceCheckoutDir=/home/nboldt/eclipse/workspace-jboss/jbosstools-trunk/jbpm
+relengBuilderDir=/home/nboldt/eclipse/workspace-jboss/jbosstools-trunk/jbpm/releng/org.jboss.tools.jbpm3.releng
+relengBaseBuilderDir=/home/nboldt/eclipse/workspace-jboss/org.eclipse.releng.basebuilder
+relengCommonBuilderDir=/home/nboldt/eclipse/workspace-jboss/org.eclipse.dash.common.releng
-JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Home
-JAVA14_HOME=/System/Library/Frameworks/JavaVM.framework/Home
-JAVA50_HOME=/System/Library/Frameworks/JavaVM.framework/Home
-JAVA60_HOME=/System/Library/Frameworks/JavaVM.framework/Home
+JAVA_HOME=/usr/lib/jvm/java
+JAVA14_HOME=/usr/lib/jvm/java
+JAVA50_HOME=/usr/lib/jvm/java
+JAVA60_HOME=/usr/lib/jvm/java
dependencyURLs=\
-http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/GEF-runtime-3.5.0RC2.zip,\
-http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/emf-runtime-2.5.0RC2.zip,\
-http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/xsd-runtime-2.5.0RC2.zip,\
-http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/wtp-S-3.1RC2-20090526075706.zip,\
-http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/wtp-jpt-S-3.1RC2-20090526075706.zip,\
-http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5RC3-macosx-carbon.tar.gz
+http://repository.jboss.org/eclipse/galileo/GEF-runtime-3.5.1.zip,\
+http://repository.jboss.org/eclipse/galileo/emf-runtime-2.5.0.zip,\
+http://repository.jboss.org/eclipse/galileo/xsd-runtime-2.5.0.zip,\
+http://repository.jboss.org/eclipse/galileo/wtp-R-3.1.1-20090917225226.zip,\
+http://repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5.1-linux-gtk.tar.gz
-# alternate eclipse platforms - swap in above as needed
-#http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5RC3-linux-gtk.tar.gz,\
-#http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5RC3-win32.zip,\
-#http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5RC3-linux-gtk-x86_64.tar.gz,\
-#http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5RC3-macosx-carbon.tar.gz,\
-
-# not needed for jbpm, copied for reference (other builds may need these)
-#http://www.eclipse.org/downloads/download.php?r=1&file=/birt/downloads/drops/M-R1-2.5M7-200905061338/birt-report-framework-2.5M7.zip,\
-#http://www.eclipse.org/downloads/download.php?r=1&file=/birt/downloads/drops/M-R1-2.5M7-200905061338/birt-wtp-integration-sdk-2.5M7.zip,\
-#http://www.eclipse.org/downloads/download.php?r=1&file=/datatools/downloads/drops/N_DTP_1.7/dtp-1.7.0M7-200905052200.zip,\
-#http://www.eclipse.org/downloads/download.php?r=1&file=/tptp/4.6.0/TPTP-4.6.0M7-200904260100/tptp.runtime-TPTP-4.6.0M7.zip,\
-
flattenDependencies=true
parallelCompilation=true
generateFeatureVersionSuffix=true
Modified: trunk/jbpm/releng/org.jboss.tools.jbpm3.releng/build.properties.example.linux
===================================================================
--- trunk/jbpm/releng/org.jboss.tools.jbpm3.releng/build.properties.example.linux 2009-10-09 20:02:04 UTC (rev 18023)
+++ trunk/jbpm/releng/org.jboss.tools.jbpm3.releng/build.properties.example.linux 2009-10-09 20:11:10 UTC (rev 18024)
@@ -26,24 +26,12 @@
JAVA60_HOME=/usr/lib/jvm/java
dependencyURLs=\
-http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/GEF-runtime-3.5.0RC2.zip,\
-http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/emf-runtime-2.5.0RC2.zip,\
-http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/xsd-runtime-2.5.0RC2.zip,\
-http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/wtp-S-3.1RC2-20090526075706.zip,\
-http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/wtp-jpt-S-3.1RC2-20090526075706.zip,\
-http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5RC3-linux-gtk.tar.gz
+http://repository.jboss.org/eclipse/galileo/GEF-runtime-3.5.1.zip,\
+http://repository.jboss.org/eclipse/galileo/emf-runtime-2.5.0.zip,\
+http://repository.jboss.org/eclipse/galileo/xsd-runtime-2.5.0.zip,\
+http://repository.jboss.org/eclipse/galileo/wtp-R-3.1.1-20090917225226.zip,\
+http://repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5.1-linux-gtk.tar.gz
-# alternate eclipse platforms - swap in above as needed
-#http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5RC3-win32.zip,\
-#http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5RC3-linux-gtk-x86_64.tar.gz,\
-#http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5RC3-macosx-carbon.tar.gz,\
-
-# not needed for jbpm, copied for reference (other builds may need these)
-#http://www.eclipse.org/downloads/download.php?r=1&file=/birt/downloads/drops/M-R1-2.5M7-200905061338/birt-report-framework-2.5M7.zip,\
-#http://www.eclipse.org/downloads/download.php?r=1&file=/birt/downloads/drops/M-R1-2.5M7-200905061338/birt-wtp-integration-sdk-2.5M7.zip,\
-#http://www.eclipse.org/downloads/download.php?r=1&file=/datatools/downloads/drops/N_DTP_1.7/dtp-1.7.0M7-200905052200.zip,\
-#http://www.eclipse.org/downloads/download.php?r=1&file=/tptp/4.6.0/TPTP-4.6.0M7-200904260100/tptp.runtime-TPTP-4.6.0M7.zip,\
-
flattenDependencies=true
parallelCompilation=true
generateFeatureVersionSuffix=true
Modified: trunk/jbpm/releng/org.jboss.tools.jbpm3.releng/build.properties.example.macosx
===================================================================
--- trunk/jbpm/releng/org.jboss.tools.jbpm3.releng/build.properties.example.macosx 2009-10-09 20:02:04 UTC (rev 18023)
+++ trunk/jbpm/releng/org.jboss.tools.jbpm3.releng/build.properties.example.macosx 2009-10-09 20:11:10 UTC (rev 18024)
@@ -27,25 +27,12 @@
JAVA60_HOME=/System/Library/Frameworks/JavaVM.framework/Home
dependencyURLs=\
-http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/GEF-runtime-3.5.0RC2.zip,\
-http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/emf-runtime-2.5.0RC2.zip,\
-http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/xsd-runtime-2.5.0RC2.zip,\
-http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/wtp-S-3.1RC2-20090526075706.zip,\
-http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/wtp-jpt-S-3.1RC2-20090526075706.zip,\
-http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5RC3-macosx-carbon.tar.gz
+http://repository.jboss.org/eclipse/galileo/GEF-runtime-3.5.1.zip,\
+http://repository.jboss.org/eclipse/galileo/emf-runtime-2.5.0.zip,\
+http://repository.jboss.org/eclipse/galileo/xsd-runtime-2.5.0.zip,\
+http://repository.jboss.org/eclipse/galileo/wtp-R-3.1.1-20090917225226.zip,\
+http://repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5.1-macosx-carbon.tar.gz
-# alternate eclipse platforms - swap in above as needed
-#http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5RC3-linux-gtk.tar.gz,\
-#http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5RC3-win32.zip,\
-#http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5RC3-linux-gtk-x86_64.tar.gz,\
-#http://anonsvn.jboss.org/repos/repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5RC3-macosx-carbon.tar.gz,\
-
-# not needed for jbpm, copied for reference (other builds may need these)
-#http://www.eclipse.org/downloads/download.php?r=1&file=/birt/downloads/drops/M-R1-2.5M7-200905061338/birt-report-framework-2.5M7.zip,\
-#http://www.eclipse.org/downloads/download.php?r=1&file=/birt/downloads/drops/M-R1-2.5M7-200905061338/birt-wtp-integration-sdk-2.5M7.zip,\
-#http://www.eclipse.org/downloads/download.php?r=1&file=/datatools/downloads/drops/N_DTP_1.7/dtp-1.7.0M7-200905052200.zip,\
-#http://www.eclipse.org/downloads/download.php?r=1&file=/tptp/4.6.0/TPTP-4.6.0M7-200904260100/tptp.runtime-TPTP-4.6.0M7.zip,\
-
flattenDependencies=true
parallelCompilation=true
generateFeatureVersionSuffix=true
15 years, 1 month
JBoss Tools SVN: r18023 - trunk/jbpm/releng/org.jboss.tools.jbpm3.releng/maps.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2009-10-09 16:02:04 -0400 (Fri, 09 Oct 2009)
New Revision: 18023
Modified:
trunk/jbpm/releng/org.jboss.tools.jbpm3.releng/maps/jbpm3.map
Log:
add missing features
Modified: trunk/jbpm/releng/org.jboss.tools.jbpm3.releng/maps/jbpm3.map
===================================================================
--- trunk/jbpm/releng/org.jboss.tools.jbpm3.releng/maps/jbpm3.map 2009-10-09 19:58:42 UTC (rev 18022)
+++ trunk/jbpm/releng/org.jboss.tools.jbpm3.releng/maps/jbpm3.map 2009-10-09 20:02:04 UTC (rev 18023)
@@ -2,6 +2,8 @@
!*** See common.map for features, plugins, and tests common to both jbpm3 and jbpm4.
!*** features
+feature@org.jboss.tools.jbpm3.sdk.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/jbpm/features/org.jboss.tools.jbpm3.sdk.feature
+feature@org.jboss.tools.jbpm3.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/jbpm/features/org.jboss.tools.jbpm3.feature
feature@org.jbpm.gd.jpdl.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/jbpm/features/org.jbpm.gd.jpdl.feature
!*** plugins
15 years, 1 month
JBoss Tools SVN: r18022 - trunk/jbpm/features/org.jboss.tools.jbpm4.feature.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2009-10-09 15:58:42 -0400 (Fri, 09 Oct 2009)
New Revision: 18022
Modified:
trunk/jbpm/features/org.jboss.tools.jbpm4.feature/feature.properties
Log:
rename feature from sdk -> runtime
Modified: trunk/jbpm/features/org.jboss.tools.jbpm4.feature/feature.properties
===================================================================
--- trunk/jbpm/features/org.jboss.tools.jbpm4.feature/feature.properties 2009-10-09 19:58:33 UTC (rev 18021)
+++ trunk/jbpm/features/org.jboss.tools.jbpm4.feature/feature.properties 2009-10-09 19:58:42 UTC (rev 18022)
@@ -1,4 +1,4 @@
-featureName=jBPM 4 Tools SDK
+featureName=jBPM 4 Tools Runtime
featureProvider=JBoss by Red Hat
description=This feature includes all end-user tools for jBPM 4, including runtime and sources.
copyright=Copyright 2009 Red Hat, Inc.
15 years, 1 month
JBoss Tools SVN: r18021 - in trunk/jbpm/features: org.jboss.tools.jbpm3.feature and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2009-10-09 15:58:33 -0400 (Fri, 09 Oct 2009)
New Revision: 18021
Added:
trunk/jbpm/features/org.jboss.tools.jbpm3.feature/
trunk/jbpm/features/org.jboss.tools.jbpm3.feature/.project
trunk/jbpm/features/org.jboss.tools.jbpm3.feature/build.properties
trunk/jbpm/features/org.jboss.tools.jbpm3.feature/feature.properties
trunk/jbpm/features/org.jboss.tools.jbpm3.feature/feature.xml
trunk/jbpm/features/org.jboss.tools.jbpm3.feature/license.html
Log:
new jbpm3 runtime feature
Added: trunk/jbpm/features/org.jboss.tools.jbpm3.feature/.project
===================================================================
--- trunk/jbpm/features/org.jboss.tools.jbpm3.feature/.project (rev 0)
+++ trunk/jbpm/features/org.jboss.tools.jbpm3.feature/.project 2009-10-09 19:58:33 UTC (rev 18021)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.jboss.tools.jbpm4.feature</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.pde.FeatureBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.pde.FeatureNature</nature>
+ </natures>
+</projectDescription>
Property changes on: trunk/jbpm/features/org.jboss.tools.jbpm3.feature/.project
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Added: trunk/jbpm/features/org.jboss.tools.jbpm3.feature/build.properties
===================================================================
--- trunk/jbpm/features/org.jboss.tools.jbpm3.feature/build.properties (rev 0)
+++ trunk/jbpm/features/org.jboss.tools.jbpm3.feature/build.properties 2009-10-09 19:58:33 UTC (rev 18021)
@@ -0,0 +1,2 @@
+bin.includes = feature.*,\
+ license.html
Property changes on: trunk/jbpm/features/org.jboss.tools.jbpm3.feature/build.properties
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Added: trunk/jbpm/features/org.jboss.tools.jbpm3.feature/feature.properties
===================================================================
--- trunk/jbpm/features/org.jboss.tools.jbpm3.feature/feature.properties (rev 0)
+++ trunk/jbpm/features/org.jboss.tools.jbpm3.feature/feature.properties 2009-10-09 19:58:33 UTC (rev 18021)
@@ -0,0 +1,14 @@
+featureName=jBPM 3 Tools Runtime
+featureProvider=JBoss by Red Hat
+description=This feature includes all end-user tools for jBPM 4, including runtime and sources.
+copyright=Copyright 2009 Red Hat, Inc.
+licenseURL=license.html
+updateSiteName=JBossTools Update Site
+license=Red Hat, Inc. licenses these features and plugins to you under
+certain open source licenses (or aggregations of such licenses), which
+in a particular case may include the Eclipse Public License, the GNU
+Lesser General Public License, and/or certain other open source
+licenses. For precise licensing details, consult the corresponding
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive,
+Raleigh NC 27606 USA.
+# END NON-TRANSLATABLE
\ No newline at end of file
Property changes on: trunk/jbpm/features/org.jboss.tools.jbpm3.feature/feature.properties
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Added: trunk/jbpm/features/org.jboss.tools.jbpm3.feature/feature.xml
===================================================================
--- trunk/jbpm/features/org.jboss.tools.jbpm3.feature/feature.xml (rev 0)
+++ trunk/jbpm/features/org.jboss.tools.jbpm3.feature/feature.xml 2009-10-09 19:58:33 UTC (rev 18021)
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.jboss.tools.jbpm3.feature"
+ label="%featureName"
+ version="3.2.0.qualifier"
+ provider-name="%featureProvider">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ %copyright
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+ <url>
+ <update label="%updateSiteName" url="http://download.jboss.org/jbosstools/updates/stable"/>
+ </url>
+
+ <includes
+ id="org.jboss.tools.jbpm.common.feature"
+ version="0.0.0"/>
+
+ <includes
+ id="org.jbpm.gd.jpdl.feature"
+ version="0.0.0"/>
+
+</feature>
Property changes on: trunk/jbpm/features/org.jboss.tools.jbpm3.feature/feature.xml
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Added: trunk/jbpm/features/org.jboss.tools.jbpm3.feature/license.html
===================================================================
--- trunk/jbpm/features/org.jboss.tools.jbpm3.feature/license.html (rev 0)
+++ trunk/jbpm/features/org.jboss.tools.jbpm3.feature/license.html 2009-10-09 19:58:33 UTC (rev 18021)
@@ -0,0 +1,14 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
+<html>
+
+<body>
+<p>Red Hat, Inc. licenses these features and plugins to you under
+certain open source licenses (or aggregations of such licenses), which
+in a particular case may include the Eclipse Public License, the GNU
+Lesser General Public License, and/or certain other open source
+licenses. For precise licensing details, consult the corresponding
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive,
+Raleigh NC 27606 USA.
+</p>
+</body>
+</html>
\ No newline at end of file
Property changes on: trunk/jbpm/features/org.jboss.tools.jbpm3.feature/license.html
___________________________________________________________________
Name: svn:mime-type
+ text/plain
15 years, 1 month
JBoss Tools SVN: r18020 - trunk/smooks/docs/reference/en/modules.
by jbosstools-commits@lists.jboss.org
Author: smukhina
Date: 2009-10-09 13:50:21 -0400 (Fri, 09 Oct 2009)
New Revision: 18020
Modified:
trunk/smooks/docs/reference/en/modules/smooksformeditor_configurationpage.xml
trunk/smooks/docs/reference/en/modules/smooksformeditor_sourcepage.xml
Log:
https://jira.jboss.org/jira/browse/JBDS-358 - making screenshots titles more informative - done - for smooks
Modified: trunk/smooks/docs/reference/en/modules/smooksformeditor_configurationpage.xml
===================================================================
--- trunk/smooks/docs/reference/en/modules/smooksformeditor_configurationpage.xml 2009-10-09 17:46:40 UTC (rev 18019)
+++ trunk/smooks/docs/reference/en/modules/smooksformeditor_configurationpage.xml 2009-10-09 17:50:21 UTC (rev 18020)
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="UTF-8"?>
+<?xml version="1.0" encoding="UTF-8"?>
<chapter id="smooksformeditor_configurationtab" xreflabel="Smooks Configuration Editor Page">
<?dbhtml filename="smooks_form_editor_configurationtab.html"?>
<chapterinfo>
@@ -60,7 +60,7 @@
<property>Data Type Selection</property></emphasis> Wizard you should choose the type of the file and the file itself you want to load to the <emphasis>
<property>Selector generate dialog</property></emphasis>.After that your dialog should look nearly like that:</para>
<figure>
- <title>Selector generate dialog</title>
+ <title>Selector generate dialog after adding Input Data</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/config_page/config_page2b.png" scale="90"/>
@@ -79,7 +79,7 @@
<property>Param</property></emphasis> to just created <emphasis>
<property>Global Parametres</property></emphasis>. </para>
<figure>
- <title>Smooks Parse Types</title>
+ <title>Adding Param to created Global Parametres</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/config_page/config_page2.png" scale="90"/>
@@ -97,7 +97,7 @@
<property>Text</property></emphasis> field.</para>
<figure>
- <title>Smooks Parse Types</title>
+ <title>Filling Param section field Name and Text Value for set a Parse Type</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/config_page/config_page3.png" scale="90"/>
@@ -111,7 +111,7 @@
</section>
<section id="configurationpage_importfile">
- <title>Import Data</title>
+ <title>Import Smooks Configuration page</title>
<para> Right click <emphasis>
<property>Resource List>Add Smooks Resource>Import Smooks Configuration</property>
</emphasis>, then you should see a new <emphasis>
Modified: trunk/smooks/docs/reference/en/modules/smooksformeditor_sourcepage.xml
===================================================================
--- trunk/smooks/docs/reference/en/modules/smooksformeditor_sourcepage.xml 2009-10-09 17:46:40 UTC (rev 18019)
+++ trunk/smooks/docs/reference/en/modules/smooksformeditor_sourcepage.xml 2009-10-09 17:50:21 UTC (rev 18020)
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="UTF-8"?>
+<?xml version="1.0" encoding="UTF-8"?>
<chapter id="smooksformeditor_sourcetab" xreflabel="Smooks Source Editor Page">
<?dbhtml filename="smooks_form_editor_sourcetab.html"?>
<chapterinfo>
@@ -23,7 +23,7 @@
</figure>
</section>
<section>
- <title>Error Messages GUI</title>
+ <title>Error underlining in Graphical Editor</title>
<para>If the <property>Smooks tools</property> can't understand the configuration
file or the configuration file is illegal (XML structure isn't right for Smooks
Configuration file, etc.), the error is underlined.</para>
15 years, 1 month
JBoss Tools SVN: r18019 - in trunk: hibernatetools/docs/reference/en/modules and 2 other directories.
by jbosstools-commits@lists.jboss.org
Author: smukhina
Date: 2009-10-09 13:46:40 -0400 (Fri, 09 Oct 2009)
New Revision: 18019
Modified:
trunk/esb/docs/esb_ref_guide/en/modules/esb_editor.xml
trunk/hibernatetools/docs/reference/en/modules/plugins.xml
trunk/jsf/docs/userguide/en/modules/editors.xml
trunk/jsf/docs/userguide/en/modules/preferences.xml
trunk/ws/docs/reference/en/modules/preference.xml
Log:
https://jira.jboss.org/jira/browse/JBDS-358 - making screenshots titles more informative - done - for hibernate, esb, ws, visual web tool
Modified: trunk/esb/docs/esb_ref_guide/en/modules/esb_editor.xml
===================================================================
--- trunk/esb/docs/esb_ref_guide/en/modules/esb_editor.xml 2009-10-09 17:30:22 UTC (rev 18018)
+++ trunk/esb/docs/esb_ref_guide/en/modules/esb_editor.xml 2009-10-09 17:46:40 UTC (rev 18019)
@@ -1,4 +1,4 @@
-<?xml version='1.0' encoding='UTF-8'?>
+<?xml version='1.0' encoding='UTF-8'?>
<chapter id="esb_editor" xreflabel="esb_editor" role="updated">
<?dbhtml filename="esbEditor.html"?>
<chapterinfo>
@@ -244,7 +244,7 @@
<para>Content Assist for attributes:</para>
<figure>
- <title>Content Assist for attributes:</title>
+ <title>Content Assist for attributes</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/esb_editor/09_esb_features.png" scale="80"/>
Modified: trunk/hibernatetools/docs/reference/en/modules/plugins.xml
===================================================================
--- trunk/hibernatetools/docs/reference/en/modules/plugins.xml 2009-10-09 17:30:22 UTC (rev 18018)
+++ trunk/hibernatetools/docs/reference/en/modules/plugins.xml 2009-10-09 17:46:40 UTC (rev 18019)
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="UTF-8"?>
+<?xml version="1.0" encoding="UTF-8"?>
<chapter id="plugins" role="updated">
<title>Eclipse Plugins</title>
@@ -1623,7 +1623,7 @@
</emphasis> then.</para>
<figure>
- <title>Overview Page</title>
+ <title>ChooseReverse Engineering File Wizard </title>
<mediaobject>
<imageobject role="fo">
<imagedata align="center" scale="80" fileref="images/plugins/plugins_22.png" format="PNG"
Modified: trunk/jsf/docs/userguide/en/modules/editors.xml
===================================================================
--- trunk/jsf/docs/userguide/en/modules/editors.xml 2009-10-09 17:30:22 UTC (rev 18018)
+++ trunk/jsf/docs/userguide/en/modules/editors.xml 2009-10-09 17:46:40 UTC (rev 18019)
@@ -1,4 +1,4 @@
-<?xml version='1.0' encoding='UTF-8'?>
+<?xml version='1.0' encoding='UTF-8'?>
<chapter id="jbds_editors" xreflabel="jbds_editors" role="updated">
<?dbhtml filename="editors.html"?>
<chapterinfo>
@@ -1217,7 +1217,7 @@
<para>If the style class isn't chosen, the tab doesn't show any properties.</para>
<figure>
- <title>Edited Properties</title>
+ <title>Edited Properties when the style class isn't chosen</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/visual_page/edited_properties.png"/>
@@ -1934,7 +1934,7 @@
<para>You can easily add a <property>new tag</property>:</para>
<figure>
- <title>Adding a New Tag</title>
+ <title>Adding a New TLD Tag</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/more_editors/more_editors_6.png" scale="85"/>
@@ -1945,7 +1945,7 @@
<para>You can also easily add a <property>new attribute</property> to an existing
tag:</para>
<figure>
- <title>Adding a New Attribute</title>
+ <title>Adding a New Attribute to TLD tag</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/more_editors/more_editors_7.png" scale="85"/>
@@ -1956,7 +1956,7 @@
viewer:</para>
<figure>
- <title>Content Assist</title>
+ <title>TLD Content Assist</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/more_editors/more_editors_8.png" scale="65"/>
@@ -2008,7 +2008,7 @@
<property>web.xml</property></emphasis> could include are located in the left area of the editor in a tree format.
Click a node on the left to display and edit its properties that will appear in the right-hand area.</para>
<figure>
- <title>Tree View</title>
+ <title>Tree View for editing web.xml in a graphical mode</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/more_editors/more_editors_10.png"/>
@@ -2020,7 +2020,7 @@
viewer</property>:</para>
<figure>
- <title>Adding New Elements</title>
+ <title>Adding New Elements in Web XML Editor</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/more_editors/more_editors_11.png"/>
@@ -2036,7 +2036,7 @@
hand at any time:</para>
<figure>
- <title>Source View</title>
+ <title>Web XML Source View</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/more_editors/more_editors_12.png"/>
@@ -2053,7 +2053,7 @@
</emphasis> anywhere in the file.</para>
<figure>
- <title>Content Assist</title>
+ <title>Web XML Content Assist</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/more_editors/more_editors_13.png" scale="85"
@@ -2126,7 +2126,7 @@
stylesheet declaration properties:</para>
<figure>
- <title>Properties View</title>
+ <title>Properties View in CSS Editor</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/more_editors/more_editors_43.png" scale="85"/>
@@ -2157,7 +2157,7 @@
file:</para>
<figure>
- <title>Source Viewer</title>
+ <title>Source Viewer in JavaScript Editor </title>
<mediaobject>
<imageobject>
<imagedata fileref="images/more_editors/more_editors_45.png" scale="85"/>
@@ -2211,7 +2211,7 @@
Source viewer:</para>
<figure>
- <title>Source Viewer</title>
+ <title>Source Viewer in XSD Editor</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/more_editors/more_editors_48.png" scale="85"/>
@@ -2223,7 +2223,7 @@
it:</para>
<figure>
- <title>Design Viewer</title>
+ <title>Design Viewer in XSD Editor</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/more_editors/more_editors_49.png" scale="85"/>
@@ -2235,7 +2235,7 @@
diagram:</para>
<figure>
- <title>Edit Options</title>
+ <title>Edit Options in XSD Editor Context Menu.</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/more_editors/more_editors_50.png" scale="85"/>
@@ -2246,7 +2246,7 @@
<para>You can also use the Properties view to edit a selected element:</para>
<figure>
- <title>Properties View</title>
+ <title>Properties View in XSD Editor</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/more_editors/more_editors_51.png"/>
@@ -2259,7 +2259,7 @@
on the right:</para>
<figure>
- <title>Source Viewer</title>
+ <title>Using Source Viewer and Properties View together for source code editing</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/more_editors/more_editors_52.png" scale="85"/>
Modified: trunk/jsf/docs/userguide/en/modules/preferences.xml
===================================================================
--- trunk/jsf/docs/userguide/en/modules/preferences.xml 2009-10-09 17:30:22 UTC (rev 18018)
+++ trunk/jsf/docs/userguide/en/modules/preferences.xml 2009-10-09 17:46:40 UTC (rev 18019)
@@ -723,7 +723,7 @@
</emphasis> screen you can add and remove Seam runtimes.</para>
<para>Here is what Seam preference page looks like:</para>
<figure>
- <title>Seam</title>
+ <title>Seam preference page</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/preferences/preferences_19.png"/>
@@ -784,7 +784,7 @@
<property>JBoss Tools > Web > Struts</property>
</emphasis> you can configure Struts projects specific preferences.</para>
<figure>
- <title>Struts</title>
+ <title>Struts projects preferences Page.</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/preferences/preferences_21.png"/>
@@ -1085,7 +1085,7 @@
proper box, specify XDoclet home and determine XDoclet module version as well.</para>
<figure>
- <title>XDoclet</title>
+ <title>XDoclet Runtime Preferences Page</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/preferences/preferences_41.png"/>
Modified: trunk/ws/docs/reference/en/modules/preference.xml
===================================================================
--- trunk/ws/docs/reference/en/modules/preference.xml 2009-10-09 17:30:22 UTC (rev 18018)
+++ trunk/ws/docs/reference/en/modules/preference.xml 2009-10-09 17:46:40 UTC (rev 18019)
@@ -1,106 +1,104 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<chapter id="preference" revisionflag="added">
- <title>JBoss WS and development environment</title>
-
- <para>In this chapter you will learn how to change JBossWS preferences and how to set default server and runtime.</para>
- <section id="jbosswspreference">
-
-
- <title>JBossWS Preferences</title>
-
- <para>In this section you will know how JBossWS preferences can be modified during the
- development process.</para>
-
- <para>JBossWS preferences can be set on the JBossWS preference page. Click on
- <emphasis><property>Window > Preferences > JBoss Tools > Web > JBossWS
- Preferences</property>.</emphasis></para>
-
- <para>On this page you can manage the JBossWS Runtime. Use the appropriate buttons to
- <property>Add</property> more runtimes or to <property>Remove</property> those that
- are not needed.</para>
-
- <figure>
- <title>JBossWS Preferences Page</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/preference/Jbossws_preference.png"/>
- </imageobject>
- </mediaobject>
- </figure>
-
- <para>Clicking on <emphasis>
- <property>Add</property>
- </emphasis> or <emphasis>
- <property>Edit</property>
- </emphasis> button will open the form where you can configure a new JBossWS runtime and
- change the path to JBossWS runtime home folder, modify the name and version of the
- existing JBossWS runtime settings. Press <property>Finish</property> to apply the
- changes.</para>
-
- <figure>
- <title>Edit JBossWS Runtime</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/preference/Jbossws_preference_new.png"/>
- </imageobject>
- </mediaobject>
- </figure>
-
-
-
-
- <para>WS container allows Source and JavaDoc locations to be set via the Properties dialog on each contained .jar: right-click on any .jar file in the Project Explorer view, select <emphasis><property>Properties</property></emphasis>. Choose <emphasis><property>Java Source Attachment</property></emphasis> and select location (folder, JAR or zip) containing new source for the chosen .jar using one of the suggested options (workspace, external folder or file) or enter the path manually:</para>
-
- <figure>
- <title>Classpath Container: Java Source Attachment</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/preference/jbossws_container1.png"/>
- </imageobject>
- </mediaobject>
- </figure>
- <para>Click on <emphasis><property>Apply</property></emphasis> and then on <emphasis><property>Ok</property></emphasis>.</para>
- <para>To change JavaDoc Location choose <emphasis><property>Javadoc Location</property></emphasis> and specify URL to the documentation generated by Javadoc. The Javadoc location will contain a file called <emphasis><property>package-list</property></emphasis>:</para>
-
- <figure>
- <title>Classpath Container: Javadoc Location</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/preference/jbossws_container2.png"/>
- </imageobject>
- </mediaobject>
- </figure>
- <para>Click on <emphasis><property>Apply</property></emphasis> and then on <emphasis><property>Ok</property></emphasis>.</para>
-
-
-
-
-
-
- </section>
- <section id="serverruntime">
- <title>Default Server and Runtime</title>
- <para>Open <emphasis>
- <property>Window > Preferences > Web Services > Server and Runtime</property></emphasis>. On this page, you can specify a default server and runtime.</para>
- <para>For ease of use, the better way is to set runtime to JBoss WS.</para>
- <para>After server and runtime are specified, click on the <property>Apply</property> button
- to save the values.</para>
- <figure>
- <title/>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/preference/jbossws_server_runtime.png"/>
- </imageobject>
- </mediaobject>
- </figure>
-
- <para>On the whole, this guide covers the fundamental concepts of work with tooling for
- <property>JBossWS</property>. It describes how to easily create a Web Service and a Web Service Client using
- JBossWS Runtime and adjust JBossWS and development environment as well.</para>
-
- <para>If the information on JBossWS tools in this guide isn't enough for you, ask
- questions on our <ulink
- url="http://www.jboss.com/index.html?module=bb&op=viewforum&f=201"
- >forum</ulink>. Your comments and suggestions are also welcome.</para>
- </section>
-</chapter>
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<chapter id="preference" revisionflag="added">
+ <title>JBoss WS and development environment</title>
+
+ <para>In this chapter you will learn how to change JBossWS preferences and how to set default server and runtime.</para>
+ <section id="jbosswspreference">
+
+
+ <title>JBossWS Preferences</title>
+
+ <para>In this section you will know how JBossWS preferences can be modified during the
+ development process.</para>
+
+ <para>JBossWS preferences can be set on the JBossWS preference page. Click on
+ <emphasis><property>Window > Preferences > JBoss Tools > Web > JBossWS
+ Preferences</property>.</emphasis></para>
+
+ <para>On this page you can manage the JBossWS Runtime. Use the appropriate buttons to
+ <property>Add</property> more runtimes or to <property>Remove</property> those that
+ are not needed.</para>
+
+ <figure>
+ <title>JBossWS Preferences Page</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/preference/Jbossws_preference.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+ <para>Clicking on <emphasis>
+ <property>Add</property>
+ </emphasis> or <emphasis>
+ <property>Edit</property>
+ </emphasis> button will open the form where you can configure a new JBossWS runtime and
+ change the path to JBossWS runtime home folder, modify the name and version of the
+ existing JBossWS runtime settings. Press <property>Finish</property> to apply the
+ changes.</para>
+
+ <figure>
+ <title>Edit JBossWS Runtime</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/preference/Jbossws_preference_new.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+
+
+
+ <para>WS container allows Source and JavaDoc locations to be set via the Properties dialog on each contained .jar: right-click on any .jar file in the Project Explorer view, select <emphasis><property>Properties</property></emphasis>. Choose <emphasis><property>Java Source Attachment</property></emphasis> and select location (folder, JAR or zip) containing new source for the chosen .jar using one of the suggested options (workspace, external folder or file) or enter the path manually:</para>
+
+ <figure>
+ <title>Classpath Container: Java Source Attachment</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/preference/jbossws_container1.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>Click on <emphasis><property>Apply</property></emphasis> and then on <emphasis><property>Ok</property></emphasis>.</para>
+ <para>To change JavaDoc Location choose <emphasis><property>Javadoc Location</property></emphasis> and specify URL to the documentation generated by Javadoc. The Javadoc location will contain a file called <emphasis><property>package-list</property></emphasis>:</para>
+
+ <figure>
+ <title>Classpath Container: Javadoc Location</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/preference/jbossws_container2.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>Click on <emphasis><property>Apply</property></emphasis> and then on <emphasis><property>Ok</property></emphasis>.</para>
+
+
+
+
+
+
+ </section>
+ <section id="serverruntime">
+ <title>Default Server and Runtime</title>
+ <para>Open <emphasis>
+ <property>Window > Preferences > Web Services > Server and Runtime</property></emphasis>. On this page, you can specify a default server and runtime.</para>
+ <para>For ease of use, the better way is to set runtime to JBoss WS.</para>
+ <para>After server and runtime are specified, click on the <property>Apply</property> button
+ to save the values.</para>
+ <figure>
+ <title>Specifing a default server and runtime</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/preference/jbossws_server_runtime.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+ <para>On the whole, this guide covers the fundamental concepts of work with tooling for
+ <property>JBossWS</property>. It describes how to easily create a Web Service and a Web Service Client using
+ JBossWS Runtime and adjust JBossWS and development environment as well.</para>
+
+ <para>If the information on JBossWS tools in this guide isn't enough for you, ask
+ questions on our <ulink url="http://www.jboss.com/index.html?module=bb&op=viewforum&f=201">forum</ulink>. Your comments and suggestions are also welcome.</para>
+ </section>
+</chapter>
15 years, 1 month