Thanks very much Jim.

I've successfully created my ear pom.xml for RAD 7
(event if it's really ugly with all those custom files
!).

I attach my current pom.xml if it can help someone.

I've only used :
- eclipse plugin to generate .classpath and .project
and custom files.
- antrun (or cleaning purposes) plugins.
- ear plugin to generate application.xml.

--- Jim Sellers <[EMAIL PROTECTED]> a écrit :

> Make sure you have your pom type as "ear" (no
> quotes).
> 
> If you need your .project file to have certain
> natures so that eclipse will
> "see" it as a certain type.
>
http://maven.apache.org/plugins/maven-eclipse-plugin/examples/provide-project-natures-and-build-commands.html
> 
> If you're using WTP, this might be helpful:
>
http://maven.apache.org/plugins/maven-eclipse-plugin/wtp.html
> 
> HTH
> 
> Jim
> 
> On 10/11/07, Adrian Gonzalez <[EMAIL PROTECTED]>
> wrote:
> >
> > Hello,
> >
> > A really noob question... (sorry !)
> >
> > I'm currently using maven-eclipse-plugin to build
> a
> > web project with third party dependencies and a
> java
> > project.
> >
> > I want now to use this plugin to add a ear project
> > including the previous web project and java
> project
> > (as utility jar). maven-eclipse-plugin generated
> > .project file for my ear project fine as if it was
> a
> > java project, but nothing more...
> >
> > Is there a way to do this ? I'm really sorry but
> > didn't found any documentation about it.
> >
> > Thanks very much
> >
> >
> >
> >
> >      
>
_____________________________________________________________________________
> > Ne gardez plus qu'une seule adresse mail ! Copiez
> vos mails vers Yahoo!
> > Mail
> >
> >
>
---------------------------------------------------------------------
> > To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> > For additional commands, e-mail:
> [EMAIL PROTECTED]
> >
> >
> 



      
_____________________________________________________________________________ 
Ne gardez plus qu'une seule adresse mail ! Copiez vos mails vers Yahoo! Mail 
<project>
   <modelVersion>4.0.0</modelVersion>
   <groupId>tmp.pag.test</groupId>
   <artifactId>test-ear</artifactId>
   <packaging>ear</packaging>
   <name>aws ear assembly</name>

	<parent>
		<groupId>tmp.pag.test</groupId>
		<artifactId>test-project</artifactId>
		<version>0.22-SNAPSHOT</version>
		<relativePath>../test-project/pom.xml</relativePath>
	</parent>

	<dependencies>
	  <dependency>
			<groupId>${pom.groupId}</groupId>
			<artifactId>test-web</artifactId>
			<type>war</type>
				<exclusions>
					<exclusion>
				  <groupId>commons-logging</groupId>
				  <artifactId>commons-logging-api</artifactId>
					</exclusion>
				</exclusions>
      </dependency>
		  <dependency>
		     <groupId>${pom.groupId}</groupId>
		     <artifactId>test-service</artifactId>
		  </dependency>
		</dependencies>

		<build>
      <plugins>
		
				<!-- Delete de la conf eclipse avant ...-->
				<plugin>
	        <artifactId>maven-antrun-plugin</artifactId>
	        <executions>
	          <execution>
	            <phase>generate-resources</phase>
	            <configuration>
	              <tasks>
	                 <delete dir="${basedir}/META-INF/ibmconfig"/>
	                 <delete dir="${basedir}/.settings"/>
	              </tasks>
	            </configuration>
	            <goals>
	              <goal>run</goal>
	            </goals>
	          </execution>
	        </executions>
	      </plugin>

				<!-- Generation application.xml -->
				<plugin>
	        <artifactId>maven-ear-plugin</artifactId>
	        <executions>
	          <execution>
	            <phase>generate-resources</phase>
	            <configuration>
	            	<generatedDescriptorLocation>${basedir}/META-INF</generatedDescriptorLocation>
	            	<version>1.4</version>
	            	<modules>
	            		<webModule>
										<groupId>${pom.groupId}</groupId>
										<artifactId>test-web</artifactId>	
               			<contextRoot>test</contextRoot>
               			<uri>test-web.war</uri>
	            		</webModule>
	            	</modules>
	            </configuration>
	            <goals>
	              <goal>generate-application-xml</goal>
	            </goals>
	          </execution>
	        </executions>
	      </plugin>
		
				<plugin>
				   <groupId>org.apache.maven.plugins</groupId>
				   <artifactId>maven-dependency-plugin</artifactId>
				   <executions>
				     <execution>
				       <id>copy-dependencies</id>
				       <phase>generate-resources</phase>
				       <goals>
				         <goal>copy-dependencies</goal>
				       </goals>
				       <configuration>
					       	<includeTypes>jar</includeTypes>
					       	<excludeTypes>war</excludeTypes>
					       	<excludeGroupIds>${pom.groupId}</excludeGroupIds>
					       	<outputDirectory>${basedir}</outputDirectory>
					       	<includeScope>runtime</includeScope>
				       </configuration>
				     </execution>
				   </executions>
				</plugin>

				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-eclipse-plugin</artifactId>
					<configuration>
						<additionalBuildcommands>
							<buildcommand>
								com.ibm.etools.common.migration.MigrationBuilder
							</buildcommand>
							<buildcommand>
								org.eclipse.wst.common.project.facet.core.builder
							</buildcommand>
							<buildcommand>
								org.eclipse.wst.validation.validationbuilder
							</buildcommand>
						</additionalBuildcommands>
						<additionalProjectnatures>
							<projectnature>
								org.eclipse.wst.common.project.facet.core.nature
							</projectnature>
							<projectnature>
								org.eclipse.wst.common.modulecore.ModuleCoreNature
							</projectnature>
						</additionalProjectnatures>
						<additionalConfig>
							<file>
								<name>
									META-INF/ibmconfig/cells/defaultCell/security.xml
								</name>
								<content>
									<![CDATA[<?xml version="1.0" encoding="UTF-8"?>
<security:Security xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI"; xmlns:security="http://www.ibm.com/websphere/appserver/schemas/5.0/security.xmi"; xmi:id="Security_1184581997343">
  <authDataEntries xmi:id="JAASAuthData_1184858647578" alias="LoginOracle" userId="eduoa_maj" password="{xor}OjsqMD4AMj41b28=" description="Login Oracle AWS"/>
</security:Security>
]]>
								</content>
							</file>
							<file>
								<name>
									META-INF/ibmconfig/cells/defaultCell/applications/defaultApp/deployments/defaultApp/deployment.xml
								</name>
								<content>
									<![CDATA[<?xml version="1.0" encoding="UTF-8"?>
<appdeployment:Deployment xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI"; xmlns:appdeployment="http://www.ibm.com/websphere/appserver/schemas/5.0/appdeployment.xmi"; xmi:id="Deployment_1184581997421">
  <deployedObject xmi:type="appdeployment:ApplicationDeployment" xmi:id="ApplicationDeployment_1184581997421" startingWeight="10">
    <modules xmi:type="appdeployment:WebModuleDeployment" xmi:id="WebModuleDeployment_1184602770546" startingWeight="10000" uri="aws-web.war" classloaderMode="PARENT_LAST"/>
    <classloader xmi:id="Classloader_1184581997421" mode="PARENT_LAST">
      <libraries xmi:id="LibraryRef_1190741597156" libraryName="Jamaique"/>
    </classloader>
  </deployedObject>
</appdeployment:Deployment>
]]>
								</content>
							</file>
							<file>
								<name>
									META-INF/ibmconfig/cells/defaultCell/applications/defaultApp/deployments/defaultApp/resources.xml
								</name>
								<content>
									<![CDATA[<?xml version="1.0" encoding="UTF-8"?>
<xmi:XMI xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI"; xmlns:resources.j2c="http://www.ibm.com/websphere/appserver/schemas/5.0/resources.j2c.xmi"; xmlns:resources.jdbc="http://www.ibm.com/websphere/appserver/schemas/5.0/resources.jdbc.xmi"; xmlns:resources.jms="http://www.ibm.com/websphere/appserver/schemas/5.0/resources.jms.xmi"; xmlns:resources.mail="http://www.ibm.com/websphere/appserver/schemas/5.0/resources.mail.xmi"; xmlns:resources.url="http://www.ibm.com/websphere/appserver/schemas/5.0/resources.url.xmi";>
  <resources.jdbc:JDBCProvider xmi:id="builtin_jdbcprovider" name="Derby JDBC Provider (XA)" description="Built-in Derby JDBC Provider (XA)" providerType="Derby JDBC Provider (XA)" implementationClassName="org.apache.derby.jdbc.EmbeddedXADataSource" xa="true">
    <classpath>${DERBY_JDBC_DRIVER_PATH}/derby.jar</classpath>
    <factories xmi:type="resources.jdbc:DataSource" xmi:id="DataSource_1184581997343" name="DefaultEJBTimerDataSource" jndiName="jdbc/DefaultEJBTimerDataSource" description="Default data source for WebSphere EJB Timer Service" category="default" authMechanismPreference="BASIC_PASSWORD" relationalResourceAdapter="builtin_rra" statementCacheSize="10" datasourceHelperClassname="com.ibm.websphere.rsadapter.DerbyDataStoreHelper">
      <propertySet xmi:id="J2EEResourcePropertySet_1184581997343">
        <resourceProperties xmi:id="J2EEResourceProperty_1184581997343" name="databaseName" type="java.lang.String" value="${USER_INSTALL_ROOT}/databases/EJBTimers/${SERVER}/EJBTimerDB" description="Location of Derby default database for the EJB Timer Service." required="true"/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184581997344" name="shutdownDatabase" type="java.lang.String" value=""/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184581997345" name="dataSourceName" type="java.lang.String" value=""/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184581997346" name="description" type="java.lang.String" value=""/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184581997347" name="connectionAttributes" type="java.lang.String" value="upgrade=true" description="Allows the Derby database to be upgraded."/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184581997348" name="createDatabase" type="java.lang.String" value=""/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184581997349" name="enableMultithreadedAccessDetection" type="java.lang.Boolean" value="false"/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184581997350" name="preTestSQLString" type="java.lang.String" value=""/>
      </propertySet>
      <connectionPool xmi:id="ConnectionPool_1184581997343" connectionTimeout="1800" maxConnections="30" minConnections="1" reapTime="180" unusedTimeout="1800" agedTimeout="0" purgePolicy="EntirePool"/>
    </factories>
  </resources.jdbc:JDBCProvider>
  <resources.jms:JMSProvider xmi:id="builtin_jmsprovider" name="WebSphere JMS Provider" description="V5 Default Messaging Provider" externalInitialContextFactory="" externalProviderURL=""/>
  <resources.jms:JMSProvider xmi:id="builtin_mqprovider" name="WebSphere MQ JMS Provider" description="WebSphere MQ Messaging Provider" externalInitialContextFactory="" externalProviderURL=""/>
  <resources.j2c:J2CResourceAdapter xmi:id="builtin_rra" name="WebSphere Relational Resource Adapter" description="Built-in Relational Resource Adapter for WebSphere Persistence" archivePath="${WAS_LIBS_DIR}/rsadapter.rar">
    <classpath>${WAS_LIBS_DIR}/rsadapter.rar</classpath>
    <propertySet xmi:id="J2EEResourcePropertySet_1184581997344"/>
    <deploymentDescriptor xmi:id="Connector_1184581997343" displayName="WS_RdbResourceAdapter" vendorName="IBM" specVersion="1.5" eisType="RRA" version="6.0">
      <icons xmi:id="IconType_1184581997343" smallIcon="rdb_small_icon.jpg" largeIcon="rdb_large_icon.jpg"/>
      <displayNames xmi:id="DisplayName_1186649534640" value="WS_RdbResourceAdapter"/>
      <displayNames xmi:id="DisplayName_1186649346296" value="WS_RdbResourceAdapter"/>
      <displayNames xmi:id="DisplayName_1185984121343" value="WS_RdbResourceAdapter"/>
      <displayNames xmi:id="DisplayName_1185983940703" value="WS_RdbResourceAdapter"/>
      <displayNames xmi:id="DisplayName_1184858647609" value="WS_RdbResourceAdapter"/>
      <displayNames xmi:id="DisplayName_1184581997343" value="WS_RdbResourceAdapter"/>
      <displayNames xmi:id="DisplayName_1184581997344" value="WS_RdbResourceAdapter"/>
      <descriptions xmi:id="Description_1184581997343" value="IBM Relational ResourceAdapter"/>
      <license xmi:id="License_1184581997343" required="false">
        <descriptions xmi:id="Description_1184581997344" value="IBM Relational ResourceAdapter"/>
      </license>
      <resourceAdapter xmi:id="ResourceAdapter_1184581997343" transactionSupport="NoTransaction" reauthenticationSupport="false" resourceAdapterClass="com.ibm.ws.rsadapter.spi.WSResourceAdapterImpl">
        <outboundResourceAdapter xmi:id="OutboundResourceAdapter_1184581997343" reauthenticationSupport="false" transactionSupport="XATransaction">
          <connectionDefinitions xmi:id="ConnectionDefinition_1184581997343" managedConnectionFactoryClass="com.ibm.ws.rsadapter.spi.WSManagedConnectionFactoryImpl" connectionFactoryInterface="javax.resource.cci.ConnectionFactory" connectionFactoryImplClass="com.ibm.ws.rsadapter.cci.WSRdbConnectionFactoryImpl" connectionInterface="javax.resource.cci.Connection" connectionImplClass="com.ibm.ws.rsadapter.cci.WSRdbConnectionImpl">
            <configProperties xmi:id="ConfigProperty_1184581997343" name="ConnectionFactoryType" type="java.lang.Integer" value="2">
              <descriptions xmi:id="Description_1184581997345" value="A constant indicating the type of connection factory: WSJdbcDataSource (1) or WSRdbConnectionFactory (2)"/>
            </configProperties>
          </connectionDefinitions>
          <authenticationMechanisms xmi:id="AuthenticationMechanism_1184581997343" authenticationMechanismType="BasicPassword" credentialInterface="javax.resource.spi.security.PasswordCredential">
            <descriptions xmi:id="Description_1184581997359" value="BasicPassword authentication"/>
          </authenticationMechanisms>
          <authenticationMechanisms xmi:id="AuthenticationMechanism_1184581997359" authenticationMechanismType="Kerbv5" credentialInterface="javax.resource.spi.security.GenericCredential">
            <descriptions xmi:id="Description_1184581997360" value="Kerbv5 Authentication"/>
          </authenticationMechanisms>
        </outboundResourceAdapter>
      </resourceAdapter>
    </deploymentDescriptor>
    <connectionDefTemplateProps xmi:id="ConnectionDefTemplateProps_1184581997359" ConnectionDefinition="ConnectionDefinition_1184581997343"/>
  </resources.j2c:J2CResourceAdapter>
  <resources.mail:MailProvider xmi:id="builtin_mailprovider" name="Built-in Mail Provider" description="The built-in mail provider">
    <protocolProviders xmi:id="ProtocolProvider_1184581997359" protocol="smtp" classname="com.sun.mail.smtp.SMTPTransport" type="TRANSPORT"/>
    <protocolProviders xmi:id="ProtocolProvider_1184581997360" protocol="pop3" classname="com.sun.mail.pop3.POP3Store" type="STORE"/>
    <protocolProviders xmi:id="ProtocolProvider_1184581997361" protocol="imap" classname="com.sun.mail.imap.IMAPStore" type="STORE"/>
  </resources.mail:MailProvider>
  <resources.url:URLProvider xmi:id="URLProvider_1" name="Default URL Provider" streamHandlerClassName="unused" protocol="unused"/>
  <resources.j2c:J2CResourceAdapter xmi:id="J2CResourceAdapter_1174498515328" name="SIB JMS Resource Adapter" description="Default messaging provider" archivePath="${WAS_INSTALL_ROOT}/installedConnectors/sib.api.jmsra.rar">
    <classpath>${WAS_INSTALL_ROOT}/installedConnectors/sib.api.jmsra.rar</classpath>
    <propertySet xmi:id="J2EEResourcePropertySet_1184581997359"/>
    <deploymentDescriptor xmi:id="Connector_1184581997359" displayName="WebSphere Default Messaging Provider" vendorName="IBM" specVersion="1.5" eisType="JMS Provider" version="0.3">
      <displayNames xmi:id="DisplayName_1186649534641" value="WebSphere Default Messaging Provider"/>
      <displayNames xmi:id="DisplayName_1186649346297" value="WebSphere Default Messaging Provider"/>
      <displayNames xmi:id="DisplayName_1185984121344" value="WebSphere Default Messaging Provider"/>
      <displayNames xmi:id="DisplayName_1185983940718" value="WebSphere Default Messaging Provider"/>
      <displayNames xmi:id="DisplayName_1184858647610" value="WebSphere Default Messaging Provider"/>
      <displayNames xmi:id="DisplayName_1184581997359" value="WebSphere Default Messaging Provider"/>
      <displayNames xmi:id="DisplayName_1184581997360" value="WebSphere Default Messaging Provider"/>
      <displayNames xmi:id="DisplayName_1184581997361" value="WebSphere Default Messaging Provider"/>
      <displayNames xmi:id="DisplayName_1184581997362" value="WebSphere Default Messaging Provider"/>
      <displayNames xmi:id="DisplayName_1184581997363" value="WebSphere Default Messaging Provider"/>
      <resourceAdapter xmi:id="ResourceAdapter_1184581997359" transactionSupport="NoTransaction" reauthenticationSupport="false" resourceAdapterClass="com.ibm.ws.sib.api.jmsra.impl.JmsJcaResourceAdapterImpl">
        <outboundResourceAdapter xmi:id="OutboundResourceAdapter_1184581997359" reauthenticationSupport="false" transactionSupport="XATransaction">
          <connectionDefinitions xmi:id="ConnectionDefinition_1184581997359" managedConnectionFactoryClass="com.ibm.ws.sib.api.jmsra.impl.JmsJcaManagedQueueConnectionFactoryImpl" connectionFactoryInterface="javax.jms.QueueConnectionFactory" connectionFactoryImplClass="com.ibm.ws.sib.api.jms.impl.JmsQueueConnFactoryImpl" connectionInterface="javax.jms.QueueConnection" connectionImplClass="com.ibm.ws.sib.api.jms.impl.JmsQueueConnectionImpl">
            <configProperties xmi:id="ConfigProperty_1184581997359" name="BusName" type="java.lang.String"/>
            <configProperties xmi:id="ConfigProperty_1184581997360" name="ClientID" type="java.lang.String"/>
            <configProperties xmi:id="ConfigProperty_1184581997361" name="UserName" type="java.lang.String"/>
            <configProperties xmi:id="ConfigProperty_1184581997362" name="Password" type="java.lang.String"/>
            <configProperties xmi:id="ConfigProperty_1184581997363" name="NonPersistentMapping" type="java.lang.String" value="ExpressNonPersistent"/>
            <configProperties xmi:id="ConfigProperty_1184581997364" name="PersistentMapping" type="java.lang.String" value="ReliablePersistent"/>
            <configProperties xmi:id="ConfigProperty_1184581997365" name="ReadAhead" type="java.lang.String" value="Default"/>
            <configProperties xmi:id="ConfigProperty_1184581997366" name="Target" type="java.lang.String"/>
            <configProperties xmi:id="ConfigProperty_1184581997367" name="TargetType" type="java.lang.String" value="BusMember"/>
            <configProperties xmi:id="ConfigProperty_1184581997368" name="TargetSignificance" type="java.lang.String" value="Preferred"/>
            <configProperties xmi:id="ConfigProperty_1184581997369" name="RemoteProtocol" type="java.lang.String"/>
            <configProperties xmi:id="ConfigProperty_1184581997370" name="TargetTransportChain" type="java.lang.String"/>
            <configProperties xmi:id="ConfigProperty_1184581997371" name="ProviderEndpoints" type="java.lang.String"/>
            <configProperties xmi:id="ConfigProperty_1184581997372" name="ConnectionProximity" type="java.lang.String" value="Bus"/>
            <configProperties xmi:id="ConfigProperty_1184581997373" name="TemporaryQueueNamePrefix" type="java.lang.String"/>
            <configProperties xmi:id="ConfigProperty_1184581997374" name="ShareDataSourceWithCMP" type="java.lang.Boolean" value="false"/>
          </connectionDefinitions>
          <connectionDefinitions xmi:id="ConnectionDefinition_1184581997360" managedConnectionFactoryClass="com.ibm.ws.sib.api.jmsra.impl.JmsJcaManagedTopicConnectionFactoryImpl" connectionFactoryInterface="javax.jms.TopicConnectionFactory" connectionFactoryImplClass="com.ibm.ws.sib.api.jms.impl.JmsTopicConnFactoryImpl" connectionInterface="javax.jms.TopicConnection" connectionImplClass="com.ibm.ws.sib.api.jms.impl.JmsTopicConnectionImpl">
            <configProperties xmi:id="ConfigProperty_1184581997375" name="BusName" type="java.lang.String"/>
            <configProperties xmi:id="ConfigProperty_1184581997376" name="ClientID" type="java.lang.String"/>
            <configProperties xmi:id="ConfigProperty_1184581997377" name="UserName" type="java.lang.String"/>
            <configProperties xmi:id="ConfigProperty_1184581997378" name="Password" type="java.lang.String"/>
            <configProperties xmi:id="ConfigProperty_1184581997379" name="NonPersistentMapping" type="java.lang.String" value="ExpressNonPersistent"/>
            <configProperties xmi:id="ConfigProperty_1184581997380" name="PersistentMapping" type="java.lang.String" value="ReliablePersistent"/>
            <configProperties xmi:id="ConfigProperty_1184581997381" name="DurableSubscriptionHome" type="java.lang.String"/>
            <configProperties xmi:id="ConfigProperty_1184581997382" name="ReadAhead" type="java.lang.String" value="Default"/>
            <configProperties xmi:id="ConfigProperty_1184581997383" name="Target" type="java.lang.String"/>
            <configProperties xmi:id="ConfigProperty_1184581997384" name="TargetType" type="java.lang.String" value="BusMember"/>
            <configProperties xmi:id="ConfigProperty_1184581997385" name="TargetSignificance" type="java.lang.String" value="Preferred"/>
            <configProperties xmi:id="ConfigProperty_1184581997386" name="RemoteProtocol" type="java.lang.String"/>
            <configProperties xmi:id="ConfigProperty_1184581997387" name="TargetTransportChain" type="java.lang.String"/>
            <configProperties xmi:id="ConfigProperty_1184581997388" name="ProviderEndpoints" type="java.lang.String"/>
            <configProperties xmi:id="ConfigProperty_1184581997389" name="ConnectionProximity" type="java.lang.String" value="Bus"/>
            <configProperties xmi:id="ConfigProperty_1184581997390" name="TemporaryTopicNamePrefix" type="java.lang.String"/>
            <configProperties xmi:id="ConfigProperty_1184581997391" name="ShareDataSourceWithCMP" type="java.lang.Boolean" value="false"/>
            <configProperties xmi:id="ConfigProperty_1184581997392" name="ShareDurableSubscriptions" type="java.lang.String" value="InCluster"/>
          </connectionDefinitions>
          <connectionDefinitions xmi:id="ConnectionDefinition_1184581997361" managedConnectionFactoryClass="com.ibm.ws.sib.api.jmsra.impl.JmsJcaManagedConnectionFactoryImpl" connectionFactoryInterface="javax.jms.ConnectionFactory" connectionFactoryImplClass="com.ibm.ws.sib.api.jms.impl.JmsConnFactoryImpl" connectionInterface="javax.jms.Connection" connectionImplClass="com.ibm.ws.sib.api.jms.impl.JmsConnectionImpl">
            <configProperties xmi:id="ConfigProperty_1184581997393" name="BusName" type="java.lang.String"/>
            <configProperties xmi:id="ConfigProperty_1184581997394" name="ClientID" type="java.lang.String"/>
            <configProperties xmi:id="ConfigProperty_1184581997395" name="UserName" type="java.lang.String"/>
            <configProperties xmi:id="ConfigProperty_1184581997396" name="Password" type="java.lang.String"/>
            <configProperties xmi:id="ConfigProperty_1184581997397" name="NonPersistentMapping" type="java.lang.String" value="ExpressNonPersistent"/>
            <configProperties xmi:id="ConfigProperty_1184581997398" name="PersistentMapping" type="java.lang.String" value="ReliablePersistent"/>
            <configProperties xmi:id="ConfigProperty_1184581997399" name="DurableSubscriptionHome" type="java.lang.String"/>
            <configProperties xmi:id="ConfigProperty_1184581997400" name="ReadAhead" type="java.lang.String" value="Default"/>
            <configProperties xmi:id="ConfigProperty_1184581997401" name="Target" type="java.lang.String"/>
            <configProperties xmi:id="ConfigProperty_1184581997402" name="TargetType" type="java.lang.String" value="BusMember"/>
            <configProperties xmi:id="ConfigProperty_1184581997403" name="TargetSignificance" type="java.lang.String" value="Preferred"/>
            <configProperties xmi:id="ConfigProperty_1184581997404" name="RemoteProtocol" type="java.lang.String"/>
            <configProperties xmi:id="ConfigProperty_1184581997405" name="TargetTransportChain" type="java.lang.String"/>
            <configProperties xmi:id="ConfigProperty_1184581997406" name="ProviderEndpoints" type="java.lang.String"/>
            <configProperties xmi:id="ConfigProperty_1184581997407" name="ConnectionProximity" type="java.lang.String" value="Bus"/>
            <configProperties xmi:id="ConfigProperty_1184581997408" name="TemporaryQueueNamePrefix" type="java.lang.String"/>
            <configProperties xmi:id="ConfigProperty_1184581997409" name="TemporaryTopicNamePrefix" type="java.lang.String"/>
            <configProperties xmi:id="ConfigProperty_1184581997410" name="ShareDataSourceWithCMP" type="java.lang.Boolean" value="false"/>
            <configProperties xmi:id="ConfigProperty_1184581997411" name="ShareDurableSubscriptions" type="java.lang.String" value="InCluster"/>
          </connectionDefinitions>
          <authenticationMechanisms xmi:id="AuthenticationMechanism_1184581997360" authenticationMechanismType="BasicPassword" credentialInterface="javax.resource.spi.security.PasswordCredential"/>
        </outboundResourceAdapter>
        <inboundResourceAdapter xmi:id="InboundResourceAdapter_1184581997359">
          <messageAdapter xmi:id="MessageAdapter_1184581997359">
            <messageListeners xmi:id="MessageListener_1184581997359" messageListenerType="javax.jms.MessageListener">
              <activationSpec xmi:id="ActivationSpec_1184581997359" activationSpecClass="com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl">
                <requiredConfigProperties xmi:id="RequiredConfigPropertyType_1184581997359" name="destination"/>
                <requiredConfigProperties xmi:id="RequiredConfigPropertyType_1184581997360" name="destinationType"/>
                <requiredConfigProperties xmi:id="RequiredConfigPropertyType_1184581997361" name="busName"/>
              </activationSpec>
            </messageListeners>
          </messageAdapter>
        </inboundResourceAdapter>
        <adminObjects xmi:id="AdminObject_1184581997359" adminObjectInterface="javax.jms.Queue" adminObjectClass="com.ibm.ws.sib.api.jms.impl.JmsQueueImpl">
          <configProperties xmi:id="ConfigProperty_1184581997412" name="QueueName" type="java.lang.String"/>
          <configProperties xmi:id="ConfigProperty_1184581997413" name="DeliveryMode" type="java.lang.String" value="Application"/>
          <configProperties xmi:id="ConfigProperty_1184581997414" name="TimeToLive" type="java.lang.Long"/>
          <configProperties xmi:id="ConfigProperty_1184581997415" name="Priority" type="java.lang.Integer"/>
          <configProperties xmi:id="ConfigProperty_1184581997416" name="ReadAhead" type="java.lang.String" value="AsConnection"/>
          <configProperties xmi:id="ConfigProperty_1184581997417" name="BusName" type="java.lang.String"/>
        </adminObjects>
        <adminObjects xmi:id="AdminObject_1184581997360" adminObjectInterface="javax.jms.Topic" adminObjectClass="com.ibm.ws.sib.api.jms.impl.JmsTopicImpl">
          <configProperties xmi:id="ConfigProperty_1184581997418" name="TopicSpace" type="java.lang.String" value="Default.Topic.Space"/>
          <configProperties xmi:id="ConfigProperty_1184581997419" name="TopicName" type="java.lang.String"/>
          <configProperties xmi:id="ConfigProperty_1184581997420" name="DeliveryMode" type="java.lang.String" value="Application"/>
          <configProperties xmi:id="ConfigProperty_1184581997421" name="TimeToLive" type="java.lang.Long"/>
          <configProperties xmi:id="ConfigProperty_1184581997422" name="Priority" type="java.lang.Integer"/>
          <configProperties xmi:id="ConfigProperty_1184581997423" name="ReadAhead" type="java.lang.String" value="AsConnection"/>
          <configProperties xmi:id="ConfigProperty_1184581997424" name="BusName" type="java.lang.String"/>
        </adminObjects>
      </resourceAdapter>
    </deploymentDescriptor>
    <connectionDefTemplateProps xmi:id="ConnectionDefTemplateProps_1184581997360" ConnectionDefinition="ConnectionDefinition_1184581997359">
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997359" name="BusName" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997360" name="ClientID" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997361" name="ConnectionProximity" type="java.lang.String" value="Bus" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997362" name="durableSubscriptionHome" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997363" name="NonPersistentMapping" type="java.lang.String" value="ExpressNonPersistent" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997364" name="Password" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997365" name="PersistentMapping" type="java.lang.String" value="ReliablePersistent" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997366" name="ProviderEndpoints" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997367" name="ReadAhead" type="java.lang.String" value="Default" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997368" name="RemoteProtocol" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997369" name="TargetTransportChain" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997370" name="ShareDataSourceWithCMP" type="java.lang.Boolean" value="false" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997371" name="shareDurableSubscriptions" type="java.lang.String" value="AsCluster" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997372" name="Target" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997373" name="TargetSignificance" type="java.lang.String" value="Preferred" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997374" name="TargetType" type="java.lang.String" value="BusMember" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997375" name="TemporaryQueueNamePrefix" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997376" name="temporaryTopicNamePrefix" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997377" name="UserName" type="java.lang.String" required="false"/>
    </connectionDefTemplateProps>
    <connectionDefTemplateProps xmi:id="ConnectionDefTemplateProps_1184581997361" ConnectionDefinition="ConnectionDefinition_1184581997360">
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997378" name="BusName" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997379" name="ClientID" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997380" name="ConnectionProximity" type="java.lang.String" value="Bus" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997381" name="DurableSubscriptionHome" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997382" name="NonPersistentMapping" type="java.lang.String" value="ExpressNonPersistent" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997383" name="Password" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997384" name="PersistentMapping" type="java.lang.String" value="ReliablePersistent" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997385" name="ProviderEndpoints" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997386" name="ReadAhead" type="java.lang.String" value="Default" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997387" name="RemoteProtocol" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997388" name="TargetTransportChain" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997389" name="ShareDataSourceWithCMP" type="java.lang.Boolean" value="false" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997390" name="ShareDurableSubscriptions" type="java.lang.String" value="InCluster" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997391" name="Target" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997392" name="TargetSignificance" type="java.lang.String" value="Preferred" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997393" name="TargetType" type="java.lang.String" value="BusMember" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997394" name="temporaryQueueNamePrefix" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997395" name="TemporaryTopicNamePrefix" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997396" name="UserName" type="java.lang.String" required="false"/>
    </connectionDefTemplateProps>
    <connectionDefTemplateProps xmi:id="ConnectionDefTemplateProps_1184581997362" ConnectionDefinition="ConnectionDefinition_1184581997361">
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997397" name="BusName" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997398" name="ClientID" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997399" name="ConnectionProximity" type="java.lang.String" value="Bus" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997400" name="DurableSubscriptionHome" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997401" name="NonPersistentMapping" type="java.lang.String" value="ExpressNonPersistent" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997402" name="Password" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997403" name="PersistentMapping" type="java.lang.String" value="ReliablePersistent" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997404" name="ProviderEndpoints" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997405" name="ReadAhead" type="java.lang.String" value="Default" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997406" name="RemoteProtocol" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997407" name="TargetTransportChain" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997408" name="ShareDataSourceWithCMP" type="java.lang.Boolean" value="false" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997409" name="ShareDurableSubscriptions" type="java.lang.String" value="InCluster" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997410" name="Target" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997411" name="TargetSignificance" type="java.lang.String" value="Preferred" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997412" name="TargetType" type="java.lang.String" value="BusMember" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997413" name="TemporaryQueueNamePrefix" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997414" name="TemporaryTopicNamePrefix" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997415" name="UserName" type="java.lang.String" required="false"/>
    </connectionDefTemplateProps>
    <activationSpecTemplateProps xmi:id="ActivationSpecTemplateProps_1184581997359" activationSpec="ActivationSpec_1184581997359">
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997416" name="acknowledgeMode" type="java.lang.String" value="Auto-acknowledge" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997417" name="busName" type="java.lang.String" required="true"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997418" name="clientId" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997419" name="destination" type="javax.jms.Destination" required="true"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997420" name="destinationType" type="java.lang.String" required="true"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997421" name="durableSubscriptionHome" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997422" name="maxBatchSize" type="java.lang.Integer" value="1" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997423" name="maxConcurrency" type="java.lang.Integer" value="10" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997424" name="messageSelector" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997425" name="password" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997426" name="readAhead" type="java.lang.String" value="Default" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997427" name="shareDataSourceWithCMP" type="java.lang.Boolean" value="false" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997428" name="shareDurableSubscriptions" type="java.lang.String" value="InCluster" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997429" name="subscriptionDurability" type="java.lang.String" value="NonDurable" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997430" name="subscriptionName" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997431" name="target" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997432" name="targetSignificance" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997433" name="targetTransportChain" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997434" name="targetType" type="java.lang.String" required="false"/>
      <resourceProperties xmi:id="J2EEResourceProperty_1184581997435" name="userName" type="java.lang.String" required="false"/>
      <complexPropertySet xmi:id="J2EEResourcePropertySet_1184581997360">
        <resourceProperties xmi:id="J2EEResourceProperty_1184581997436" name="destination" type="javax.jms.Destination" required="false"/>
      </complexPropertySet>
    </activationSpecTemplateProps>
    <adminObjectTemplateProps xmi:id="AdminObjectTemplateProps_1184581997359" adminObject="AdminObject_1184581997359">
      <properties xmi:id="J2EEResourceProperty_1184581997437" name="BusName" type="java.lang.String" required="false"/>
      <properties xmi:id="J2EEResourceProperty_1184581997438" name="DeliveryMode" type="java.lang.String" value="Application" required="false"/>
      <properties xmi:id="J2EEResourceProperty_1184581997439" name="forwardRoutingPath" type="[Ljava.lang.String;" required="false"/>
      <properties xmi:id="J2EEResourceProperty_1184581997440" name="Priority" type="java.lang.Integer" required="false"/>
      <properties xmi:id="J2EEResourceProperty_1184581997441" name="QueueName" type="java.lang.String" required="false"/>
      <properties xmi:id="J2EEResourceProperty_1184581997442" name="ReadAhead" type="java.lang.String" value="AsConnection" required="false"/>
      <properties xmi:id="J2EEResourceProperty_1184581997443" name="reverseRoutingPath" type="[Ljava.lang.String;" required="false"/>
      <properties xmi:id="J2EEResourceProperty_1184581997444" name="TimeToLive" type="java.lang.Long" required="false"/>
    </adminObjectTemplateProps>
    <adminObjectTemplateProps xmi:id="AdminObjectTemplateProps_1184581997360" adminObject="AdminObject_1184581997360">
      <properties xmi:id="J2EEResourceProperty_1184581997445" name="BusName" type="java.lang.String" required="false"/>
      <properties xmi:id="J2EEResourceProperty_1184581997446" name="DeliveryMode" type="java.lang.String" value="Application" required="false"/>
      <properties xmi:id="J2EEResourceProperty_1184581997447" name="forwardRoutingPath" type="[Ljava.lang.String;" required="false"/>
      <properties xmi:id="J2EEResourceProperty_1184581997448" name="Priority" type="java.lang.Integer" required="false"/>
      <properties xmi:id="J2EEResourceProperty_1184581997449" name="ReadAhead" type="java.lang.String" value="AsConnection" required="false"/>
      <properties xmi:id="J2EEResourceProperty_1184581997450" name="reverseRoutingPath" type="[Ljava.lang.String;" required="false"/>
      <properties xmi:id="J2EEResourceProperty_1184581997451" name="TimeToLive" type="java.lang.Long" required="false"/>
      <properties xmi:id="J2EEResourceProperty_1184581997452" name="TopicName" type="java.lang.String" required="false"/>
      <properties xmi:id="J2EEResourceProperty_1184581997453" name="TopicSpace" type="java.lang.String" value="Default.Topic.Space" required="false"/>
    </adminObjectTemplateProps>
  </resources.j2c:J2CResourceAdapter>
  <resources.jdbc:JDBCProvider xmi:id="JDBCProvider_1184858647609" name="Oracle Jdbc Provider" description="Oracle JDBC Driver" implementationClassName="oracle.jdbc.pool.OracleConnectionPoolDataSource">
    <classpath>D:\Documents\Developpements\.m2\repository\com\oracle\ojdbc14\10.2.0.2.0\ojdbc14-10.2.0.2.0.jar</classpath>
    <factories xmi:type="resources.jdbc:DataSource" xmi:id="DataSource_1184858647609" name="Source de données Aws" jndiName="jdbc/Aws" description="JDBC Datasource" category="Aws Datasource" authDataAlias="LoginOracle" relationalResourceAdapter="builtin_rra" statementCacheSize="10" datasourceHelperClassname="com.ibm.websphere.rsadapter.OracleDataStoreHelper">
      <propertySet xmi:id="J2EEResourcePropertySet_1184858647610">
        <resourceProperties xmi:id="J2EEResourceProperty_1184858647611" name="driverType" type="java.lang.String" value="" description="The type of the driver. The possible values are: thin, oci8." required="false"/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184858647612" name="oracleLogFileSizeLimit" type="java.lang.Integer" value="0" description="Oracle10g and beyond: The oracleLogFileSizeLimit specifies the maximum number of bytes to be written to any one file. Property is relevant only if trace file is specified. Default is unlimited" required="false"/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184858647613" name="oracleLogFileCount" type="java.lang.Integer" value="1" description="Oracle10g and beyond: The oracleLogFileCount specifies the number of files to use. Property is relevant only if trace file is specified. Default is 1." required="false"/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184858647614" name="oracleLogFileName" type="java.lang.String" value="" description="Oracle10g and beyond: The oracleLogFileName indicates which file to write the traces to" required="false"/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184858647615" name="oracleLogTraceLevel" type="java.lang.String" value="INFO" description="Oracle10g and beyond: The oracleLogTraceLevel specifies which message levels will be logged .Default is INFO. Property is relevant only if trace file is specified.  Possible values from highest to lowest: SEVERE, WARNING, INFO, CONFIG, FINE, FINER ,FINEST.  Note that each value includes all above it, for example INFO includes SEVERE and WARNING" required="false"/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184858647616" name="oracle9iLogTraceLevel" type="java.lang.String" value="2" description="Oracle9i and prior: The oracle9iLogTraceLevel specifies which message levels will be logged .Default is 2.  Possible values from highest to lowest 3, 2, 1" required="false"/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184858647617" name="oracleLogFormat" type="java.lang.String" value="SimpleFormat" description="Oracle10g and beyond: The trace output format. Property is relevant only if trace file is specified. Default is SimpleFormat.  Possible values (SimpleFormat/ XMLFormat)" required="false"/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184858647618" name="oracleLogPackageName" type="java.lang.String" value="oracle.jdbc.driver" description="Oracle10g and beyond: The Oracle package to trace. Default is oracle.jdbc.driver" required="false"/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184858647619" name="TNSEntryName" type="java.lang.String" value="" description="The entry name which is used for the Oracle OCI driver." required="false"/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184858647620" name="networkProtocol" type="java.lang.String" value="" description="Whether to use TCP/IP or IPC or any other protocol" required="false"/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184858647621" name="databaseName" type="java.lang.String" value="" description="The database name. For example, enter sample to make your Data Source point to sample, used with thin driver" required="false"/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184858647622" name="serverName" type="java.lang.String" value="" description="The name of the server, used with thin driver setup" required="false"/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184858647623" name="portNumber" type="java.lang.Integer" value="1521" description="The TCP/IP port number where the jdbc driver resides. used with thin driver setup" required="false"/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184858647624" name="dataSourceName" type="java.lang.String" value="" description="The name of the Data Source." required="false"/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184858647625" name="URL" type="java.lang.String" value="jdbc:oracle:thin:@sxdora31:1531:oraxt31" description="adminRequired=true - This is a required property. The URL indicating the database from which the Data Source will obtain connections, such as 'jdbc:oracle:thin:@localhost:1521:sample' for thin driver and 'jdbc:oracle:oci8:@sample' for thick driver." required="true"/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184858647626" name="loginTimeout" type="java.lang.Integer" value="" description="The maximum time to attempt to connect a database. If this value is non-zero, attempt to connect to the database will timeout when this specified value is reached." required="false"/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184858647627" name="description" type="java.lang.String" value="" description="The description of this datasource." required="false"/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184858647628" name="enableMultithreadedAccessDetection" type="java.lang.Boolean" value="false" description="Indicates whether or not to detect multithreaded access to a Connection and its corresponding Statements, ResultSets, and MetaDatas." required="false"/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184858647629" name="reauthentication" type="java.lang.Boolean" value="false" description="Specifies whether to allow reauthentication of connections.  This option requires implementation of the doConnectionSetupPerTransaction() method on the DataStoreHelper where the reauthentication is expected to take place." required="false"/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184858647630" name="jmsOnePhaseOptimization" type="java.lang.Boolean" value="false" description="Specifies whether to allow JMS to get optimized connections from this datasource.  This option will prevent JDBC Applications from getting connections from this datasource." required="false"/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184858647631" name="preTestSQLString" type="java.lang.String" value="SELECT 1 FROM DUAL" description="This SQL statement is used for pre-test connection function. For example, SELECT 1 FROM [TESTTABLE]. If pre-testing of connection is enabled for the connection pool, this SQL statement will be executed to the connection to make sure the connection is good. If you leave this field blank, the default SQL statement, SELECT 1 FROM TABLE1, will be used at runtime. This will slow down the execution because of the exception handling if table TABLE1 is not defined in the database. Users are recommended to provide their own SQL statement to improve the performance." required="false"/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184858647632" name="validateNewConnection" type="java.lang.Boolean" value="false" description="Setting this flag to true will cause to WebSphere Application Server to validate connections when they first get created and to keep trying to get a good connection from the database if the validation fails. Setting this flag to false prevents any additional validation from being performed - newly created connections are assumed to be valid and usable. " required="false"/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184858647633" name="validateNewConnectionRetryCount" type="java.lang.Integer" value="100" description="This is useful only if validateNewConnection flag is true.  This property controls how many times WebSphere will try to get a connection from the database before giving up" required="false"/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184858647634" name="validateNewConnectionRetryInterval" type="java.lang.Long" value="3" description="This is useful only if validateNewConnection flag is true.  This property controls the interval between retries to retrieve a connection from the database.  Unit is seconds" required="false"/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184858647635" name="dbFailOverEnabled" type="java.lang.Boolean" value="" description="Deprecated. Please use the validateNewConnection property instead. This flag should be set to true only if the backend database is configured with failover capability.  This flag will indicate to WebSphere to validate connections when they first get created and to keep trying to get a good connection from the database when the validation fails." required="false"/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184858647636" name="connRetriesDuringDBFailover" type="java.lang.Integer" value="" description="Deprecated. Please use the validateNewConnectionRetryCount property instead. This is useful only if dbFailOverEnabled flag is true.  This property controls how many times WebSphere will try to get a connection from the database before giving up" required="false"/>
        <resourceProperties xmi:id="J2EEResourceProperty_1184858647637" name="connRetryIntervalDuringDBFailover" type="java.lang.Long" value="" description="Deprecated. Please use the validateNewConnectionRetryInterval instead. This is useful only if dbFailOverEnabled flag is true.  This property controls the interval between retries to retrieve a connection from the database." required="false"/>
      </propertySet>
      <connectionPool xmi:id="ConnectionPool_1184858647609" connectionTimeout="180" maxConnections="10" minConnections="1" reapTime="180" unusedTimeout="1800" agedTimeout="0" purgePolicy="EntirePool"/>
      <mapping xmi:id="MappingModule_1184858647610" mappingConfigAlias="DefaultPrincipalMapping" authDataAlias="LoginOracle"/>
    </factories>
  </resources.jdbc:JDBCProvider>
</xmi:XMI>
]]>
								</content>
							</file>
							<file>
								<name>
									META-INF/ibmconfig/cells/defaultCell/applications/defaultApp/deployments/defaultApp/variables.xml
								</name>
								<content>
									<![CDATA[<?xml version="1.0" encoding="UTF-8"?>
<variables:VariableMap xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI"; xmlns:variables="http://www.ibm.com/websphere/appserver/schemas/5.0/variables.xmi"; xmi:id="VariableMap_1184581997406"/>
]]>
								</content>
							</file>
							<file>
								<name>
									META-INF/ibmconfig/cells/defaultCell/nodes/defaultNode/servers/defaultServer/libraries.xml
								</name>
								<content>
									<![CDATA[<?xml version="1.0" encoding="UTF-8"?>
<libraries:Library xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI"; xmlns:libraries="http://www.ibm.com/websphere/appserver/schemas/5.0/libraries.xmi"; xmi:id="Library_1190741597140" name="Jamaique">
  <classPath>D:\Documents\Developpements\works\f_jam_pub\applicatif\librairies\jamaique</classPath>
  <classPath>D:\Documents\Developpements\works\f_jam_pub\applicatif\librairies\jamaique\libs</classPath>
</libraries:Library>
]]>
								</content>
							</file>
							<file>
								<name>
									.settings/org.eclipse.wst.common.component
								</name>
								<content>
									<![CDATA[<?xml version="1.0" encoding="UTF-8"?>
<project-modules id="moduleCoreId" project-version="1.5.0">
    <wb-module deploy-name="${pom.artifactId}">
        <wb-resource deploy-path="/" source-path="/"/>
        <dependent-module deploy-path="/" handle="module:/resource/test-web/test-web">
            <dependent-object>WebModule_1192194538343</dependent-object>
            <dependency-type>uses</dependency-type>
        </dependent-module>
        <dependent-module archiveName="test-service.jar" deploy-path="/" handle="module:/resource/test-service/test-service">
            <dependency-type>uses</dependency-type>
        </dependent-module>
    </wb-module>
</project-modules>
]]>
								</content>
							</file>
							<file>
								<name>
									.settings/org.eclipse.wst.common.project.facet.core.xml
								</name>
								<content>
									<![CDATA[<?xml version="1.0" encoding="UTF-8"?>
<faceted-project>
  <runtime name="WebSphere Application Server v6.1"/>
  <fixed facet="jst.ear"/>
  <installed facet="com.ibm.websphere.coexistence.ear" version="6.1"/>
  <installed facet="com.ibm.websphere.extended.ear" version="6.1"/>
  <installed facet="jst.ear" version="1.4"/>
</faceted-project>
]]>
								</content>
							</file>
						</additionalConfig>
					</configuration>
				</plugin>
         <plugin>
            <artifactId>maven-ear-plugin</artifactId>
            <configuration>
               <!--archive>
                  <manifest>
                     <addClasspath>true</addClasspath>
                  </manifest>
               </archive-->
            </configuration>
         </plugin>

		    <plugin>
		      <artifactId>maven-clean-plugin</artifactId>
		      <configuration>
		        <filesets>
		          <fileset>
		            <directory>${basedir}</directory>
		            <includes>
		              <include>*.jar</include>
		            </includes>
		          </fileset>
		          <fileset>
		            <directory>${basedir}/META-INF</directory>
		          </fileset>
		          <fileset>
		            <directory>${basedir}</directory>
		            <includes>
		              <include>.compatibility</include>
		            </includes>
		          </fileset>
		        </filesets>
	          <followSymlinks>false</followSymlinks>
		      </configuration>
		    </plugin>
         
      </plugins>
   </build>
   
</project>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to