JBoss Tools SVN: r24236 - in trunk/as/plugins/org.jboss.ide.eclipse.as.core: dtd and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2010-08-17 19:54:07 -0400 (Tue, 17 Aug 2010)
New Revision: 24236
Added:
trunk/as/plugins/org.jboss.ide.eclipse.as.core/dtd/jboss-ds_6_0.dtd
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.core/plugin.xml
Log:
https://jira.jboss.org/browse/JBIDE-6799 jboss-ds_6_0.dtd is missing from XML catalog
dtd added to plugin and registered in XML catalog
Added: trunk/as/plugins/org.jboss.ide.eclipse.as.core/dtd/jboss-ds_6_0.dtd
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/dtd/jboss-ds_6_0.dtd (rev 0)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/dtd/jboss-ds_6_0.dtd 2010-08-17 23:54:07 UTC (rev 24236)
@@ -0,0 +1,540 @@
+<?xml version='1.0' encoding='UTF-8' ?>
+
+<!-- DTD for the JCA 1.5 datasources and connection factory configurations (*-ds.xml) in JBoss-6.0.x,
+ transformed by ConnectionFactoryTemplate.xsl
+
+DOCTYPE datasources
+ PUBLIC "-//JBoss//DTD JBOSS JCA Config 6.0//EN"
+ "http://www.jboss.org/j2ee/dtd/jboss-ds_6_0.dtd"
+
+DOCTYPE connection-factories
+ PUBLIC "-//JBoss//DTD JBOSS JCA Config 6.0//EN"
+ "http://www.jboss.org/j2ee/dtd/jboss-ds_6_0.dtd"
+
+$Id: jboss-ds_6_0.dtd 85945 2009-03-16 19:45:12Z dimitris(a)jboss.org $
+-->
+
+<!--
+The datasources element is the root of the jdbc datasource configuration
+-->
+<!ELEMENT datasources (loader-repository? , (mbean | local-tx-datasource | xa-datasource | no-tx-datasource |
+ ha-local-tx-datasource | ha-xa-datasource)*)>
+
+<!-- Specify a jca-jdbc non-XADatasource (local) wrapper, using no transactions
+-->
+<!ELEMENT no-tx-datasource (jndi-name , use-java-context?, connection-url ,
+url-delimiter?, url-selector-strategy-class-name?,
+driver-class , connection-property* , user-name? , password? ,
+(application-managed-security | security-domain | security-domain-and-application)? ,
+min-pool-size? , max-pool-size? , blocking-timeout-millis? , background-validation?, background-validation-minutes? , idle-timeout-minutes?,
+allocation-retry?, allocation-retry-wait-millis?, validate-on-match?, new-connection-sql?, check-valid-connection-sql?, valid-connection-checker-class-name?,
+exception-sorter-class-name?, stale-connection-checker-class-name?, track-statements?,
+prefill?, use-fast-fail?,
+prepared-statement-cache-size?, share-prepared-statements? , set-tx-query-timeout?, query-timeout?, use-try-lock?,
+metadata?, type-mapping?, depends*)>
+
+<!-- Specify a jca-jdbc non-XADatasource (local) wrapper, using local
+transactions
+-->
+<!ELEMENT local-tx-datasource (jndi-name , use-java-context?, connection-url ,
+url-delimiter?, url-selector-strategy-class-name?,
+driver-class, transaction-isolation? , connection-property* , user-name? , password? ,
+(application-managed-security | security-domain | security-domain-and-application)? ,
+min-pool-size? , max-pool-size? , blocking-timeout-millis? , background-validation?, background-validation-minutes?,
+validate-on-match?, idle-timeout-minutes? , allocation-retry?, allocation-retry-wait-millis?,
+no-tx-separate-pools? , new-connection-sql? , check-valid-connection-sql? ,
+valid-connection-checker-class-name? , exception-sorter-class-name? , stale-connection-checker-class-name?, track-statements? ,
+prefill?, use-fast-fail?,
+prepared-statement-cache-size?, share-prepared-statements? , set-tx-query-timeout?, query-timeout?, use-try-lock?,
+metadata?, type-mapping?, depends*)>
+
+<!-- Specify a jca-jdbc XADatasource wrapper
+-->
+<!ELEMENT xa-datasource (jndi-name , use-java-context?, track-connection-by-tx?, interleaving?, xa-datasource-class,
+xa-datasource-property* , url-property?, url-delimiter?, url-selector-strategy-class-name?,
+isSameRM-override-value? , transaction-isolation? , user-name? , password? , recover-user-name? , recover-password? , no-recover?,
+(application-managed-security | security-domain | security-domain-and-application)? , recover-security-domain?,
+min-pool-size? , max-pool-size? , blocking-timeout-millis? , background-validation?, background-validation-minutes? , idle-timeout-minutes? ,
+allocation-retry?, allocation-retry-wait-millis?, validate-on-match?, no-tx-separate-pools? , xa-resource-timeout?, new-connection-sql? , check-valid-connection-sql? ,
+valid-connection-checker-class-name? , exception-sorter-class-name? , stale-connection-checker-class-name?, track-statements? ,
+prefill?, use-fast-fail?,
+prepared-statement-cache-size?, share-prepared-statements? , set-tx-query-timeout?, query-timeout?, use-try-lock?,
+metadata?, type-mapping?, depends*)>
+
+<!-- The JNDI name under which the DataSource wrapper will be bound. Note that
+this name is relative to the "java:/" prefix unless use-java-context is false.
+Ex:
+<jndi-name>DefaultDS</jndi-name>
+-->
+<!ELEMENT jndi-name (#PCDATA)>
+
+<!-- Setting this to false will bind the DataSource into global jndi
+Ex:
+<use-java-context>false</use-java-context>
+-->
+<!ELEMENT use-java-context (#PCDATA)>
+
+<!-- The JDBC driver connection URL string
+Ex:
+<connection-url>jdbc:hsqldb:hsql://localhost:1701</connection-url>
+-->
+<!ELEMENT connection-url (#PCDATA)>
+
+<!-- The fully qualifed name of the JDBC driver class
+ Ex:
+ <driver-class>org.hsqldb.jdbcDriver</driver-class>
+-->
+<!ELEMENT driver-class (#PCDATA)>
+
+<!-- Set java.sql.Connection transaction isolation level to use.
+The constants defined in the interface Connection are the possible transaction
+isolation levels and include:
+ TRANSACTION_READ_UNCOMMITTED
+ TRANSACTION_READ_COMMITTED
+ TRANSACTION_REPEATABLE_READ
+ TRANSACTION_SERIALIZABLE
+ TRANSACTION_NONE
+
+ Ex:
+ <transaction-isolation>TRANSACTION_SERIALIZABLE</transaction-isoation>
+-->
+<!ELEMENT transaction-isolation (#PCDATA)>
+
+<!-- Specify the default username used when creating a new connection.
+ Ex:
+ <user-name>sa</user-name>
+-->
+<!ELEMENT user-name (#PCDATA)>
+
+<!-- Specify the default password used when creating a new connection.
+ Ex:
+ <password>sa-pass</password>
+-->
+<!ELEMENT password (#PCDATA)>
+
+<!-- Specify the username used when creating a connection during recovery.
+ Ex:
+ <recover-user-name>sa</recover-user-name>
+-->
+<!ELEMENT recover-user-name (#PCDATA)>
+
+<!-- Specify the password used when creating a connection during recovery.
+ Ex:
+ <recover-password>sa-pass</recover-password>
+-->
+<!ELEMENT recover-password (#PCDATA)>
+
+<!-- Specify if the xa-datasource should be excluded from recovery.
+ Default: false
+ Ex:
+ <no-recover>true</no-recover>
+-->
+<!ELEMENT no-recover (#PCDATA)>
+
+<!-- Indicates that app supplied parameters (such as from getConnection(user, pw))
+are used to distinguish connections in the pool.
+ Ex:
+ <application-managed-security/>
+-->
+<!ELEMENT application-managed-security EMPTY>
+
+<!-- Indicates Subject (from security domain) are used to distinguish connections in the pool.
+The content of the security-domain is the name of the JAAS security manager that will handle
+authentication. This name correlates to the JAAS login-config.xml descriptor
+application-policy/name attribute.
+
+ Ex:
+ <security-domain>HsqlDbRealm</security-domain>
+-->
+<!ELEMENT security-domain (#PCDATA)>
+
+<!-- Indicates that either app supplied parameters (such as from
+getConnection(user, pw)) or Subject (from security domain) are used to
+distinguish connections in the pool. The content of the
+security-domain is the name of the JAAS security manager that will handle
+authentication. This name correlates to the JAAS login-config.xml descriptor
+application-policy/name attribute.
+
+ Ex:
+ <security-domain-and-application>HsqlDbRealm</security-domain-and-application>
+-->
+<!ELEMENT security-domain-and-application (#PCDATA)>
+
+<!-- Indicates the Subject (from security domain) that are used to distinguish connection used for recovery.
+The content of the recover-security-domain is the name of the JAAS security manager that will handle
+authentication. This name correlates to the JAAS login-config.xml descriptor
+application-policy/name attribute.
+
+ Ex:
+ <recover-security-domain>OracleDbRealm</recover-security-domain>
+-->
+<!ELEMENT recover-security-domain (#PCDATA)>
+
+<!-- Whether to use separete pools for connection retrieved in a transaction
+ and those retieved outside a transaction
+e.g.
+ <no-tx-separate-pools/>
+-->
+<!ELEMENT no-tx-separate-pools EMPTY>
+
+<!-- The min-pool-size element indicates the minimum number of connections a
+pool should hold. These are not created until a Subject is known from a
+request for a connection. This default to 0.
+
+ Ex:
+ <min-pool-size>1</min-pool-size>
+-->
+<!ELEMENT min-pool-size (#PCDATA)>
+
+<!-- The max-pool-size element indicates the maximum number of connections for a
+pool. No more than MaxSize connections will be created in each sub-pool. This
+defaults to 20.
+-->
+<!ELEMENT max-pool-size (#PCDATA)>
+
+<!-- The blocking-timeout-millis element indicates the maximum time in
+milliseconds to block while waiting for a connection before throwing an
+exception. Note that this blocks only while waiting for a permit for a
+connection, and will never throw an exception if creating a new connection
+takes an inordinately long time. The default is 30000 (30 seconds).
+-->
+<!ELEMENT blocking-timeout-millis (#PCDATA)>
+
+<!-- The idle-timeout-minutes elements indicates the maximum time in
+minutes a connection may be idle before being closed. The actual maximum time
+depends also on the IdleRemover scan time, which is 1/2 the smallest
+idle-timeout-minutes of any pool.
+-->
+<!ELEMENT idle-timeout-minutes (#PCDATA)>
+
+<!-- The allocation retry element indicates the number of times that allocating
+a connection should be tried before throwing an exception. The default is 0.
+-->
+<!ELEMENT allocation-retry (#PCDATA)>
+
+<!-- The allocation retry wait millis element indicates the time in
+milliseconds to wait between retrying to allocate a connection.
+The default is 5000 (5 seconds).
+-->
+<!ELEMENT allocation-retry-wait-millis (#PCDATA)>
+
+<!-- The validate-on-match element indicates whether or not connection level validation should be done when a connection factory attempts to
+match a managed connection for a given set. This is typically exclusive to the use of background validation -->
+
+<!ELEMENT validate-on-match (#PCDATA)>
+
+<!-- An element to specify that connections should be validated on a background thread versus being validated
+ prior to use-->
+<!ELEMENT background-validation (#PCDATA)>
+
+<!-- The background-validation-minutes element specifies the amount of time, in minutes, that background validation
+ will run. -->
+<!ELEMENT background-validation-minutes (#PCDATA)>
+
+<!-- An element to specify that all intermediate end(suspend) and
+start(resume) calls. Also, all work on one tx will go through one
+connection.
+A side effect of this (currently at least) is that a connection will only
+be usable by one tx until the tx commits.
+ Ex:
+ <track-connection-by-tx/>
+DEPRECATED: this element is now deprecated (it is assumed to present by default, also see <interleaving/>)
+-->
+<!ELEMENT track-connection-by-tx EMPTY>
+
+<!-- An element to enable interleaving for XA connection factories
+ Ex:
+ <interleaving/>
+-->
+<!ELEMENT interleaving EMPTY>
+
+<!-- The fully qualifed name of the javax.sql.XADataSource implementation class.
+ Ex:
+ <xa-datasource-class>com.informix.jdbcx.IfxXADataSource</xa-datasource-class>
+-->
+<!ELEMENT xa-datasource-class (#PCDATA)>
+
+<!-- Specify a property to assign to the XADataSource implementation class.
+Each property is identified by the name attribute and the property value is
+given by the xa-datasource-property element content. The property is mapped
+onto the XADataSource implementation by looking for a JavaBeans style
+getter method for the property name. If found, the value of the property is
+set using the JavaBeans setter with the element text translated to the true
+property type using the java.beans.PropertyEditor for the type.
+
+ Ex:
+ <xa-datasource-property name="IfxWAITTIME">10</xa-datasource-property>
+ <xa-datasource-property name="IfxIFXHOST">myhost.mydomain.com</xa-datasource-property>
+ <xa-datasource-property name="PortNumber">1557</xa-datasource-property>
+ <xa-datasource-property name="DatabaseName">mydb</xa-datasource-property>
+ <xa-datasource-property name="ServerName">myserver</xa-datasource-property>
+-->
+<!ELEMENT xa-datasource-property (#PCDATA)>
+
+<!-- The xa-datasource-property name attribute specifies the name of the
+XADataSource attribute the xa-datasource-property element content provides
+the value of.
+-->
+<!ATTLIST xa-datasource-property name CDATA #REQUIRED>
+
+<!-- The isSameRM-override-value element allows one to unconditionally set
+whether the javax.transaction.xa.XAResource.isSameRM(XAResource) returns
+true or false.
+
+Ex:
+<isSameRM-override-value>true</isSameRM-override-value>
+-->
+<!ELEMENT isSameRM-override-value (#PCDATA)>
+
+<!-- The connection-property element allows you to pass in arbitrary connection
+properties to the Driver.connect(url, props) method. Each connection-property
+specifies a string name/value pair with the property name coming from the
+name attribute and the value coming from the element content.
+
+ Ex:
+ <connection-property name="char.encoding">UTF-8</connection-property>
+-->
+<!ELEMENT connection-property (#PCDATA)>
+
+<!-- The connection-property name attribute gives the name of the connection
+property.
+-->
+<!ATTLIST connection-property name CDATA #REQUIRED>
+
+<!-- Specify an SQL statement to execute whenever a connection is added to
+the connection pool.
+-->
+<!ELEMENT new-connection-sql (#PCDATA)>
+
+<!-- Specify an SQL statement to check validity of a pool connection. This
+may be called when managed connection is taken from pool for use.
+-->
+<!ELEMENT check-valid-connection-sql (#PCDATA)>
+
+<!-- An org.jboss.resource.adapter.jdbc.ValidConnectionChecker that provides
+a SQLException isValidConnection(Connection e) method to validate is a connection
+is valid. An exception means the connection is destroyed.
+This overrides the check-valid-connection-sql when present.
+
+Ex:
+<exception-sorter-class-name>
+ org.jboss.resource.adapter.jdbc.vendor.OracleValidConnectionChecker
+</exception-sorter-class-name>
+-->
+<!ELEMENT valid-connection-checker-class-name (#PCDATA)>
+
+<!-- An org.jboss.resource.adapter.jdbc.ExceptionSorter that provides
+a boolean isExceptionFatal(SQLException e) method to validate is an exception
+should be broadcast to all javax.resource.spi.ConnectionEventListener as
+a connectionErrorOccurred message.
+
+Ex:
+<exception-sorter-class-name>
+ org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter
+</exception-sorter-class-name>
+<exception-sorter-class-name>
+ org.jboss.resource.adapter.jdbc.vendor.SybaseExceptionSorter
+</exception-sorter-class-name>
+-->
+<!ELEMENT exception-sorter-class-name (#PCDATA)>
+
+<!-- An org.jboss.resource.adapter.jdbc.StaleConnectionChecker that provides
+a boolean isStaleConnection(SQLException e) method which if it it returns
+true will wrap the exception in an
+org.jboss.resource.adapter.jdbc.StaleConnectionException
+which is a subclass of SQLException.
+
+Ex:
+<stale-connection-checker-class-name>
+ org.jboss.resource.adapter.jdbc.vendor.OracleStaleConnectionChecker
+</stale-connection-checker-class-name>
+-->
+<!ELEMENT stale-connection-checker-class-name (#PCDATA)>
+
+<!-- Whether to check for unclosed statements when a
+ connection is returned to the pool and result sets are
+ closed when a statement is closed/return to the prepared
+ statement cache.
+ valid values are:
+ false - do not track statements and results
+ true - track statements and result sets and warn when they are not closed
+ nowarn - track statements but do no warn about them being unclosed (the default)
+ e.g.
+ <track-statements>nowarn</track-statements>
+-->
+<!ELEMENT track-statements EMPTY>
+
+<!-- Whether to attempt to prefill the connection pool. Empty element denotes a false value.
+ e.g.
+ <prefill>true</prefill>
+ -->
+<!ELEMENT prefill (#PCDATA) >
+
+<!-- Whether fail a connection allocation on the first connection if it is invalid (true)
+ or keep trying until the pool is exhausted of all potential connections (false)
+
+ default false.
+ e.g.
+ <use-fast-fail>true</use-fast-fail>
+ -->
+<!ELEMENT use-fast-fail (#PCDATA) >
+
+<!-- The number of prepared statements per connection in an LRU cache
+-->
+<!ELEMENT prepared-statement-cache-size (#PCDATA)>
+
+<!-- whether to share prepare statements, i.e. whether asking for same
+ statement twice without closing uses the same underlying prepared statement.
+
+ The default is false.
+ e.g.
+ <share-prepared-statements/>
+-->
+<!ELEMENT share-prepared-statements EMPTY>
+
+<!-- whether to set the query timeout based on the time remaining until transaction timeout,
+ any configured query timeout will be used if there is no transaction.
+
+ The default is false.
+ e.g.
+ <set-tx-query-timeout/>
+-->
+<!ELEMENT set-tx-query-timeout EMPTY>
+
+<!-- Any configured query timeout in seconds
+
+ The default is no timeout
+ e.g. 5 minutes
+ <query-timeout>300</query-timeout>
+-->
+<!ELEMENT query-timeout (#PCDATA)>
+
+<!-- Any configured timeout for internal locks on the resource adapter objects in seconds
+
+ The default is a 60 second timeout
+ e.g. 5 minutes
+ <use-try-lock>300</use-try-lock>
+-->
+<!ELEMENT use-try-lock (#PCDATA)>
+
+<!-- The depends element specifies the JMX ObjectName string of a service
+that the connection manager services depend on.
+
+ Ex:
+ <depends>jboss:service=Hypersonic</depends>
+-->
+<!ELEMENT depends (#PCDATA)>
+
+<!-- The connection-factories element is the root of the generic jca adaptor section
+-->
+<!ELEMENT connection-factories (loader-repository? , (mbean | tx-connection-factory | no-tx-connection-factory)*)>
+
+<!-- The loader repository -->
+<!ELEMENT loader-repository ANY>
+
+<!-- Any embedded mbean -->
+<!ELEMENT mbean ANY>
+
+<!-- The tx-connection-factory element is used to configure generic resource
+adapters supporting transactions
+-->
+<!ELEMENT tx-connection-factory (jndi-name , (local-transaction | xa-transaction) ,
+track-connection-by-tx? , rar-name?, connection-definition?, config-property* ,
+(application-managed-security | security-domain | security-domain-and-application)? ,
+min-pool-size? , max-pool-size? , blocking-timeout-millis? , background-validation?, background-validation-minutes? , idle-timeout-minutes? ,
+allocation-retry?, allocation-retry-wait-millis?, no-tx-separate-pools?, prefill?, use-fast-fail?, xa-resource-timeout?,
+metadata?, type-mapping?, depends*)>
+
+<!-- The no-tx-connection-factory element is used to configure generic resource
+adapters that do not support transactions
+-->
+<!ELEMENT no-tx-connection-factory (jndi-name , rar-name?, connection-definition? , config-property* ,
+(application-managed-security | security-domain | security-domain-and-application)? ,
+min-pool-size? , max-pool-size? , blocking-timeout-millis? , background-validation?, background-validation-minutes? , idle-timeout-minutes? ,
+allocation-retry?, allocation-retry-wait-millis?, prefill?, use-fast-fail?, metadata?, type-mapping?, depends*)>
+
+<!-- The rar deployment to associate with the connection manager mbean.
+e.g. jms-ra.rar or myapplication.ear#my.rar for nested rars
+-->
+<!ELEMENT rar-name (#PCDATA)>
+
+<!-- The connection definition inside the rar deployment uniquely identified by the
+connection factory interface, e.g. javax.sql.DataSource
+-->
+<!ELEMENT connection-definition (#PCDATA)>
+
+<!-- Passed to XAResource.setTransactionTimeout()
+
+ Default is zero which does not invoke the setter
+ e.g. 5 minutes
+ <xa-resource-timeout>300</xa-resource-timeout>
+-->
+<!ELEMENT xa-resource-timeout (#PCDATA)>
+
+<!-- The xa-transaction element is used to mark that the tx-connection-factory
+supports XA transactions.
+-->
+<!ELEMENT xa-transaction EMPTY>
+
+<!-- The local-transaction element is used to mark that the tx-connection-factory
+supports local transactions.
+-->
+<!ELEMENT local-transaction EMPTY>
+
+<!-- The config-property specifies a mannaged connection factory property.
+-->
+<!ELEMENT config-property (#PCDATA)>
+
+<!-- The config-property name attribute gives the name of the connection
+factory property.
+-->
+<!ATTLIST config-property name CDATA #REQUIRED>
+
+<!-- The config-property type attribute gives the name of the connection
+factory property.
+-->
+<!ATTLIST config-property type CDATA #REQUIRED>
+
+<!-- The type mapping from conf/standardjboss.xml -->
+<!ELEMENT type-mapping (#PCDATA)>
+
+<!-- For backwards compatibility use type-mapping -->
+<!ELEMENT metadata (type-mapping)>
+
+<!--
+Use local-tx-datasource
+-->
+<!ELEMENT ha-local-tx-datasource (jndi-name, use-java-context?, connection-url, url-delimiter,
+driver-class, transaction-isolation? , connection-property* , user-name? , password?,
+(application-managed-security | security-domain | security-domain-and-application)? ,
+min-pool-size? , max-pool-size? , blocking-timeout-millis? , idle-timeout-minutes? ,
+allocation-retry?, allocation-retry-wait-millis?, no-tx-separate-pools? , new-connection-sql? , check-valid-connection-sql? ,
+valid-connection-checker-class-name? , exception-sorter-class-name? , track-statements? ,
+prepared-statement-cache-size?, share-prepared-statements? , set-tx-query-timeout?, query-timeout?, use-try-lock?,
+metadata?, type-mapping?, depends*)>
+
+<!--
+Use xa-datasource
+-->
+<!ELEMENT ha-xa-datasource (jndi-name , use-java-context?, track-connection-by-tx , xa-datasource-class ,
+xa-datasource-property* , url-property, url-delimiter, isSameRM-override-value? , transaction-isolation? ,
+user-name? , password? ,
+(application-managed-security | security-domain | security-domain-and-application)? ,
+min-pool-size? , max-pool-size? , blocking-timeout-millis? , idle-timeout-minutes? ,
+allocation-retry?, allocation-retry-wait-millis?, no-tx-separate-pools? , xa-resource-timeout? ,
+new-connection-sql? , check-valid-connection-sql? ,
+valid-connection-checker-class-name? , exception-sorter-class-name? , track-statements? ,
+prepared-statement-cache-size?, share-prepared-statements? , set-tx-query-timeout?, query-timeout?, use-try-lock?,
+type-mapping?, depends*)>
+
+<!-- Specifies the delimeter for URLs in connection-url for ha datasources
+-->
+<!ELEMENT url-delimiter (#PCDATA)>
+
+<!-- A class that implements org.jboss.resource.adapter.jdbc.URLSelectorStrategy
+-->
+<!ELEMENT url-selector-strategy-class-name (#PCDATA)>
+
+<!-- For HA XA datasource specifies the name of an xa-datasource-property that contains a list of URLs
+-->
+<!ELEMENT url-property (#PCDATA)>
Property changes on: trunk/as/plugins/org.jboss.ide.eclipse.as.core/dtd/jboss-ds_6_0.dtd
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/plugin.xml
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/plugin.xml 2010-08-17 23:38:00 UTC (rev 24235)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/plugin.xml 2010-08-17 23:54:07 UTC (rev 24236)
@@ -954,6 +954,10 @@
uri="platform:/plugin/org.jboss.ide.eclipse.as.core/dtd/jboss-ds_5_0.dtd"
webURL="http://www.jboss.org/j2ee/dtd/jboss-ds_5_0.dtd"/>
<public
+ publicId="-//JBoss//DTD JBOSS JCA Config 6.0//EN"
+ uri="platform:/plugin/org.jboss.ide.eclipse.as.core/dtd/jboss-ds_6_0.dtd"
+ webURL="http://www.jboss.org/j2ee/dtd/jboss-ds_6_0.dtd"/>
+ <public
publicId="-//JBoss//DTD MBean Service 5.0//EN"
uri="platform:/plugin/org.jboss.ide.eclipse.as.core/dtd/jboss-service_5_0.dtd"
webURL="http://www.jboss.org/j2ee/dtd/jboss-service_5_0.dtd"/>
15 years, 4 months
JBoss Tools SVN: r24235 - trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/project/facet.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2010-08-17 19:38:00 -0400 (Tue, 17 Aug 2010)
New Revision: 24235
Modified:
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/project/facet/SeamProjectCreator.java
Log:
https://jira.jboss.org/browse/JBDS-1292 JVM 1.4 is chosed by default when creating a ejb3 project
Modified: trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/project/facet/SeamProjectCreator.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/project/facet/SeamProjectCreator.java 2010-08-17 23:28:02 UTC (rev 24234)
+++ trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/project/facet/SeamProjectCreator.java 2010-08-17 23:38:00 UTC (rev 24235)
@@ -14,6 +14,9 @@
import java.io.FilenameFilter;
import java.io.IOException;
import java.util.Collections;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
import org.apache.tools.ant.types.FilterSet;
import org.apache.tools.ant.types.FilterSetCollection;
@@ -31,8 +34,15 @@
import org.eclipse.core.runtime.preferences.IScopeContext;
import org.eclipse.debug.core.DebugPlugin;
import org.eclipse.debug.core.ILaunchManager;
+import org.eclipse.jdt.core.IClasspathEntry;
+import org.eclipse.jdt.core.IJavaProject;
+import org.eclipse.jdt.core.JavaCore;
+import org.eclipse.jdt.launching.IVMInstall;
+import org.eclipse.jdt.launching.JavaRuntime;
import org.eclipse.jst.common.project.facet.JavaFacetUtils;
import org.eclipse.jst.common.project.facet.core.ClasspathHelper;
+import org.eclipse.jst.common.project.facet.core.JavaFacet;
+import org.eclipse.jst.common.project.facet.core.internal.JavaFacetUtil;
import org.eclipse.wst.common.componentcore.ComponentCore;
import org.eclipse.wst.common.componentcore.datamodel.properties.IFacetDataModelProperties;
import org.eclipse.wst.common.componentcore.resources.IVirtualComponent;
@@ -110,7 +120,20 @@
protected File ejbMetaInf;
protected File droolsLibFolder;
+
+ private static final Map<String,String> COMPILER_LEVEL_TO_EXEC_ENV = new HashMap<String,String>();
+
+ static
+ {
+ COMPILER_LEVEL_TO_EXEC_ENV.put( JavaCore.VERSION_1_3, "J2SE-1.3" ); //$NON-NLS-1$
+ COMPILER_LEVEL_TO_EXEC_ENV.put( JavaCore.VERSION_1_4, "J2SE-1.4" ); //$NON-NLS-1$
+ COMPILER_LEVEL_TO_EXEC_ENV.put( JavaCore.VERSION_1_5, "J2SE-1.5" ); //$NON-NLS-1$
+ COMPILER_LEVEL_TO_EXEC_ENV.put( JavaCore.VERSION_1_6, "JavaSE-1.6" ); //$NON-NLS-1$
+ COMPILER_LEVEL_TO_EXEC_ENV.put( JavaCore.VERSION_1_7, "JavaSE-1.7" ); //$NON-NLS-1$
+ }
+ private static final IPath CPE_PREFIX_FOR_EXEC_ENV = new Path( "org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType" ); //$NON-NLS-1$
+
/**
* @param model Seam facet data model
* @param seamWebProject Seam web project
@@ -277,6 +300,9 @@
SeamFacetAbstractInstallDelegate.toggleHibernateOnProject(ejbProjectToBeImported, consoleName);
IProjectFacet sf = ProjectFacetsManager.getProjectFacet("jst.ejb");
IProjectFacetVersion pfv = ProjectFacetsManager.create(ejbProjectToBeImported).getInstalledVersion(sf);
+ IProjectFacet jf = JavaFacet.FACET;
+ IProjectFacetVersion jfv = ProjectFacetsManager.create(ejbProjectToBeImported).getInstalledVersion(jf);
+ JavaFacetUtil.resetClasspath(ejbProjectToBeImported, null, jfv);
ClasspathHelper.addClasspathEntries(ejbProjectToBeImported, pfv);
WtpUtils.reconfigure(ejbProjectToBeImported,monitor);
IProject earProjectToBeImported = wsRoot.getProject(earProjectName);
@@ -293,12 +319,32 @@
ResourcesUtils.importExistingProject(testProjectToBeImported, wsPath + "/" + testProjectName, testProjectName, monitor, true);
// Set up compilation level for test project.
+
String level = JavaFacetUtils.getCompilerLevel(seamWebProject);
String testLevel = JavaFacetUtils.getCompilerLevel(testProjectToBeImported);
if (!testLevel.equals(level)) {
JavaFacetUtils.setCompilerLevel(testProjectToBeImported, level);
}
testProjectToBeImported.refreshLocal(IResource.DEPTH_INFINITE, monitor);
+
+ final IVMInstall vm = JavaRuntime.getDefaultVMInstall();
+ if (vm != null) {
+ int jreIndex = getJreContainer(testProjectToBeImported);
+ final IPath path = CPE_PREFIX_FOR_EXEC_ENV.append(getCorrespondingExecutionEnvironment(level));
+ final IClasspathEntry cpe = JavaCore.newContainerEntry(path);
+ IJavaProject javaProject = JavaCore.create(testProjectToBeImported);
+ IClasspathEntry[] entries = javaProject.getRawClasspath();
+ if (jreIndex == -1) {
+ IClasspathEntry[] newEntries = new IClasspathEntry[entries.length+1];
+ System.arraycopy( entries, 0, newEntries, 1, entries.length );
+ newEntries[0] = cpe;
+ javaProject.setRawClasspath(newEntries, null);
+ } else {
+ entries[jreIndex]=cpe;
+ javaProject.setRawClasspath(entries, null);
+ }
+ }
+
SeamFacetAbstractInstallDelegate.toggleHibernateOnProject(testProjectToBeImported, consoleName);
}
@@ -308,6 +354,31 @@
WtpUtils.reconfigure(testProjectToBeImported, monitor);
}
+ private static String getCorrespondingExecutionEnvironment( String compilerLevel )
+ {
+ final String res = COMPILER_LEVEL_TO_EXEC_ENV.get( compilerLevel );
+
+ if( res == null )
+ {
+ throw new IllegalArgumentException( compilerLevel );
+ }
+
+ return res;
+ }
+
+ private static int getJreContainer(final IProject proj)
+ throws CoreException {
+ final IJavaProject jproj = JavaCore.create(proj);
+ final IClasspathEntry[] cp = jproj.getRawClasspath();
+ for (int i = 0; i < cp.length; i++) {
+ final IClasspathEntry cpe = cp[i];
+ if (cpe.getEntryKind() == IClasspathEntry.CPE_CONTAINER && cpe.getPath().segment(0) .equals(JavaRuntime.JRE_CONTAINER)) {
+ return i;
+ }
+ }
+ return -1;
+ }
+
/**
* Creates test project for given seam web project.
*/
15 years, 4 months
JBoss Tools SVN: r24234 - in trunk/gwt/plugins: org.jboss.tools.gwt.ui and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2010-08-17 19:28:02 -0400 (Tue, 17 Aug 2010)
New Revision: 24234
Modified:
trunk/gwt/plugins/org.jboss.tools.gwt.core/about.html
trunk/gwt/plugins/org.jboss.tools.gwt.ui/about.html
Log:
error fixed in about.html title for GWT integration component plugins
Modified: trunk/gwt/plugins/org.jboss.tools.gwt.core/about.html
===================================================================
--- trunk/gwt/plugins/org.jboss.tools.gwt.core/about.html 2010-08-17 23:09:47 UTC (rev 24233)
+++ trunk/gwt/plugins/org.jboss.tools.gwt.core/about.html 2010-08-17 23:28:02 UTC (rev 24234)
@@ -14,7 +14,7 @@
</style>
</head>
<body>
-<h1JBoss GWT Integration</h1>
+<h1>JBoss GWT Integration</h1>
<p>
This plugin is part of the JBoss Tools developed by the <a href="http://www.jboss.com">JBoss Inc.</a>
Modified: trunk/gwt/plugins/org.jboss.tools.gwt.ui/about.html
===================================================================
--- trunk/gwt/plugins/org.jboss.tools.gwt.ui/about.html 2010-08-17 23:09:47 UTC (rev 24233)
+++ trunk/gwt/plugins/org.jboss.tools.gwt.ui/about.html 2010-08-17 23:28:02 UTC (rev 24234)
@@ -14,7 +14,7 @@
</style>
</head>
<body>
-<h1JBoss GWT Integration</h1>
+<h1>JBoss GWT Integration</h1>
<p>
This plugin is part of the JBoss Tools developed by the <a href="http://www.jboss.com">JBoss Inc.</a>
15 years, 4 months
JBoss Tools SVN: r24233 - in trunk: build and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2010-08-17 19:09:47 -0400 (Tue, 17 Aug 2010)
New Revision: 24233
Modified:
trunk/build/pom.xml
trunk/pom.xml
Log:
https://jira.jboss.org/browse/JBIDE-6837 Iclude deltacloud component in JBT build and update site
deltacloud component included in root aggregator project
Modified: trunk/build/pom.xml
===================================================================
--- trunk/build/pom.xml 2010-08-17 23:06:50 UTC (rev 24232)
+++ trunk/build/pom.xml 2010-08-17 23:09:47 UTC (rev 24233)
@@ -559,6 +559,27 @@
</modules>
</profile>
+ <profile>
+ <id>gwt</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <modules>
+ <module>../gwt</module>
+ </modules>
+ </profile>
+
+ <profile>
+ <id>deltacloud</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <modules>
+ <module>../deltacloud</module>
+ </modules>
+ </profile>
+
+
<profile>
<id>drools</id>
<activation>
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-08-17 23:06:50 UTC (rev 24232)
+++ trunk/pom.xml 2010-08-17 23:09:47 UTC (rev 24233)
@@ -48,6 +48,8 @@
ant -q -->
<!-- IF YOU REMOVE A MODULE, be sure to also remove it from site/site.xml
and build/aggregate/site/site.xml or the build will break! -->
+ <module>gwt</module>
+ <module>deltacloud</module>
<module>drools</module>
<module>runtime</module>
<module>site</module>
15 years, 4 months
JBoss Tools SVN: r24232 - in trunk/gwt: plugins/org.jboss.tools.gwt.core and 2 other directories.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2010-08-17 19:06:50 -0400 (Tue, 17 Aug 2010)
New Revision: 24232
Added:
trunk/gwt/features/org.jboss.tools.gwt.feature/feature.properties
trunk/gwt/features/org.jboss.tools.gwt.feature/license.html
trunk/gwt/plugins/org.jboss.tools.gwt.core/about.html
trunk/gwt/plugins/org.jboss.tools.gwt.ui/about.html
trunk/gwt/site/.project
trunk/gwt/site/site.xml
Modified:
trunk/gwt/features/org.jboss.tools.gwt.feature/
trunk/gwt/features/org.jboss.tools.gwt.feature/build.properties
trunk/gwt/features/org.jboss.tools.gwt.feature/feature.xml
trunk/gwt/plugins/org.jboss.tools.gwt.core/
trunk/gwt/plugins/org.jboss.tools.gwt.core/build.properties
trunk/gwt/plugins/org.jboss.tools.gwt.ui/
trunk/gwt/plugins/org.jboss.tools.gwt.ui/build.properties
trunk/gwt/site/pom.xml
Log:
https://jira.jboss.org/browse/JBIDE-6836 Include GWT Features in JBossTools update site in "Application Development" category
- licence.html added to feature
- internationalized plugin texts
- about.html added to plugins
- gwt core is marked as unpacked to let acces zips with sample application in zip inside it
- update site added for nightly build
Property changes on: trunk/gwt/features/org.jboss.tools.gwt.feature
___________________________________________________________________
Name: svn:ignore
+ target
Modified: trunk/gwt/features/org.jboss.tools.gwt.feature/build.properties
===================================================================
--- trunk/gwt/features/org.jboss.tools.gwt.feature/build.properties 2010-08-17 22:59:10 UTC (rev 24231)
+++ trunk/gwt/features/org.jboss.tools.gwt.feature/build.properties 2010-08-17 23:06:50 UTC (rev 24232)
@@ -1 +1,3 @@
-bin.includes = feature.xml
+bin.includes = feature.xml,\
+ license.html,\
+ feature.properties
Added: trunk/gwt/features/org.jboss.tools.gwt.feature/feature.properties
===================================================================
--- trunk/gwt/features/org.jboss.tools.gwt.feature/feature.properties (rev 0)
+++ trunk/gwt/features/org.jboss.tools.gwt.feature/feature.properties 2010-08-17 23:06:50 UTC (rev 24232)
@@ -0,0 +1,49 @@
+###############################################################################
+# Copyright (c) 2010 JBoss by Red Hat and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# JBoss by Red Hat - Initial implementation.
+##############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=JBoss GWT Integration
+
+# "providerName" property - name of the company that provides the feature
+providerName=JBoss by Red Hat
+
+# "updateSiteName" property - label for the update site
+updateSiteName=JBossTools Update Site
+
+# "description" property - description of the feature
+description=JBoss GWT Integration
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=Copyright (c) 2010 JBoss by Red Hat and others.\nAll rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\nwhich accompanies this distribution, and is available at\nhttp\://www.eclipse.org/legal/epl-v10.html\n\nContributors\:\nJBoss by Red Hat - Initial implementation.
+ ############### end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# START NON-TRANSLATABLE
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+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
+########### end of license property ##########################################
Modified: trunk/gwt/features/org.jboss.tools.gwt.feature/feature.xml
===================================================================
--- trunk/gwt/features/org.jboss.tools.gwt.feature/feature.xml 2010-08-17 22:59:10 UTC (rev 24231)
+++ trunk/gwt/features/org.jboss.tools.gwt.feature/feature.xml 2010-08-17 23:06:50 UTC (rev 24232)
@@ -1,28 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<feature
id="org.jboss.tools.gwt.feature"
- label="Feature"
+ label="%featureName"
version="1.0.0.qualifier"
- provider-name="JBoss by Red Hat">
+ provider-name="%providerName">
<description url="http://www.example.com/description">
- [Enter Feature Description here.]
+ %description
</description>
<copyright url="http://www.example.com/copyright">
- [Enter Copyright Description here.]
+ %copyright
</copyright>
- <license url="http://www.example.com/license">
- [Enter License Description here.]
+ <license url="%licenseURL">
+ %license
</license>
<plugin
id="org.jboss.tools.gwt.core"
download-size="0"
install-size="0"
- version="0.0.0"
- unpack="false"/>
+ version="0.0.0"/>
<plugin
id="org.jboss.tools.gwt.ui"
Added: trunk/gwt/features/org.jboss.tools.gwt.feature/license.html
===================================================================
--- trunk/gwt/features/org.jboss.tools.gwt.feature/license.html (rev 0)
+++ trunk/gwt/features/org.jboss.tools.gwt.feature/license.html 2010-08-17 23:06:50 UTC (rev 24232)
@@ -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/gwt/features/org.jboss.tools.gwt.feature/license.html
___________________________________________________________________
Name: svn:executable
+ *
Property changes on: trunk/gwt/plugins/org.jboss.tools.gwt.core
___________________________________________________________________
Name: svn:ignore
+ target
Added: trunk/gwt/plugins/org.jboss.tools.gwt.core/about.html
===================================================================
--- trunk/gwt/plugins/org.jboss.tools.gwt.core/about.html (rev 0)
+++ trunk/gwt/plugins/org.jboss.tools.gwt.core/about.html 2010-08-17 23:06:50 UTC (rev 24232)
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>JBoss GWT Integration</title>
+<style type="text/css" media="screen">
+<!--
+ body {
+ font-family: Sans-serif, Arial, Helvetica;
+ }
+
+-->
+</style>
+</head>
+<body>
+<h1JBoss GWT Integration</h1>
+
+<p>
+This plugin is part of the JBoss Tools developed by the <a href="http://www.jboss.com">JBoss Inc.</a>
+</p>
+
+<p>Information about this plugin is available at <a href="http://www.jboss.org/tools">JBoss Tools project page</a></p>
+
+<p>
+This software is distributed under the terms of the Eclipse Public License - v 1.0
+(see <a href="www.eclipse.org/legal/epl-v10.html">Eclipse Public License - Version 1.0</a>).
+</p>
+</body>
+</html>
\ No newline at end of file
Modified: trunk/gwt/plugins/org.jboss.tools.gwt.core/build.properties
===================================================================
--- trunk/gwt/plugins/org.jboss.tools.gwt.core/build.properties 2010-08-17 22:59:10 UTC (rev 24231)
+++ trunk/gwt/plugins/org.jboss.tools.gwt.core/build.properties 2010-08-17 23:06:50 UTC (rev 24232)
@@ -3,7 +3,8 @@
bin.includes = META-INF/,\
.,\
plugin.xml,\
- bin/
+ bin/,\
+ about.html
src.includes = .classpath,\
.project,\
.settings/,\
Property changes on: trunk/gwt/plugins/org.jboss.tools.gwt.ui
___________________________________________________________________
Name: svn:ignore
+ target
Added: trunk/gwt/plugins/org.jboss.tools.gwt.ui/about.html
===================================================================
--- trunk/gwt/plugins/org.jboss.tools.gwt.ui/about.html (rev 0)
+++ trunk/gwt/plugins/org.jboss.tools.gwt.ui/about.html 2010-08-17 23:06:50 UTC (rev 24232)
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>JBoss GWT Integration</title>
+<style type="text/css" media="screen">
+<!--
+ body {
+ font-family: Sans-serif, Arial, Helvetica;
+ }
+
+-->
+</style>
+</head>
+<body>
+<h1JBoss GWT Integration</h1>
+
+<p>
+This plugin is part of the JBoss Tools developed by the <a href="http://www.jboss.com">JBoss Inc.</a>
+</p>
+
+<p>Information about this plugin is available at <a href="http://www.jboss.org/tools">JBoss Tools project page</a></p>
+
+<p>
+This software is distributed under the terms of the Eclipse Public License - v 1.0
+(see <a href="www.eclipse.org/legal/epl-v10.html">Eclipse Public License - Version 1.0</a>).
+</p>
+</body>
+</html>
\ No newline at end of file
Modified: trunk/gwt/plugins/org.jboss.tools.gwt.ui/build.properties
===================================================================
--- trunk/gwt/plugins/org.jboss.tools.gwt.ui/build.properties 2010-08-17 22:59:10 UTC (rev 24231)
+++ trunk/gwt/plugins/org.jboss.tools.gwt.ui/build.properties 2010-08-17 23:06:50 UTC (rev 24232)
@@ -2,4 +2,5 @@
output.. = bin/
bin.includes = META-INF/,\
.,\
- plugin.xml
+ plugin.xml,\
+ about.html
Added: trunk/gwt/site/.project
===================================================================
--- trunk/gwt/site/.project (rev 0)
+++ trunk/gwt/site/.project 2010-08-17 23:06:50 UTC (rev 24232)
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>gwt-site</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ </buildSpec>
+ <natures>
+ </natures>
+</projectDescription>
Modified: trunk/gwt/site/pom.xml
===================================================================
--- trunk/gwt/site/pom.xml 2010-08-17 22:59:10 UTC (rev 24231)
+++ trunk/gwt/site/pom.xml 2010-08-17 23:06:50 UTC (rev 24232)
@@ -1,7 +1,6 @@
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
- <relativePath>../../build/parent-pom.xml</relativePath>
<groupId>org.jboss.tools</groupId>
<artifactId>org.jboss.tools.parent.pom</artifactId>
<version>0.0.1-SNAPSHOT</version>
Added: trunk/gwt/site/site.xml
===================================================================
--- trunk/gwt/site/site.xml (rev 0)
+++ trunk/gwt/site/site.xml 2010-08-17 23:06:50 UTC (rev 24232)
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<site>
+ <description>To install these features, point Eclipse at this site.</description>
+ <!-- JBoss Tools GWT Integration Nightly Build Update Site -->
+ <category-def label="JBoss Tools GWT Integration Nightly Build Update Site" name="JBoss Tools GWT Integration Nightly Build Update Site">
+ <description>JBoss Tools GWT Integration Nightly Build Update Site: contains all features in this build.</description>
+ </category-def>
+ <feature url="features/org.jboss.tools.gwt.feature_0.0.0.jar" id="org.jboss.tools.gwt.feature" version="0.0.0">
+ <category name="JBoss Tools GWT Integration Nightly Build Update Site"/>
+ </feature>
+
+</site>
15 years, 4 months
JBoss Tools SVN: r24231 - in trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core: src/org/jboss/tools/deltacloud/core and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: jjohnstn
Date: 2010-08-17 18:59:10 -0400 (Tue, 17 Aug 2010)
New Revision: 24231
Modified:
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/ChangeLog
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloudInstance.java
Log:
2010-08-17 Jeff Johnston <jjohnstn(a)redhat.com>
* src/org/jboss/tools/deltacloud/core/DeltaCloudInstance.java (getOwnerId): New method.
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/ChangeLog
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/ChangeLog 2010-08-17 22:57:49 UTC (rev 24230)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/ChangeLog 2010-08-17 22:59:10 UTC (rev 24231)
@@ -1,5 +1,9 @@
2010-08-17 Jeff Johnston <jjohnstn(a)redhat.com>
+ * src/org/jboss/tools/deltacloud/core/DeltaCloudInstance.java (getOwnerId): New method.
+
+2010-08-17 Jeff Johnston <jjohnstn(a)redhat.com>
+
* lib/log4j-1.2.14.jar: New file.
* .classpath: Add log4j jar.
* build.properties: Ditto.
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloudInstance.java
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloudInstance.java 2010-08-17 22:57:49 UTC (rev 24230)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloudInstance.java 2010-08-17 22:59:10 UTC (rev 24231)
@@ -30,6 +30,10 @@
return instance.getId();
}
+ public String getOwnerId() {
+ return instance.getOwnerId();
+ }
+
public String getState() {
return instance.getState().toString();
}
15 years, 4 months
JBoss Tools SVN: r24230 - in trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui: src/org/jboss/tools/deltacloud/ui/views and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: jjohnstn
Date: 2010-08-17 18:57:49 -0400 (Tue, 17 Aug 2010)
New Revision: 24230
Added:
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/CVPropertySection.java
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/CVPropertySheetNonSorter.java
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/CVPropertySheetPage.java
Modified:
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/ChangeLog
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/plugin.xml
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/CVMessages.properties
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/DeltaCloudView.java
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/InstancePropertySource.java
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/InstanceView.java
Log:
2010-08-17 Jeff Johnston <jjohnstn(a)redhat.com>
* src/org/jboss/tools/deltacloud/ui/views/CVPropertySection.java: New file.
* src/org/jboss/tools/deltacloud/ui/views/CVPropertySheetNonSorter.java: New file.
* src/org/jboss/tools/deltacloud/ui/views/CVPropertySheetPage.java: New file.
* plugin.xml: Change the PropertySection class for the Advanced Tab to point to
the new CVPropertySection class.
* src/org/jboss/tools/deltacloud/ui/views/CVMessages.properties: Add message for owner
id property.
* src/org/jboss/tools/deltacloud/ui/views/DeltaCloudView.java (getAdapter): New override
to hijack the PropertySheetPage.
(getContributorId): Required for an ITabbedPropertySheetPageContributor.
* src/org/jboss/tools/deltacloud/ui/views/InstancePropertySource.java (getPropertyValue): Add
support for owner id.
(getPropertyDescriptors): Add owner id.
* src/org/jboss/tools/deltacloud/ui/views/InstanceView.java (fillContextMenu): Add all possible
actions and only enable the ones supported by the selected instance.
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/ChangeLog
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/ChangeLog 2010-08-17 22:40:38 UTC (rev 24229)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/ChangeLog 2010-08-17 22:57:49 UTC (rev 24230)
@@ -1,5 +1,23 @@
2010-08-17 Jeff Johnston <jjohnstn(a)redhat.com>
+ * src/org/jboss/tools/deltacloud/ui/views/CVPropertySection.java: New file.
+ * src/org/jboss/tools/deltacloud/ui/views/CVPropertySheetNonSorter.java: New file.
+ * src/org/jboss/tools/deltacloud/ui/views/CVPropertySheetPage.java: New file.
+ * plugin.xml: Change the PropertySection class for the Advanced Tab to point to
+ the new CVPropertySection class.
+ * src/org/jboss/tools/deltacloud/ui/views/CVMessages.properties: Add message for owner
+ id property.
+ * src/org/jboss/tools/deltacloud/ui/views/DeltaCloudView.java (getAdapter): New override
+ to hijack the PropertySheetPage.
+ (getContributorId): Required for an ITabbedPropertySheetPageContributor.
+ * src/org/jboss/tools/deltacloud/ui/views/InstancePropertySource.java (getPropertyValue): Add
+ support for owner id.
+ (getPropertyDescriptors): Add owner id.
+ * src/org/jboss/tools/deltacloud/ui/views/InstanceView.java (fillContextMenu): Add all possible
+ actions and only enable the ones supported by the selected instance.
+
+2010-08-17 Jeff Johnston <jjohnstn(a)redhat.com>
+
* src/org/jboss/tools/deltacloud/ui/views/ImageComparator.java: New file.
* src/org/jboss/tools/deltacloud/ui/views/ImageView.java: New file.
* src/org/jboss/tools/deltacloud/ui/views/ImageViewLabelAndContentProvider.java: New file.
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/plugin.xml
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/plugin.xml 2010-08-17 22:40:38 UTC (rev 24229)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/plugin.xml 2010-08-17 22:57:49 UTC (rev 24230)
@@ -62,7 +62,7 @@
<propertySections
contributorId="org.jboss.tools.deltacloud.ui.views.CloudView">
<propertySection
- class="org.eclipse.ui.views.properties.tabbed.AdvancedPropertySection"
+ class="org.jboss.tools.deltacloud.ui.views.CVPropertySection"
id="org.jboss.tools.deltacloud.ui.propertySection.advanced"
tab="cloudview.advancedTab">
<input
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/CVMessages.properties
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/CVMessages.properties 2010-08-17 22:40:38 UTC (rev 24229)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/CVMessages.properties 2010-08-17 22:57:49 UTC (rev 24230)
@@ -4,6 +4,7 @@
PropertyName.title=Name
PropertyId.title=Id
+PropertyOwnerId.title=Owner Id
PropertyHostname.title=Hostname
PropertyState.title=State
PropertyProfileId.title=Hardware Profile
Added: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/CVPropertySection.java
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/CVPropertySection.java (rev 0)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/CVPropertySection.java 2010-08-17 22:57:49 UTC (rev 24230)
@@ -0,0 +1,84 @@
+package org.jboss.tools.deltacloud.ui.views;
+
+import org.eclipse.jface.viewers.ISelection;
+import org.eclipse.swt.events.ControlAdapter;
+import org.eclipse.swt.events.ControlEvent;
+import org.eclipse.swt.layout.FormAttachment;
+import org.eclipse.swt.layout.FormData;
+import org.eclipse.swt.widgets.Composite;
+import org.eclipse.ui.IWorkbenchPart;
+import org.eclipse.ui.views.properties.PropertySheetPage;
+import org.eclipse.ui.views.properties.tabbed.AbstractPropertySection;
+import org.eclipse.ui.views.properties.tabbed.TabbedPropertySheetPage;
+
+public class CVPropertySection extends AbstractPropertySection {
+
+ /**
+ * The Property Sheet Page.
+ */
+ protected PropertySheetPage page;
+
+ /**
+ * @see org.eclipse.ui.views.properties.tabbed.ISection#createControls(org.eclipse.swt.widgets.Composite,
+ * org.eclipse.ui.views.properties.tabbed.TabbedPropertySheetPage)
+ */
+ public void createControls(Composite parent,
+ final TabbedPropertySheetPage atabbedPropertySheetPage) {
+ super.createControls(parent, atabbedPropertySheetPage);
+ Composite composite = getWidgetFactory()
+ .createFlatFormComposite(parent);
+ page = new CVPropertySheetPage();
+
+ page.createControl(composite);
+ FormData data = new FormData();
+ data.left = new FormAttachment(0, 0);
+ data.right = new FormAttachment(100, 0);
+ data.top = new FormAttachment(0, 0);
+ data.bottom = new FormAttachment(100, 0);
+ page.getControl().setLayoutData(data);
+
+ page.getControl().addControlListener(new ControlAdapter() {
+
+ public void controlResized(ControlEvent e) {
+ atabbedPropertySheetPage.resizeScrolledComposite();
+ }
+ });
+ }
+
+ /**
+ * @see org.eclipse.ui.views.properties.tabbed.ISection#setInput(org.eclipse.ui.IWorkbenchPart,
+ * org.eclipse.jface.viewers.ISelection)
+ */
+ public void setInput(IWorkbenchPart part, ISelection selection) {
+ super.setInput(part, selection);
+ page.selectionChanged(part, selection);
+ }
+
+ /**
+ * @see org.eclipse.ui.views.properties.tabbed.ISection#dispose()
+ */
+ public void dispose() {
+ super.dispose();
+
+ if (page != null) {
+ page.dispose();
+ page = null;
+ }
+
+ }
+
+ /**
+ * @see org.eclipse.ui.views.properties.tabbed.ISection#refresh()
+ */
+ public void refresh() {
+ page.refresh();
+ }
+
+ /**
+ * @see org.eclipse.ui.views.properties.tabbed.ISection#shouldUseExtraSpace()
+ */
+ public boolean shouldUseExtraSpace() {
+ return true;
+ }
+
+}
Added: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/CVPropertySheetNonSorter.java
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/CVPropertySheetNonSorter.java (rev 0)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/CVPropertySheetNonSorter.java 2010-08-17 22:57:49 UTC (rev 24230)
@@ -0,0 +1,12 @@
+package org.jboss.tools.deltacloud.ui.views;
+
+import org.eclipse.ui.views.properties.IPropertySheetEntry;
+import org.eclipse.ui.views.properties.PropertySheetSorter;
+
+public class CVPropertySheetNonSorter extends PropertySheetSorter {
+
+ public void sort(IPropertySheetEntry[] entries) {
+ // do nothing
+ }
+
+}
Added: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/CVPropertySheetPage.java
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/CVPropertySheetPage.java (rev 0)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/CVPropertySheetPage.java 2010-08-17 22:57:49 UTC (rev 24230)
@@ -0,0 +1,12 @@
+package org.jboss.tools.deltacloud.ui.views;
+
+import org.eclipse.ui.views.properties.PropertySheetPage;
+
+public class CVPropertySheetPage extends PropertySheetPage {
+
+ public CVPropertySheetPage() {
+ super();
+ setSorter(new CVPropertySheetNonSorter());
+ }
+
+}
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/DeltaCloudView.java
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/DeltaCloudView.java 2010-08-17 22:40:38 UTC (rev 24229)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/DeltaCloudView.java 2010-08-17 22:57:49 UTC (rev 24230)
@@ -25,6 +25,9 @@
import org.eclipse.ui.IWorkbenchActionConstants;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.part.ViewPart;
+import org.eclipse.ui.views.properties.IPropertySheetPage;
+import org.eclipse.ui.views.properties.tabbed.ITabbedPropertySheetPageContributor;
+import org.eclipse.ui.views.properties.tabbed.TabbedPropertySheetPage;
import org.jboss.tools.deltacloud.core.DeltaCloud;
import org.jboss.tools.deltacloud.core.DeltaCloudImage;
import org.jboss.tools.deltacloud.core.DeltaCloudManager;
@@ -33,7 +36,8 @@
import org.jboss.tools.internal.deltacloud.ui.wizards.NewInstance;
-public class DeltaCloudView extends ViewPart implements ICloudManagerListener {
+public class DeltaCloudView extends ViewPart implements ICloudManagerListener,
+ITabbedPropertySheetPageContributor {
/**
* The ID of the view as specified by the extension.
@@ -237,4 +241,18 @@
public void changeEvent(int type) {
viewer.setInput(new CVRootElement(viewer));
}
+
+ @Override
+ public String getContributorId() {
+ return getSite().getId();
+ }
+
+ @SuppressWarnings("unchecked")
+ public Object getAdapter(Class adapter) {
+ if (adapter == IPropertySheetPage.class)
+ // If Tabbed view is desired, then change the
+ // following to new TabbedPropertySheetPage(this)
+ return new CVPropertySheetPage();
+ return super.getAdapter(adapter);
+ }
}
\ No newline at end of file
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/InstancePropertySource.java
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/InstancePropertySource.java 2010-08-17 22:40:38 UTC (rev 24229)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/InstancePropertySource.java 2010-08-17 22:57:49 UTC (rev 24230)
@@ -11,6 +11,7 @@
private static final String PROPERTY_NAME = "deltacloud.views.instance.name"; //$NON-NLS-1$
private static final String PROPERTY_ID = "deltacloud.views.instance.id"; //$NON-NLS-1$
+ public static final String PROPERTY_OWNER = "deltacloud.views.instance.owner"; //$NON-NLS-1$
public static final String PROPERTY_STATE = "deltacloud.views.instance.state"; //$NON-NLS-1$
private static final String PROPERTY_HOSTNAME = "deltacloud.views.instance.hostname"; //$NON-NLS-1$
private static final String PROPERTY_PROFILEID = "deltacloud.views.instance.profileid"; //$NON-NLS-1$
@@ -18,6 +19,7 @@
private static final String PROPERTY_IMAGEID = "deltacloud.views.instance.imageid"; //$NON-NLS-1$
private static final String PROPERTY_NAME_TITLE = "PropertyName.title"; //$NON-NLS-1$
private static final String PROPERTY_ID_TITLE = "PropertyId.title"; //$NON-NLS-1$
+ private static final String PROPERTY_OWNER_TITLE = "PropertyOwnerId.title"; //$NON-NLS-1$
private static final String PROPERTY_STATE_TITLE = "PropertyState.title"; //$NON-NLS-1$
private static final String PROPERTY_HOSTNAME_TITLE = "PropertyHostname.title"; //$NON-NLS-1$
private static final String PROPERTY_PROFILEID_TITLE = "PropertyProfileId.title"; //$NON-NLS-1$
@@ -43,6 +45,8 @@
CVMessages.getString(PROPERTY_NAME_TITLE));
PropertyDescriptor idDescriptor = new PropertyDescriptor(PROPERTY_ID,
CVMessages.getString(PROPERTY_ID_TITLE));
+ PropertyDescriptor ownerDescriptor = new PropertyDescriptor(PROPERTY_OWNER,
+ CVMessages.getString(PROPERTY_OWNER_TITLE));
PropertyDescriptor stateDescriptor = new PropertyDescriptor(PROPERTY_STATE,
CVMessages.getString(PROPERTY_STATE_TITLE));
PropertyDescriptor hardwareDescriptor = new PropertyDescriptor(PROPERTY_PROFILEID,
@@ -57,6 +61,7 @@
propertyDescriptors = new IPropertyDescriptor[] {
nameDescriptor,
idDescriptor,
+ ownerDescriptor,
stateDescriptor,
hostnameDescriptor,
hardwareDescriptor,
@@ -73,6 +78,8 @@
return instance.getName();
if (id.equals(PROPERTY_ID))
return instance.getId();
+ if (id.equals(PROPERTY_OWNER))
+ return instance.getOwnerId();
if (id.equals(PROPERTY_PROFILEID))
return instance.getProfileId();
if (id.equals(PROPERTY_REALMID))
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/InstanceView.java
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/InstanceView.java 2010-08-17 22:40:38 UTC (rev 24229)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/InstanceView.java 2010-08-17 22:57:49 UTC (rev 24230)
@@ -272,8 +272,17 @@
private void fillContextMenu(IMenuManager manager) {
List<String> actions = selectedElement.getActions();
+ manager.add(instanceActions.get(DeltaCloudInstance.START));
+ instanceActions.get(DeltaCloudInstance.START).setEnabled(false);
+ manager.add(instanceActions.get(DeltaCloudInstance.STOP));
+ instanceActions.get(DeltaCloudInstance.STOP).setEnabled(false);
+ manager.add(instanceActions.get(DeltaCloudInstance.REBOOT));
+ instanceActions.get(DeltaCloudInstance.REBOOT).setEnabled(false);
+ manager.add(new Separator(IWorkbenchActionConstants.MB_ADDITIONS));
+ manager.add(instanceActions.get(DeltaCloudInstance.DESTROY));
+ instanceActions.get(DeltaCloudInstance.DESTROY).setEnabled(false);
for (String action : actions) {
- manager.add(instanceActions.get(action));
+ instanceActions.get(action).setEnabled(true);
}
// Other plug-ins can contribute there actions here
manager.add(new Separator(IWorkbenchActionConstants.MB_ADDITIONS));
15 years, 4 months
JBoss Tools SVN: r24229 - trunk/site.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2010-08-17 18:40:38 -0400 (Tue, 17 Aug 2010)
New Revision: 24229
Modified:
trunk/site/category.JBossTools.xml
trunk/site/site.xml
Log:
https://jira.jboss.org/browse/JBIDE-6837 Iclude deltacloud component in JBT build and update site
- deltacloud included in update site under Cloud category
- gwt included in update site under Application Development category as Max requested in email
Modified: trunk/site/category.JBossTools.xml
===================================================================
--- trunk/site/category.JBossTools.xml 2010-08-17 22:37:56 UTC (rev 24228)
+++ trunk/site/category.JBossTools.xml 2010-08-17 22:40:38 UTC (rev 24229)
@@ -120,6 +120,12 @@
<feature url="features/org.jboss.tools.runtime.feature_0.0.0.jar" id="org.jboss.tools.runtime.feature" version="0.0.0">
<category name="AllTools"/>
</feature>
+ <feature url="features/org.jboss.tools.gwt.feature_0.0.0.jar" id="org.jboss.tools.gwt.feature" version="0.0.0">
+ <category name="GeneralTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.deltacloud_0.0.0.jar" id="org.jboss.tools.deltacloud" version="0.0.0">
+ <category name="CloudTools"/>
+ </feature>
<category-def name="SDKTools" label="${product.name} SDK">
<description>
${product.name} SDK contains plugins where an SDK package
@@ -180,4 +186,9 @@
Tools used to improve testing and performance.
</description>
</category-def>
+ <category-def name="CloudTools" label="Cloud">
+ <description>
+ Tools for Cloud Development
+ </description>
+ </category-def>
</site>
Modified: trunk/site/site.xml
===================================================================
--- trunk/site/site.xml 2010-08-17 22:37:56 UTC (rev 24228)
+++ trunk/site/site.xml 2010-08-17 22:40:38 UTC (rev 24229)
@@ -136,6 +136,12 @@
<feature url="features/org.jboss.tools.runtime.feature_0.0.0.jar" id="org.jboss.tools.runtime.feature" version="0.0.0">
<category name="AllTools"/>
</feature>
+ <feature url="features/org.jboss.tools.gwt.feature_0.0.0.jar" id="org.jboss.tools.gwt.feature" version="0.0.0">
+ <category name="GeneralTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.deltacloud_0.0.0.jar" id="org.jboss.tools.deltacloud" version="0.0.0">
+ <category name="CloudTools"/>
+ </feature>
<category-def name="SDKTools" label="JBoss Tools SDK">
<description>
JBoss Tools SDK contains plugins where an SDK package
@@ -196,4 +202,9 @@
Tools used to improve testing and performance.
</description>
</category-def>
+ <category-def name="CloudTools" label="Cloud">
+ <description>
+ Tools for Cloud Development
+ </description>
+ </category-def>
</site>
15 years, 4 months
JBoss Tools SVN: r24228 - in trunk/deltacloud: features and 5 other directories.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2010-08-17 18:37:56 -0400 (Tue, 17 Aug 2010)
New Revision: 24228
Added:
trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/feature.properties
trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/license.html
trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/pom.xml
trunk/deltacloud/features/pom.xml
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/about.html
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/pom.xml
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/pom.xml
trunk/deltacloud/plugins/pom.xml
trunk/deltacloud/pom.xml
trunk/deltacloud/site/
trunk/deltacloud/site/pom.xml
trunk/deltacloud/site/site.xml
Modified:
trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/
trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/build.properties
trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/feature.xml
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/build.properties
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/build.properties
Log:
https://jira.jboss.org/browse/JBIDE-6837 Include deltacloud component in JBT build and update site
fix contines:
- Licence.htnl, copyright and about.html files for feature and plugins
- pom files to include it in build
- svn:ignore with tatget folder created during maven build
Property changes on: trunk/deltacloud/features/org.jboss.tools.deltacloud-feature
___________________________________________________________________
Name: svn:ignore
+ target
Modified: trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/build.properties
===================================================================
--- trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/build.properties 2010-08-17 20:43:15 UTC (rev 24227)
+++ trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/build.properties 2010-08-17 22:37:56 UTC (rev 24228)
@@ -1 +1,3 @@
-bin.includes = feature.xml
+bin.includes = feature.xml,\
+ license.html,\
+ feature.properties
Added: trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/feature.properties
===================================================================
--- trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/feature.properties (rev 0)
+++ trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/feature.properties 2010-08-17 22:37:56 UTC (rev 24228)
@@ -0,0 +1,49 @@
+###############################################################################
+# Copyright (c) 2010 JBoss by Red Hat and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# JBoss by Red Hat - Initial implementation.
+##############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Deltacloud Development Tools
+
+# "providerName" property - name of the company that provides the feature
+providerName=JBoss by Red Hat
+
+# "updateSiteName" property - label for the update site
+updateSiteName=JBossTools Update Site
+
+# "description" property - description of the feature
+description=Deltacloud Development Tools
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=Copyright (c) 2010 JBoss by Red Hat and others.\nAll rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\nwhich accompanies this distribution, and is available at\nhttp\://www.eclipse.org/legal/epl-v10.html\n\nContributors\:\nJBoss by Red Hat - Initial implementation.
+ ############### end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# START NON-TRANSLATABLE
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+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
+########### end of license property ##########################################
Modified: trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/feature.xml
===================================================================
--- trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/feature.xml 2010-08-17 20:43:15 UTC (rev 24227)
+++ trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/feature.xml 2010-08-17 22:37:56 UTC (rev 24228)
@@ -1,19 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<feature
id="org.jboss.tools.deltacloud"
- label="Deltacloud_feature"
- version="0.0.1.qualifier">
+ label="%featureName"
+ version="1.0.0.qualifier"
+ provider-name="%providerName">
- <description url="http://www.example.com/description">
- [Enter Feature Description here.]
+ <description>
+ %description
</description>
- <copyright url="http://www.example.com/copyright">
- [Enter Copyright Description here.]
+ <copyright>
+ %copyright
</copyright>
- <license url="http://www.example.com/license">
- [Enter License Description here.]
+ <license url="%licenseURL">
+ %license
</license>
<requires>
Added: trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/license.html
===================================================================
--- trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/license.html (rev 0)
+++ trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/license.html 2010-08-17 22:37:56 UTC (rev 24228)
@@ -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/deltacloud/features/org.jboss.tools.deltacloud-feature/license.html
___________________________________________________________________
Name: svn:executable
+ *
Added: trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/pom.xml
===================================================================
--- trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/pom.xml (rev 0)
+++ trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/pom.xml 2010-08-17 22:37:56 UTC (rev 24228)
@@ -0,0 +1,13 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools.deltacloud.features</groupId>
+ <artifactId>org.jboss.tools.deltacloud</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+</project>
Added: trunk/deltacloud/features/pom.xml
===================================================================
--- trunk/deltacloud/features/pom.xml (rev 0)
+++ trunk/deltacloud/features/pom.xml 2010-08-17 22:37:56 UTC (rev 24228)
@@ -0,0 +1,13 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.jboss.tools.deltacloud</groupId>
+ <artifactId>features</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ <name>deltacloud.features</name>
+ <packaging>pom</packaging>
+ <modules>
+ <module>org.jboss.tools.deltacloud-feature</module>
+ </modules>
+</project>
+
Property changes on: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core
___________________________________________________________________
Name: svn:ignore
+ target
Added: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/about.html
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/about.html (rev 0)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/about.html 2010-08-17 22:37:56 UTC (rev 24228)
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Cloud Development Tools</title>
+<style type="text/css" media="screen">
+<!--
+ body {
+ font-family: Sans-serif, Arial, Helvetica;
+ }
+
+-->
+</style>
+</head>
+<body>
+<h1>Cloud Development Tools</h1>
+
+<p>
+This plugin is part of the JBoss Tools developed by the <a href="http://www.jboss.com">JBoss Inc.</a>
+</p>
+
+<p>Information about this plugin is available at <a href="http://www.jboss.org/tools">JBoss Tools project page</a></p>
+
+<p>
+This software is distributed under the terms of the Eclipse Public License - v 1.0
+(see <a href="www.eclipse.org/legal/epl-v10.html">Eclipse Public License - Version 1.0</a>).
+</p>
+</body>
+</html>
\ No newline at end of file
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/build.properties
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/build.properties 2010-08-17 20:43:15 UTC (rev 24227)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/build.properties 2010-08-17 22:37:56 UTC (rev 24228)
@@ -12,4 +12,5 @@
lib/httpcore-4.0.1.jar,\
lib/httpcore-nio-4.0.1.jar,\
lib/httpmime-4.0.1.jar,\
- lib/log4j-1.2.14.jar
+ lib/log4j-1.2.14.jar,\
+ about.html
Added: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/pom.xml
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/pom.xml (rev 0)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/pom.xml 2010-08-17 22:37:56 UTC (rev 24228)
@@ -0,0 +1,13 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools.deltacloud.plugins</groupId>
+ <artifactId>org.jboss.tools.deltacloud.core</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
Property changes on: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui
___________________________________________________________________
Name: svn:ignore
+ target
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/build.properties
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/build.properties 2010-08-17 20:43:15 UTC (rev 24227)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/build.properties 2010-08-17 22:37:56 UTC (rev 24228)
@@ -5,4 +5,5 @@
.,\
icons/,\
contexts.xml,\
- plugin.properties
+ plugin.properties,\
+ about.html
Added: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/pom.xml
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/pom.xml (rev 0)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/pom.xml 2010-08-17 22:37:56 UTC (rev 24228)
@@ -0,0 +1,13 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools.deltacloud.plugins</groupId>
+ <artifactId>org.jboss.tools.deltacloud.ui</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
Added: trunk/deltacloud/plugins/pom.xml
===================================================================
--- trunk/deltacloud/plugins/pom.xml (rev 0)
+++ trunk/deltacloud/plugins/pom.xml 2010-08-17 22:37:56 UTC (rev 24228)
@@ -0,0 +1,13 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.jboss.tools.deltacloud</groupId>
+ <artifactId>plugins</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ <name>deltacloud.plugins</name>
+ <packaging>pom</packaging>
+ <modules>
+ <module>org.jboss.tools.deltacloud.ui</module>
+ <module>org.jboss.tools.deltacloud.core</module>
+ </modules>
+</project>
Added: trunk/deltacloud/pom.xml
===================================================================
--- trunk/deltacloud/pom.xml (rev 0)
+++ trunk/deltacloud/pom.xml 2010-08-17 22:37:56 UTC (rev 24228)
@@ -0,0 +1,14 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>deltacloud</artifactId>
+ <name>deltacloud.all</name>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <modules>
+ <module>features</module>
+ <module>plugins</module>
+ <module>site</module>
+ </modules>
+</project>
Added: trunk/deltacloud/site/pom.xml
===================================================================
--- trunk/deltacloud/site/pom.xml (rev 0)
+++ trunk/deltacloud/site/pom.xml 2010-08-17 22:37:56 UTC (rev 24228)
@@ -0,0 +1,14 @@
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <relativePath>../../parent-pom.xml</relativePath>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools.deltacloud</groupId>
+ <artifactId>site</artifactId>
+ <name>deltacloud.site</name>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>eclipse-update-site</packaging>
+</project>
Added: trunk/deltacloud/site/site.xml
===================================================================
--- trunk/deltacloud/site/site.xml (rev 0)
+++ trunk/deltacloud/site/site.xml 2010-08-17 22:37:56 UTC (rev 24228)
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<site>
+ <description>To install these features, point Eclipse at this site.</description>
+ <!-- JBoss Tools as Nightly Build Update Site -->
+ <category-def label="JBoss Tools Deltacloud Nightly Build Update Site" name="JBoss Tools Deltacloud Nightly Build Update Site">
+ <description>JBoss Tools Deltacloud Nightly Build Update Site: contains all features in this build.</description>
+ </category-def>
+ <feature url="features/org.jboss.tools.deltacloud_0.0.0.jar" id="org.jboss.tools.deltacloud" version="0.0.0">
+ <category name="JBoss Tools Deltacloud Nightly Build Update Site"/>
+ </feature>
+
+</site>
15 years, 4 months
JBoss Tools SVN: r24227 - in trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core: META-INF and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: jjohnstn
Date: 2010-08-17 16:43:15 -0400 (Tue, 17 Aug 2010)
New Revision: 24227
Added:
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/lib/log4j-1.2.14.jar
Modified:
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/.classpath
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/ChangeLog
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/META-INF/MANIFEST.MF
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/build.properties
Log:
2010-08-17 Jeff Johnston <jjohnstn(a)redhat.com>
* lib/log4j-1.2.14.jar: New file.
* .classpath: Add log4j jar.
* build.properties: Ditto.
* META-INF/MANIFEST.MF: Remove org.apache.log4j as dependency
and add stored jar to classpath.
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/.classpath
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/.classpath 2010-08-17 20:33:42 UTC (rev 24226)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/.classpath 2010-08-17 20:43:15 UTC (rev 24227)
@@ -11,5 +11,6 @@
<classpathentry exported="true" kind="lib" path="lib/apache-mime4j-0.6.jar"/>
<classpathentry exported="true" kind="lib" path="lib/commons-codec-1.3.jar"/>
<classpathentry exported="true" kind="lib" path="lib/commons-logging-1.1.1.jar"/>
+ <classpathentry exported="true" kind="lib" path="lib/log4j-1.2.14.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/ChangeLog
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/ChangeLog 2010-08-17 20:33:42 UTC (rev 24226)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/ChangeLog 2010-08-17 20:43:15 UTC (rev 24227)
@@ -1,5 +1,13 @@
2010-08-17 Jeff Johnston <jjohnstn(a)redhat.com>
+ * lib/log4j-1.2.14.jar: New file.
+ * .classpath: Add log4j jar.
+ * build.properties: Ditto.
+ * META-INF/MANIFEST.MF: Remove org.apache.log4j as dependency
+ and add stored jar to classpath.
+
+2010-08-17 Jeff Johnston <jjohnstn(a)redhat.com>
+
* src/org/jboss/tools/deltacloud/core/client/DeltaCloudClient.java (createInstance): New
API that takes a memory and storage setting for the hardware profile.
* src/org/jboss/tools/deltacloud/core/DeltaCloud.java (createInstance): Change API to
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/META-INF/MANIFEST.MF
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/META-INF/MANIFEST.MF 2010-08-17 20:33:42 UTC (rev 24226)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/META-INF/MANIFEST.MF 2010-08-17 20:43:15 UTC (rev 24227)
@@ -6,7 +6,6 @@
Bundle-Activator: org.jboss.tools.deltacloud.core.Activator
Bundle-Vendor: Red Hat Inc.
Require-Bundle: org.eclipse.core.runtime,
- org.apache.log4j;bundle-version="1.2.13",
org.eclipse.equinox.security;bundle-version="1.0.100"
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-ActivationPolicy: lazy
@@ -19,4 +18,5 @@
lib/httpclient-4.0.1.jar,
lib/httpcore-4.0.1.jar,
lib/httpcore-nio-4.0.1.jar,
- lib/httpmime-4.0.1.jar
+ lib/httpmime-4.0.1.jar,
+ lib/log4j-1.2.14.jar
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/build.properties
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/build.properties 2010-08-17 20:33:42 UTC (rev 24226)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/build.properties 2010-08-17 20:43:15 UTC (rev 24227)
@@ -11,4 +11,5 @@
lib/httpclient-4.0.1.jar,\
lib/httpcore-4.0.1.jar,\
lib/httpcore-nio-4.0.1.jar,\
- lib/httpmime-4.0.1.jar
+ lib/httpmime-4.0.1.jar,\
+ lib/log4j-1.2.14.jar
Added: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/lib/log4j-1.2.14.jar
===================================================================
(Binary files differ)
Property changes on: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/lib/log4j-1.2.14.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
15 years, 4 months