JBoss Tools SVN: r28253 - branches/jbosstools-3.2.0.CR1/modeshape/plugins/org.jboss.tools.modeshape.rest.
by jbosstools-commits@lists.jboss.org
Author: elvisisking
Date: 2011-01-14 14:38:47 -0500 (Fri, 14 Jan 2011)
New Revision: 28253
Modified:
branches/jbosstools-3.2.0.CR1/modeshape/plugins/org.jboss.tools.modeshape.rest/modeshape-client.jar
Log:
JBIDE-8055 bump soap requirements used by JBT tests, Modeshape and JBDS uberbuild to ER7 release: Updated ModeShape Tools and Teiid Designer to new ModeShape ER7 jars.
Modified: branches/jbosstools-3.2.0.CR1/modeshape/plugins/org.jboss.tools.modeshape.rest/modeshape-client.jar
===================================================================
(Binary files differ)
15 years, 2 months
JBoss Tools SVN: r28252 - in branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping: dynamicentity/tuplizer and 3 other directories.
by jbosstools-commits@lists.jboss.org
Author: vyemialyanchyk
Date: 2011-01-14 14:36:29 -0500 (Fri, 14 Jan 2011)
New Revision: 28252
Modified:
branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/cut/Atypes.hbm.xml
branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/dynamicentity/tuplizer/Customer.hbm.xml
branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/instrument/domain/Problematic.hbm.xml
branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/lob/LobHolder.java
branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/lob/LobMappings.hbm.xml
branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/rowid/Point.hbm.xml
Log:
https://issues.jboss.org/browse/JBIDE-8113 - fixed
Modified: branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/cut/Atypes.hbm.xml
===================================================================
--- branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/cut/Atypes.hbm.xml 2011-01-14 19:36:07 UTC (rev 28251)
+++ branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/cut/Atypes.hbm.xml 2011-01-14 19:36:29 UTC (rev 28252)
@@ -4,5 +4,5 @@
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="mapping.cut">
- <typedef name="money" class="org.hibernate.test.cut.MonetoryAmountUserType"/>
+ <typedef name="money" class="mapping.cut.MonetoryAmountUserType"/>
</hibernate-mapping>
\ No newline at end of file
Modified: branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/dynamicentity/tuplizer/Customer.hbm.xml
===================================================================
--- branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/dynamicentity/tuplizer/Customer.hbm.xml 2011-01-14 19:36:07 UTC (rev 28251)
+++ branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/dynamicentity/tuplizer/Customer.hbm.xml 2011-01-14 19:36:29 UTC (rev 28252)
@@ -12,7 +12,7 @@
entity mapping to use) given an instance of one of these proxies.
-->
<class name="Person" table="t_person" discriminator-value="person" abstract="false">
- <tuplizer class="org.hibernate.test.dynamicentity.tuplizer.MyEntityTuplizer" entity-mode="pojo"/>
+ <tuplizer class="mapping.dynamicentity.tuplizer.MyEntityTuplizer" entity-mode="pojo"/>
<id name="id">
<generator class="native"/>
</id>
@@ -27,14 +27,14 @@
</set>
<subclass name="Customer" discriminator-value="customer" abstract="false">
- <tuplizer class="org.hibernate.test.dynamicentity.tuplizer.MyEntityTuplizer" entity-mode="pojo"/>
+ <tuplizer class="mapping.dynamicentity.tuplizer.MyEntityTuplizer" entity-mode="pojo"/>
<many-to-one name="company" cascade="none" column="comp_id"/>
</subclass>
</class>
<!-- Company interface mapping -->
<class name="Company" table="t_company" abstract="false">
- <tuplizer class="org.hibernate.test.dynamicentity.tuplizer.MyEntityTuplizer" entity-mode="pojo"/>
+ <tuplizer class="mapping.dynamicentity.tuplizer.MyEntityTuplizer" entity-mode="pojo"/>
<id name="id">
<generator class="native"/>
</id>
@@ -42,7 +42,7 @@
</class>
<class name="Address" table="t_address" abstract="false">
- <tuplizer class="org.hibernate.test.dynamicentity.tuplizer.MyEntityTuplizer" entity-mode="pojo"/>
+ <tuplizer class="mapping.dynamicentity.tuplizer.MyEntityTuplizer" entity-mode="pojo"/>
<id name="id">
<generator class="native"/>
</id>
Modified: branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/instrument/domain/Problematic.hbm.xml
===================================================================
--- branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/instrument/domain/Problematic.hbm.xml 2011-01-14 19:36:07 UTC (rev 28251)
+++ branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/instrument/domain/Problematic.hbm.xml 2011-01-14 19:36:29 UTC (rev 28252)
@@ -9,6 +9,6 @@
<generator class="increment" />
</id>
<property name="name" type="string" column="NAME" />
- <property name="bytes" type="org.hibernate.test.instrument.domain.CustomBlobType" column="DATA" lazy="true" />
+ <property name="bytes" type="mapping.instrument.domain.CustomBlobType" column="DATA" lazy="true" />
</class>
</hibernate-mapping>
Modified: branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/lob/LobHolder.java
===================================================================
--- branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/lob/LobHolder.java 2011-01-14 19:36:07 UTC (rev 28251)
+++ branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/lob/LobHolder.java 2011-01-14 19:36:29 UTC (rev 28252)
@@ -20,7 +20,7 @@
* <p/>
* {@link #materializedBlob} is used to hold BLOB data that is materialized
* into a byte array immediately; it is mapped via the
- * {@link org.hibernate.test.lob.MaterializedBlobType}.
+ * {@link org.hibernate.type.MaterializedBlobType}.
* <p/>
* {@link #blobLocator} is used to hold BLOB data that is materialized lazily
* via a JDBC BLOB locator; it is mapped via the
Modified: branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/lob/LobMappings.hbm.xml
===================================================================
--- branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/lob/LobMappings.hbm.xml 2011-01-14 19:36:07 UTC (rev 28251)
+++ branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/lob/LobMappings.hbm.xml 2011-01-14 19:36:29 UTC (rev 28252)
@@ -15,7 +15,7 @@
<property name="materializedClob" column="MAT_CLOB_DATA" type="text" length="15000"/>
<property name="clobLocator" column="CLOB_DATA" type="clob" length="15000" />
- <property name="materializedBlob" column="MAT_BLOB_DATA" type="org.hibernate.test.lob.MaterializedBlobType" length="15000"/>
+ <property name="materializedBlob" column="MAT_BLOB_DATA" type="org.hibernate.type.MaterializedBlobType" length="15000"/>
<property name="blobLocator" column="BLOB_DATA" type="blob" length="15000" />
</class>
Modified: branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/rowid/Point.hbm.xml
===================================================================
--- branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/rowid/Point.hbm.xml 2011-01-14 19:36:07 UTC (rev 28251)
+++ branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/rowid/Point.hbm.xml 2011-01-14 19:36:29 UTC (rev 28252)
@@ -9,7 +9,7 @@
<hibernate-mapping package="mapping.rowid">
- <typedef name="rowid" class="org.hibernate.test.rowid.RowIdType"/>
+ <typedef name="rowid" class="mapping.rowid.RowIdType"/>
<class name="Point" rowid="rowid">
<composite-id>
15 years, 2 months
JBoss Tools SVN: r28251 - in trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping: dynamicentity/tuplizer and 3 other directories.
by jbosstools-commits@lists.jboss.org
Author: vyemialyanchyk
Date: 2011-01-14 14:36:07 -0500 (Fri, 14 Jan 2011)
New Revision: 28251
Modified:
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/cut/Atypes.hbm.xml
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/dynamicentity/tuplizer/Customer.hbm.xml
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/instrument/domain/Problematic.hbm.xml
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/lob/LobHolder.java
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/lob/LobMappings.hbm.xml
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/rowid/Point.hbm.xml
Log:
https://issues.jboss.org/browse/JBIDE-8113 - fixed
Modified: trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/cut/Atypes.hbm.xml
===================================================================
--- trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/cut/Atypes.hbm.xml 2011-01-14 19:21:51 UTC (rev 28250)
+++ trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/cut/Atypes.hbm.xml 2011-01-14 19:36:07 UTC (rev 28251)
@@ -4,5 +4,5 @@
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="mapping.cut">
- <typedef name="money" class="org.hibernate.test.cut.MonetoryAmountUserType"/>
+ <typedef name="money" class="mapping.cut.MonetoryAmountUserType"/>
</hibernate-mapping>
\ No newline at end of file
Modified: trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/dynamicentity/tuplizer/Customer.hbm.xml
===================================================================
--- trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/dynamicentity/tuplizer/Customer.hbm.xml 2011-01-14 19:21:51 UTC (rev 28250)
+++ trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/dynamicentity/tuplizer/Customer.hbm.xml 2011-01-14 19:36:07 UTC (rev 28251)
@@ -12,7 +12,7 @@
entity mapping to use) given an instance of one of these proxies.
-->
<class name="Person" table="t_person" discriminator-value="person" abstract="false">
- <tuplizer class="org.hibernate.test.dynamicentity.tuplizer.MyEntityTuplizer" entity-mode="pojo"/>
+ <tuplizer class="mapping.dynamicentity.tuplizer.MyEntityTuplizer" entity-mode="pojo"/>
<id name="id">
<generator class="native"/>
</id>
@@ -27,14 +27,14 @@
</set>
<subclass name="Customer" discriminator-value="customer" abstract="false">
- <tuplizer class="org.hibernate.test.dynamicentity.tuplizer.MyEntityTuplizer" entity-mode="pojo"/>
+ <tuplizer class="mapping.dynamicentity.tuplizer.MyEntityTuplizer" entity-mode="pojo"/>
<many-to-one name="company" cascade="none" column="comp_id"/>
</subclass>
</class>
<!-- Company interface mapping -->
<class name="Company" table="t_company" abstract="false">
- <tuplizer class="org.hibernate.test.dynamicentity.tuplizer.MyEntityTuplizer" entity-mode="pojo"/>
+ <tuplizer class="mapping.dynamicentity.tuplizer.MyEntityTuplizer" entity-mode="pojo"/>
<id name="id">
<generator class="native"/>
</id>
@@ -42,7 +42,7 @@
</class>
<class name="Address" table="t_address" abstract="false">
- <tuplizer class="org.hibernate.test.dynamicentity.tuplizer.MyEntityTuplizer" entity-mode="pojo"/>
+ <tuplizer class="mapping.dynamicentity.tuplizer.MyEntityTuplizer" entity-mode="pojo"/>
<id name="id">
<generator class="native"/>
</id>
Modified: trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/instrument/domain/Problematic.hbm.xml
===================================================================
--- trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/instrument/domain/Problematic.hbm.xml 2011-01-14 19:21:51 UTC (rev 28250)
+++ trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/instrument/domain/Problematic.hbm.xml 2011-01-14 19:36:07 UTC (rev 28251)
@@ -9,6 +9,6 @@
<generator class="increment" />
</id>
<property name="name" type="string" column="NAME" />
- <property name="bytes" type="org.hibernate.test.instrument.domain.CustomBlobType" column="DATA" lazy="true" />
+ <property name="bytes" type="mapping.instrument.domain.CustomBlobType" column="DATA" lazy="true" />
</class>
</hibernate-mapping>
Modified: trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/lob/LobHolder.java
===================================================================
--- trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/lob/LobHolder.java 2011-01-14 19:21:51 UTC (rev 28250)
+++ trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/lob/LobHolder.java 2011-01-14 19:36:07 UTC (rev 28251)
@@ -20,7 +20,7 @@
* <p/>
* {@link #materializedBlob} is used to hold BLOB data that is materialized
* into a byte array immediately; it is mapped via the
- * {@link org.hibernate.test.lob.MaterializedBlobType}.
+ * {@link org.hibernate.type.MaterializedBlobType}.
* <p/>
* {@link #blobLocator} is used to hold BLOB data that is materialized lazily
* via a JDBC BLOB locator; it is mapped via the
Modified: trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/lob/LobMappings.hbm.xml
===================================================================
--- trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/lob/LobMappings.hbm.xml 2011-01-14 19:21:51 UTC (rev 28250)
+++ trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/lob/LobMappings.hbm.xml 2011-01-14 19:36:07 UTC (rev 28251)
@@ -15,7 +15,7 @@
<property name="materializedClob" column="MAT_CLOB_DATA" type="text" length="15000"/>
<property name="clobLocator" column="CLOB_DATA" type="clob" length="15000" />
- <property name="materializedBlob" column="MAT_BLOB_DATA" type="org.hibernate.test.lob.MaterializedBlobType" length="15000"/>
+ <property name="materializedBlob" column="MAT_BLOB_DATA" type="org.hibernate.type.MaterializedBlobType" length="15000"/>
<property name="blobLocator" column="BLOB_DATA" type="blob" length="15000" />
</class>
Modified: trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/rowid/Point.hbm.xml
===================================================================
--- trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/rowid/Point.hbm.xml 2011-01-14 19:21:51 UTC (rev 28250)
+++ trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/rowid/Point.hbm.xml 2011-01-14 19:36:07 UTC (rev 28251)
@@ -9,7 +9,7 @@
<hibernate-mapping package="mapping.rowid">
- <typedef name="rowid" class="org.hibernate.test.rowid.RowIdType"/>
+ <typedef name="rowid" class="mapping.rowid.RowIdType"/>
<class name="Point" rowid="rowid">
<composite-id>
15 years, 2 months
JBoss Tools SVN: r28250 - trunk/modeshape/plugins/org.jboss.tools.modeshape.rest.
by jbosstools-commits@lists.jboss.org
Author: elvisisking
Date: 2011-01-14 14:21:51 -0500 (Fri, 14 Jan 2011)
New Revision: 28250
Modified:
trunk/modeshape/plugins/org.jboss.tools.modeshape.rest/modeshape-client.jar
Log:
JBIDE-8055 bump soap requirements used by JBT tests, Modeshape and JBDS uberbuild to ER7 release: Updated ModeShape Tools and Teiid Designer to new ModeShape ER7 jars.
Modified: trunk/modeshape/plugins/org.jboss.tools.modeshape.rest/modeshape-client.jar
===================================================================
(Binary files differ)
15 years, 2 months
JBoss Tools SVN: r28249 - in branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test: src/org/hibernate/eclipse/console/test/utils and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: vyemialyanchyk
Date: 2011-01-14 14:19:34 -0500 (Fri, 14 Jan 2011)
New Revision: 28249
Added:
branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/cut/Atypes.hbm.xml
Removed:
branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/cut/types.hbm.xml
Modified:
branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/src/org/hibernate/eclipse/console/test/utils/ConsoleConfigUtils.java
Log:
https://issues.jboss.org/browse/JBIDE-8117 - fixed
Copied: branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/cut/Atypes.hbm.xml (from rev 28245, branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/cut/types.hbm.xml)
===================================================================
--- branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/cut/Atypes.hbm.xml (rev 0)
+++ branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/cut/Atypes.hbm.xml 2011-01-14 19:19:34 UTC (rev 28249)
@@ -0,0 +1,8 @@
+<?xml version="1.0"?>
+<!DOCTYPE hibernate-mapping PUBLIC
+ "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
+ "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
+
+<hibernate-mapping package="mapping.cut">
+ <typedef name="money" class="org.hibernate.test.cut.MonetoryAmountUserType"/>
+</hibernate-mapping>
\ No newline at end of file
Deleted: branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/cut/types.hbm.xml
===================================================================
--- branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/cut/types.hbm.xml 2011-01-14 19:18:57 UTC (rev 28248)
+++ branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/cut/types.hbm.xml 2011-01-14 19:19:34 UTC (rev 28249)
@@ -1,8 +0,0 @@
-<?xml version="1.0"?>
-<!DOCTYPE hibernate-mapping PUBLIC
- "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
- "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
-
-<hibernate-mapping package="mapping.cut">
- <typedef name="money" class="org.hibernate.test.cut.MonetoryAmountUserType"/>
-</hibernate-mapping>
\ No newline at end of file
Modified: branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/src/org/hibernate/eclipse/console/test/utils/ConsoleConfigUtils.java
===================================================================
--- branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/src/org/hibernate/eclipse/console/test/utils/ConsoleConfigUtils.java 2011-01-14 19:18:57 UTC (rev 28248)
+++ branches/jbosstools-3.2.0.CR1/hibernatetools/tests/org.hibernate.eclipse.console.test/src/org/hibernate/eclipse/console/test/utils/ConsoleConfigUtils.java 2011-01-14 19:19:34 UTC (rev 28249)
@@ -2,6 +2,8 @@
import java.io.IOException;
import java.lang.reflect.Field;
+import java.util.ArrayList;
+import java.util.Collections;
import org.apache.tools.ant.filters.StringInputStream;
import org.eclipse.core.resources.IFile;
@@ -49,6 +51,8 @@
/**
* Create hibernate.cfg.xml file content for the particular test package content.
+ * Use alphabetic order to resources in cfg.xml
+ *
* @param pack
* @return a string, which is hibernate.cfg.xml content
* @throws CoreException
@@ -57,21 +61,28 @@
StringBuilder str = new StringBuilder();
str.append(XML_HEADER);
str.append(XML_CFG_START);
- if (pack.getNonJavaResources().length > 0){
+ if (pack.getNonJavaResources().length > 0) {
+ ArrayList<String> collect = new ArrayList<String>();
Object[] ress = pack.getNonJavaResources();
for (int i = 0; i < ress.length; i++) {
if (!(ress[i] instanceof IFile)) {
continue;
}
IFile file = (IFile)ress[i];
- if (file.getName().endsWith(".hbm.xml")){ //$NON-NLS-1$
- str.append("<mapping resource=\"");//$NON-NLS-1$
- str.append(pack.getElementName().replace('.', '/'));
- str.append('/');
- str.append(file.getName());
- str.append("\"/>\n"); //$NON-NLS-1$
+ if (file.getName().endsWith(".hbm.xml")) { //$NON-NLS-1$
+ collect.add(file.getName());
}
}
+ // use alphabetic order to resources in cfg.xml
+ Collections.sort(collect);
+ final String packElementName = pack.getElementName().replace('.', '/');
+ for (int i = 0; i < collect.size(); i++) {
+ str.append("<mapping resource=\"");//$NON-NLS-1$
+ str.append(packElementName);
+ str.append('/');
+ str.append(collect.get(i));
+ str.append("\"/>\n"); //$NON-NLS-1$
+ }
}
str.append(XML_CFG_END);
return str.toString();
15 years, 2 months
JBoss Tools SVN: r28248 - in trunk/hibernatetools/tests/org.hibernate.eclipse.console.test: src/org/hibernate/eclipse/console/test/utils and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: vyemialyanchyk
Date: 2011-01-14 14:18:57 -0500 (Fri, 14 Jan 2011)
New Revision: 28248
Added:
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/cut/Atypes.hbm.xml
Removed:
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/cut/types.hbm.xml
Modified:
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/src/org/hibernate/eclipse/console/test/utils/ConsoleConfigUtils.java
Log:
https://issues.jboss.org/browse/JBIDE-8117 - fixed
Copied: trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/cut/Atypes.hbm.xml (from rev 28039, trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/cut/types.hbm.xml)
===================================================================
--- trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/cut/Atypes.hbm.xml (rev 0)
+++ trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/cut/Atypes.hbm.xml 2011-01-14 19:18:57 UTC (rev 28248)
@@ -0,0 +1,8 @@
+<?xml version="1.0"?>
+<!DOCTYPE hibernate-mapping PUBLIC
+ "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
+ "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
+
+<hibernate-mapping package="mapping.cut">
+ <typedef name="money" class="org.hibernate.test.cut.MonetoryAmountUserType"/>
+</hibernate-mapping>
\ No newline at end of file
Deleted: trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/cut/types.hbm.xml
===================================================================
--- trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/cut/types.hbm.xml 2011-01-14 18:23:43 UTC (rev 28247)
+++ trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/cut/types.hbm.xml 2011-01-14 19:18:57 UTC (rev 28248)
@@ -1,8 +0,0 @@
-<?xml version="1.0"?>
-<!DOCTYPE hibernate-mapping PUBLIC
- "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
- "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
-
-<hibernate-mapping package="mapping.cut">
- <typedef name="money" class="org.hibernate.test.cut.MonetoryAmountUserType"/>
-</hibernate-mapping>
\ No newline at end of file
Modified: trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/src/org/hibernate/eclipse/console/test/utils/ConsoleConfigUtils.java
===================================================================
--- trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/src/org/hibernate/eclipse/console/test/utils/ConsoleConfigUtils.java 2011-01-14 18:23:43 UTC (rev 28247)
+++ trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/src/org/hibernate/eclipse/console/test/utils/ConsoleConfigUtils.java 2011-01-14 19:18:57 UTC (rev 28248)
@@ -2,6 +2,8 @@
import java.io.IOException;
import java.lang.reflect.Field;
+import java.util.ArrayList;
+import java.util.Collections;
import org.apache.tools.ant.filters.StringInputStream;
import org.eclipse.core.resources.IFile;
@@ -49,6 +51,8 @@
/**
* Create hibernate.cfg.xml file content for the particular test package content.
+ * Use alphabetic order to resources in cfg.xml
+ *
* @param pack
* @return a string, which is hibernate.cfg.xml content
* @throws CoreException
@@ -57,21 +61,28 @@
StringBuilder str = new StringBuilder();
str.append(XML_HEADER);
str.append(XML_CFG_START);
- if (pack.getNonJavaResources().length > 0){
+ if (pack.getNonJavaResources().length > 0) {
+ ArrayList<String> collect = new ArrayList<String>();
Object[] ress = pack.getNonJavaResources();
for (int i = 0; i < ress.length; i++) {
if (!(ress[i] instanceof IFile)) {
continue;
}
IFile file = (IFile)ress[i];
- if (file.getName().endsWith(".hbm.xml")){ //$NON-NLS-1$
- str.append("<mapping resource=\"");//$NON-NLS-1$
- str.append(pack.getElementName().replace('.', '/'));
- str.append('/');
- str.append(file.getName());
- str.append("\"/>\n"); //$NON-NLS-1$
+ if (file.getName().endsWith(".hbm.xml")) { //$NON-NLS-1$
+ collect.add(file.getName());
}
}
+ // use alphabetic order to resources in cfg.xml
+ Collections.sort(collect);
+ final String packElementName = pack.getElementName().replace('.', '/');
+ for (int i = 0; i < collect.size(); i++) {
+ str.append("<mapping resource=\"");//$NON-NLS-1$
+ str.append(packElementName);
+ str.append('/');
+ str.append(collect.get(i));
+ str.append("\"/>\n"); //$NON-NLS-1$
+ }
}
str.append(XML_CFG_END);
return str.toString();
15 years, 2 months
JBoss Tools SVN: r28247 - trunk/modeshape/plugins/org.jboss.tools.modeshape.rest.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-01-14 13:23:43 -0500 (Fri, 14 Jan 2011)
New Revision: 28247
Modified:
trunk/modeshape/plugins/org.jboss.tools.modeshape.rest/pom.xml
Log:
https://issues.jboss.org/browse/JBIDE-8055 use SOA-P ER7
Modified: trunk/modeshape/plugins/org.jboss.tools.modeshape.rest/pom.xml
===================================================================
--- trunk/modeshape/plugins/org.jboss.tools.modeshape.rest/pom.xml 2011-01-14 18:09:23 UTC (rev 28246)
+++ trunk/modeshape/plugins/org.jboss.tools.modeshape.rest/pom.xml 2011-01-14 18:23:43 UTC (rev 28247)
@@ -32,10 +32,24 @@
<phase>validate</phase>
<configuration>
<tasks>
- <!-- JBDS-1343 uncomment this to pull a fresh copy of the jar from
- this or another location as needed -->
- <!-- <delete file="modeshape-client.jar" quiet="true" /> <get src="http://jawa05.englab.brq.redhat.com/candidate/SOA-5.1-ER3/JBDS/modeshape-..."
- dest="modeshape-client.jar" usetimestamp="true" /> -->
+ <!-- JBDS-1343, JBIDE-8055 uncomment this to pull a fresh copy of
+ these jars from this or another location as needed -->
+ <!--
+ <property name="jarfolder"
+ value="http://jawa05.englab.brq.redhat.com/candidate/SOA-5.1-ER7/jbds" />
+ <property name="jar1" value="modeshape-client.jar" />
+ <property name="jar2" value="modeshape-common-2.2.1.jar" />
+ <property name="jar3" value="modeshape-graph-2.2.1.jar" />
+ <property name="jar4" value="modeshape-sequencer-ddl-2.2.1.jar" />
+ <delete file="${jar1}" quiet="true" />
+ <get src="${jarfolder}/${jar1}" dest="${jar1}" usetimestamp="true" />
+ <delete file="${jar2}" quiet="true" />
+ <get src="${jarfolder}/${jar2}" dest="${jar2}" usetimestamp="true" />
+ <delete file="${jar3}" quiet="true" />
+ <get src="${jarfolder}/${jar3}" dest="${jar3}" usetimestamp="true" />
+ <delete file="${jar4}" quiet="true" />
+ <get src="${jarfolder}/${jar4}" dest="${jar4}" usetimestamp="true" />
+ -->
</tasks>
</configuration>
<goals>
15 years, 2 months
JBoss Tools SVN: r28246 - in trunk/as/plugins: org.jboss.ide.eclipse.as.rse.ui/src/org/jboss/ide/eclipse/as/rse/ui and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2011-01-14 13:09:23 -0500 (Fri, 14 Jan 2011)
New Revision: 28246
Added:
trunk/as/plugins/org.jboss.ide.eclipse.as.rse.ui/src/org/jboss/ide/eclipse/as/rse/ui/RSEUIMessages.java
trunk/as/plugins/org.jboss.ide.eclipse.as.rse.ui/src/org/jboss/ide/eclipse/as/rse/ui/RSEUIMessages.properties
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.rse.core/src/org/jboss/ide/eclipse/as/rse/core/RSELaunchDelegate.java
trunk/as/plugins/org.jboss.ide.eclipse.as.rse.ui/src/org/jboss/ide/eclipse/as/rse/ui/RSEDeploymentPreferenceUI.java
trunk/as/plugins/org.jboss.ide.eclipse.as.rse.ui/src/org/jboss/ide/eclipse/as/rse/ui/RSELaunchTabProvider.java
Log:
JBIDE-7753 rse stop failing - commit to trunk
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.rse.core/src/org/jboss/ide/eclipse/as/rse/core/RSELaunchDelegate.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.rse.core/src/org/jboss/ide/eclipse/as/rse/core/RSELaunchDelegate.java 2011-01-14 17:12:33 UTC (rev 28245)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.rse.core/src/org/jboss/ide/eclipse/as/rse/core/RSELaunchDelegate.java 2011-01-14 18:09:23 UTC (rev 28246)
@@ -141,18 +141,25 @@
}
public static void launchStopServerCommand(JBossServerBehavior behaviour) {
- behaviour.setServerStopping();
-
ILaunchConfiguration config = null;
String command2 = "";
try {
config = behaviour.getServer().getLaunchConfiguration(false, new NullProgressMonitor());
+ String rseHome = behaviour.getServer().getAttribute(RSEUtils.RSE_SERVER_HOME_DIR, (String)null);
+ if( rseHome == null ) {
+ RSECorePlugin.getDefault().getLog().log(
+ new Status(IStatus.ERROR, RSECorePlugin.PLUGIN_ID,
+ "Remote Server Home not set."));
+ return;
+ }
String defaultCmd = getDefaultStopCommand(behaviour.getServer());
command2 = config == null ? defaultCmd :
config.getAttribute(RSE_SHUTDOWN_COMMAND, defaultCmd);
} catch(CoreException ce) {
}
+ behaviour.setServerStopping();
+
final String command = command2;
IShellService service = null;
try {
@@ -185,6 +192,7 @@
* when the command line comes back, there's an extra space
* "shutdown .sh"
*/
+ System.out.println(out[i]);
String outNoSpace = out[i].getString().replaceAll(" ", "");
String commandNoSpace = command.replaceAll(" ", "");
boolean contains = outNoSpace.contains(commandNoSpace);
@@ -261,6 +269,7 @@
public static String getDefaultStopCommand(IServer server) {
String rseHome = server.getAttribute(RSEUtils.RSE_SERVER_HOME_DIR, "");
+
JBossServer jbs = ServerConverter.getJBossServer(server);
// initialize stop command to something reasonable
String username = jbs.getUsername();
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.rse.ui/src/org/jboss/ide/eclipse/as/rse/ui/RSEDeploymentPreferenceUI.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.rse.ui/src/org/jboss/ide/eclipse/as/rse/ui/RSEDeploymentPreferenceUI.java 2011-01-14 17:12:33 UTC (rev 28245)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.rse.ui/src/org/jboss/ide/eclipse/as/rse/ui/RSEDeploymentPreferenceUI.java 2011-01-14 18:09:23 UTC (rev 28246)
@@ -24,6 +24,7 @@
import org.eclipse.jface.dialogs.ErrorDialog;
import org.eclipse.jface.operation.IRunnableWithProgress;
import org.eclipse.jface.wizard.WizardDialog;
+import org.eclipse.osgi.util.NLS;
import org.eclipse.rse.core.RSECorePlugin;
import org.eclipse.rse.core.events.ISystemModelChangeEvent;
import org.eclipse.rse.core.events.ISystemModelChangeListener;
@@ -148,9 +149,7 @@
rseServerHome.setLayoutData(UIUtil.createFormData2(composite, 5,
null, 0, serverHomeLabel, 5, rseBrowse, -5));
rseServerHome.setText(callback.getServer().getAttribute(
- RSEUtils.RSE_SERVER_HOME_DIR,
- getRuntime() == null ? "" : getRuntime().getRuntime()
- .getLocation().toString()));
+ RSEUtils.RSE_SERVER_HOME_DIR, RSEUIMessages.UNSET_REMOTE_SERVER_HOME));
rseServerHome.addModifyListener(new ModifyListener() {
public void modifyText(ModifyEvent e) {
serverHomeChanged();
@@ -158,7 +157,7 @@
});
Label serverConfigLabel = new Label(this, SWT.NONE);
- serverConfigLabel.setText("Remote Server Configuration: ");
+ serverConfigLabel.setText(RSEUIMessages.REMOTE_SERVER_CONFIG);
rseServerConfig = new Text(this, SWT.SINGLE | SWT.BORDER);
serverConfigLabel.setLayoutData(UIUtil.createFormData2(
rseServerHome, 7, null, 0, 0, 10, null, 0));
@@ -174,7 +173,7 @@
callback.getServer().addPropertyChangeListener(this);
rseTest = new Button(this, SWT.NONE);
- rseTest.setText("Test...");
+ rseTest.setText(RSEUIMessages.TEST);
rseTest.setLayoutData(UIUtil.createFormData2(rseServerHome, 5,
null, 0, null, 0, 100, -5));
rseServerConfig.setLayoutData(UIUtil.createFormData2(rseServerHome,
@@ -277,30 +276,30 @@
s[0] = new Status(IStatus.ERROR, org.jboss.ide.eclipse.as.rse.core.RSECorePlugin.PLUGIN_ID, e.getMessage(), e);
}
rseTest.setEnabled(true);
- showMessageDialog("Test of Remote System", s[0]);
+ showMessageDialog(RSEUIMessages.REMOTE_SERVER_TEST, s[0]);
}
private void showMessageDialog(String title, IStatus s) {
if( s.isOK() )
s = new Status(IStatus.INFO, org.jboss.ide.eclipse.as.rse.core.RSECorePlugin.PLUGIN_ID,
- "The remote server is properly configured.");
+ RSEUIMessages.REMOTE_SERVER_TEST_SUCCESS);
ErrorDialog d = new ErrorDialog(rseServerHome.getShell(), title, null, s, IStatus.INFO | IStatus.ERROR);
d.open();
}
private IStatus testPressed(String home, String config, IProgressMonitor pm) {
- pm.beginTask("Validating Remote Configuration", 1200);
+ pm.beginTask(RSEUIMessages.VALIDATING_REMOTE_CONFIG, 1200);
IHost host = combo.getHost();
if( host == null ) {
pm.done();
- return getTestFailStatus("Host is empty!");
+ return getTestFailStatus(RSEUIMessages.EMPTY_HOST);
}
pm.worked(100);
IFileServiceSubSystem fileSubSystem = RSEPublishMethod.findFileTransferSubSystem(host);
if( fileSubSystem == null ) {
pm.done();
- return getTestFailStatus("No File Sub System found on " + host.getName());
+ return getTestFailStatus(NLS.bind(RSEUIMessages.FILE_SUBSYSTEM_NOT_FOUND, host.getName()));
}
pm.worked(100);
@@ -309,7 +308,7 @@
fileSubSystem.connect(new NullProgressMonitor(), false);
} catch (Exception e) {
pm.done();
- return getTestFailStatus("Error when connecting to file system: " + e.getLocalizedMessage());
+ return getTestFailStatus(NLS.bind(RSEUIMessages.REMOTE_FILESYSTEM_CONNECT_FAILED, e.getLocalizedMessage()));
}
}
pm.worked(300);
@@ -317,7 +316,7 @@
IFileService service = fileSubSystem.getFileService();
if( service == null ) {
pm.done();
- return getTestFailStatus("No File Service for " + host.getName());
+ return getTestFailStatus(NLS.bind(RSEUIMessages.FILESERVICE_NOT_FOUND, host.getName()));
}
pm.worked(100);
@@ -327,7 +326,9 @@
IHostFile file = service.getFile(root2.removeLastSegments(1).toPortableString(), root2.lastSegment(), new NullProgressMonitor());
if( file == null || !file.exists()) {
pm.done();
- return getTestFailStatus("Server's Home folder " + root2 + " not found on " + service.getName() + " for " + host.getName());
+ return getTestFailStatus(NLS.bind(RSEUIMessages.REMOTE_HOME_NOT_FOUND,
+ new Object[]{root2, service.getName(), host.getName()}));
+
}
pm.worked(300);
@@ -335,12 +336,12 @@
file = service.getFile(root2.removeLastSegments(1).toPortableString(), root2.lastSegment(), new NullProgressMonitor());
if( file == null || !file.exists()) {
pm.done();
- return getTestFailStatus("Server's config folder " + root2 + " does not exist");
+ return getTestFailStatus(NLS.bind(RSEUIMessages.REMOTE_CONFIG_NOT_FOUND, root2));
}
pm.worked(300);
} catch(SystemMessageException sme) {
pm.done();
- return getTestFailStatus("Error while checking remote folders: " + sme.getLocalizedMessage());
+ return getTestFailStatus(RSEUIMessages.ERROR_CHECKING_REMOTE_SYSTEM + sme.getLocalizedMessage());
}
pm.done();
return Status.OK_STATUS;
@@ -403,7 +404,7 @@
protected String browseClicked3() {
SystemRemoteFileDialog d = new SystemRemoteFileDialog(
- rseBrowse.getShell(), "Browse remote system", combo.getHost());
+ rseBrowse.getShell(), RSEUIMessages.BROWSE_REMOTE_SYSTEM, combo.getHost());
if( d.open() == Dialog.OK) {
Object o = d.getOutputObject();
if( o instanceof IRemoteFile ) {
@@ -427,10 +428,10 @@
if( !hostName.equals(oldVal) && !updatingFromModelChange) {
callback.execute(new ChangeServerPropertyCommand(
callback.getServer(), RSEUtils.RSE_SERVER_HOST, hostName, "localhost",
- "Change RSE Host"));
+ RSEUIMessages.CHANGE_RSE_HOST));
callback.execute(new ChangeServerPropertyCommand(
callback.getServer(), "hostname", combo.getHost().getHostName(),
- "Change Hostname"));
+ RSEUIMessages.CHANGE_HOSTNAME));
}
}
}
@@ -440,7 +441,7 @@
callback.execute(new ChangeServerPropertyCommand(
callback.getServer(), RSEUtils.RSE_SERVER_HOME_DIR, rseServerHome.getText(),
getRuntime() == null ? "" : getRuntime().getRuntime().getLocation().toString(),
- "Change RSE Server's Home Directory"));
+ RSEUIMessages.CHANGE_REMOTE_SERVER_HOME));
}
}
@@ -449,7 +450,7 @@
callback.execute(new ChangeServerPropertyCommand(
callback.getServer(), RSEUtils.RSE_SERVER_CONFIG, rseServerConfig.getText(),
getRuntime() == null ? "" : getRuntime().getJBossConfiguration(),
- "Change RSE Server's Configuration"));
+ RSEUIMessages.CHANGE_REMOTE_SERVER_CONFIG));
}
}
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.rse.ui/src/org/jboss/ide/eclipse/as/rse/ui/RSELaunchTabProvider.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.rse.ui/src/org/jboss/ide/eclipse/as/rse/ui/RSELaunchTabProvider.java 2011-01-14 17:12:33 UTC (rev 28245)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.rse.ui/src/org/jboss/ide/eclipse/as/rse/ui/RSELaunchTabProvider.java 2011-01-14 18:09:23 UTC (rev 28246)
@@ -56,13 +56,13 @@
setControl(comp);
comp.setLayout(new FormLayout());
Group startGroup = new Group(comp, SWT.NONE);
- startGroup.setText("Start Command");
+ startGroup.setText(RSEUIMessages.RSE_START_COMMAND);
FormData data = UIUtil.createFormData2(0, 5, 0, 150, 0, 5, 100, -5);
startGroup.setLayoutData(data);
startGroup.setLayout(new FormLayout());
autoStartArgs = new Button(startGroup, SWT.CHECK);
- autoStartArgs.setText("Automatically calculate");
+ autoStartArgs.setText(RSEUIMessages.RSE_AUTOMATICALLY_CALCULATE);
data = UIUtil.createFormData2(null, 0, 100, -5, 0, 5, 100, -5);
autoStartArgs.setLayoutData(data);
@@ -72,13 +72,13 @@
// start stop group
Group stopGroup = new Group(comp, SWT.NONE);
- stopGroup.setText("Stop Command");
+ stopGroup.setText(RSEUIMessages.RSE_STOP_COMMAND);
data = UIUtil.createFormData2(startGroup, 5, startGroup, 300, 0, 5, 100, -5);
stopGroup.setLayoutData(data);
stopGroup.setLayout(new FormLayout());
autoStopArgs = new Button(stopGroup, SWT.CHECK);
- autoStopArgs.setText("Automatically calculate");
+ autoStopArgs.setText(RSEUIMessages.RSE_AUTOMATICALLY_CALCULATE);
data = UIUtil.createFormData2(null, 0, 100, -5, 0, 5, 100, -5);
autoStopArgs.setLayoutData(data);
@@ -146,7 +146,7 @@
configuration.setAttribute(RSELaunchDelegate.DETECT_SHUTDOWN_COMMAND, autoStopArgs.getSelection());
}
public String getName() {
- return "RSE Remote Launch";
+ return RSEUIMessages.RSE_REMOTE_LAUNCH;
}
}
Added: trunk/as/plugins/org.jboss.ide.eclipse.as.rse.ui/src/org/jboss/ide/eclipse/as/rse/ui/RSEUIMessages.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.rse.ui/src/org/jboss/ide/eclipse/as/rse/ui/RSEUIMessages.java (rev 0)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.rse.ui/src/org/jboss/ide/eclipse/as/rse/ui/RSEUIMessages.java 2011-01-14 18:09:23 UTC (rev 28246)
@@ -0,0 +1,36 @@
+package org.jboss.ide.eclipse.as.rse.ui;
+
+import org.eclipse.osgi.util.NLS;
+
+public class RSEUIMessages {
+ private static final String BUNDLE_NAME = "org.jboss.ide.eclipse.as.rse.ui.RSEUIMessages"; //$NON-NLS-1$
+ public static String UNSET_REMOTE_SERVER_HOME;
+ public static String REMOTE_SERVER_CONFIG;
+ public static String TEST;
+ public static String REMOTE_SERVER_TEST;
+ public static String REMOTE_SERVER_TEST_SUCCESS;
+ public static String VALIDATING_REMOTE_CONFIG;
+ public static String EMPTY_HOST;
+ public static String FILE_SUBSYSTEM_NOT_FOUND;
+ public static String REMOTE_FILESYSTEM_CONNECT_FAILED;
+ public static String FILESERVICE_NOT_FOUND;
+ public static String REMOTE_HOME_NOT_FOUND;
+ public static String REMOTE_CONFIG_NOT_FOUND;
+ public static String ERROR_CHECKING_REMOTE_SYSTEM;
+ public static String BROWSE_REMOTE_SYSTEM;
+ public static String CHANGE_RSE_HOST;
+ public static String CHANGE_HOSTNAME;
+ public static String CHANGE_REMOTE_SERVER_HOME;
+ public static String CHANGE_REMOTE_SERVER_CONFIG;
+ public static String RSE_REMOTE_LAUNCH;
+ public static String RSE_START_COMMAND;
+ public static String RSE_STOP_COMMAND;
+ public static String RSE_AUTOMATICALLY_CALCULATE;
+
+ static {
+ NLS.initializeMessages(BUNDLE_NAME, RSEUIMessages.class);
+ }
+ private RSEUIMessages() {
+ }
+
+}
Added: trunk/as/plugins/org.jboss.ide.eclipse.as.rse.ui/src/org/jboss/ide/eclipse/as/rse/ui/RSEUIMessages.properties
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.rse.ui/src/org/jboss/ide/eclipse/as/rse/ui/RSEUIMessages.properties (rev 0)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.rse.ui/src/org/jboss/ide/eclipse/as/rse/ui/RSEUIMessages.properties 2011-01-14 18:09:23 UTC (rev 28246)
@@ -0,0 +1,22 @@
+UNSET_REMOTE_SERVER_HOME=REMOTE SERVER HOME
+REMOTE_SERVER_CONFIG=Remote Server Configuration\:
+TEST=Test...
+REMOTE_SERVER_TEST=Test of Remote System
+REMOTE_SERVER_TEST_SUCCESS=The remote server is properly configured.TEST;
+VALIDATING_REMOTE_CONFIG=Validating Remote Configuration
+EMPTY_HOST=Host is empty!
+FILE_SUBSYSTEM_NOT_FOUND=No File Sub System found on RSE system {0}
+REMOTE_FILESYSTEM_CONNECT_FAILED=Error when connecting to file system: {0}
+FILESERVICE_NOT_FOUND=No File Service for {0}
+REMOTE_HOME_NOT_FOUND=Server's Home folder {0} not found on {1} for {2}
+REMOTE_CONFIG_NOT_FOUND=Server's config folder {0} does not exist
+ERROR_CHECKING_REMOTE_SYSTEM=Error while checking remote system\:
+BROWSE_REMOTE_SYSTEM=Browse remote system
+CHANGE_RSE_HOST=Change RSE Host
+CHANGE_HOSTNAME=Change Hostname
+CHANGE_REMOTE_SERVER_HOME=Change RSE Server's Home Directory
+CHANGE_REMOTE_SERVER_CONFIG=Change RSE Server's Configuration
+RSE_REMOTE_LAUNCH=RSE Remote Launch
+RSE_START_COMMAND=Start Command
+RSE_STOP_COMMAND=Stop Command
+RSE_AUTOMATICALLY_CALCULATE=Automatically Calculate
\ No newline at end of file
15 years, 2 months
JBoss Tools SVN: r28245 - branches/jbosstools-3.2.0.CR1/modeshape/plugins/org.jboss.tools.modeshape.rest.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-01-14 12:12:33 -0500 (Fri, 14 Jan 2011)
New Revision: 28245
Modified:
branches/jbosstools-3.2.0.CR1/modeshape/plugins/org.jboss.tools.modeshape.rest/pom.xml
Log:
https://issues.jboss.org/browse/JBIDE-8055 add SOA-P ER7 jars
Modified: branches/jbosstools-3.2.0.CR1/modeshape/plugins/org.jboss.tools.modeshape.rest/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.CR1/modeshape/plugins/org.jboss.tools.modeshape.rest/pom.xml 2011-01-14 16:34:51 UTC (rev 28244)
+++ branches/jbosstools-3.2.0.CR1/modeshape/plugins/org.jboss.tools.modeshape.rest/pom.xml 2011-01-14 17:12:33 UTC (rev 28245)
@@ -32,10 +32,24 @@
<phase>validate</phase>
<configuration>
<tasks>
- <!-- JBDS-1343 uncomment this to pull a fresh copy of the jar from
- this or another location as needed -->
- <!-- <delete file="modeshape-client.jar" quiet="true" /> <get src="http://jawa05.englab.brq.redhat.com/candidate/SOA-5.1-ER3/JBDS/modeshape-..."
- dest="modeshape-client.jar" usetimestamp="true" /> -->
+ <!-- JBDS-1343, JBIDE-8055 uncomment this to pull a fresh copy of
+ these jars from this or another location as needed -->
+ <!--
+ <property name="jarfolder"
+ value="http://jawa05.englab.brq.redhat.com/candidate/SOA-5.1-ER7/jbds" />
+ <property name="jar1" value="modeshape-client.jar" />
+ <property name="jar2" value="modeshape-common-2.2.1.jar" />
+ <property name="jar3" value="modeshape-graph-2.2.1.jar" />
+ <property name="jar4" value="modeshape-sequencer-ddl-2.2.1.jar" />
+ <delete file="${jar1}" quiet="true" />
+ <get src="${jarfolder}/${jar1}" dest="${jar1}" usetimestamp="true" />
+ <delete file="${jar2}" quiet="true" />
+ <get src="${jarfolder}/${jar2}" dest="${jar2}" usetimestamp="true" />
+ <delete file="${jar3}" quiet="true" />
+ <get src="${jarfolder}/${jar3}" dest="${jar3}" usetimestamp="true" />
+ <delete file="${jar4}" quiet="true" />
+ <get src="${jarfolder}/${jar4}" dest="${jar4}" usetimestamp="true" />
+ -->
</tasks>
</configuration>
<goals>
15 years, 2 months
JBoss Tools SVN: r28244 - branches/jbosstools-3.2.0.CR1/requirements/soap.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-01-14 11:34:51 -0500 (Fri, 14 Jan 2011)
New Revision: 28244
Modified:
branches/jbosstools-3.2.0.CR1/requirements/soap/build.properties
Log:
https://issues.jboss.org/browse/JBIDE-8055 use SOA-P ER7
Modified: branches/jbosstools-3.2.0.CR1/requirements/soap/build.properties
===================================================================
--- branches/jbosstools-3.2.0.CR1/requirements/soap/build.properties 2011-01-14 16:31:51 UTC (rev 28243)
+++ branches/jbosstools-3.2.0.CR1/requirements/soap/build.properties 2011-01-14 16:34:51 UTC (rev 28244)
@@ -10,9 +10,9 @@
soap50.build.archive.md5=b9088f7884c7464419623c596dafe25f
soap50.build.archive.root=jboss-soa-p.5.0.0
-# JBDS-1374 add SOA-P 5.1 - http://jawa05.englab.brq.redhat.com/candidate/SOA-5.1-ER5/unsigned/soa-5....
-soap51.build.uri=http://jawa05.englab.brq.redhat.com/candidate/SOA-5.1-ER5/unsigned/
-soap51.build.name=soa-5.1.0.ER5
+# JBDS-1374, JBIDE-8055 add SOA-P 5.1 - http://jawa05.englab.brq.redhat.com/candidate/SOA-5.1-ER7/unsigned/soa-5....
+soap51.build.uri=http://jawa05.englab.brq.redhat.com/candidate/SOA-5.1-ER7/unsigned/
+soap51.build.name=soa-5.1.0.ER7
soap51.build.archive=${soap51.build.name}.zip
-soap51.build.archive.md5=2d8950b67c8143227e6fc2c5aefc91cd
+soap51.build.archive.md5=2084142acbf99b4e71b40013ef131033
soap51.build.archive.root=jboss-soa-p.5.1.0
15 years, 2 months