Author: manaRH Date: 2012-10-08 10:37:22 -0400 (Mon, 08 Oct 2012) New Revision: 15217
Removed: branches/enterprise/WFK-2_1/jboss-seam-ioc/src/main/java/org/jboss/seam/ioc/guice/ branches/enterprise/WFK-2_1/seam-integration-tests/src/test/java/org/jboss/seam/test/integration/bpm/ branches/enterprise/WFK-2_1/seam-integration-tests/src/test/resources/WEB-INF/components-jbpm.xml branches/enterprise/WFK-2_1/seam-integration-tests/src/test/resources/jbpm.cfg.xml branches/enterprise/WFK-2_1/seam-integration-tests/src/test/resources/testProcess1.jpdl.xml branches/enterprise/WFK-2_1/seam-integration-tests/src/test/resources/testProcess2.jpdl.xml branches/enterprise/WFK-2_1/seam-integration-tests/src/test/resources/testProcess3.jpdl.xml branches/enterprise/WFK-2_1/seam-integration-tests/src/test/resources/testProcess4.jpdl.xml Log: removed jbpm test related files and guice related things Deleted: branches/enterprise/WFK-2_1/seam-integration-tests/src/test/resources/WEB-INF/components-jbpm.xml =================================================================== --- branches/enterprise/WFK-2_1/seam-integration-tests/src/test/resources/WEB-INF/components-jbpm.xml 2012-10-08 14:17:24 UTC (rev 15216) +++ branches/enterprise/WFK-2_1/seam-integration-tests/src/test/resources/WEB-INF/components-jbpm.xml 2012-10-08 14:37:22 UTC (rev 15217) @@ -1,45 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<components xmlns="http://jboss.org/schema/seam/components" - xmlns:bpm="http://jboss.org/schema/seam/bpm" - xmlns:core="http://jboss.org/schema/seam/core" - xmlns:i18n="http://jboss.org/schema/seam/international" - xmlns:security="http://jboss.org/schema/seam/security" - xmlns:persistence="http://jboss.org/schema/seam/persistence" - xmlns:web="http://jboss.org/schema/seam/web" - xmlns:framework="http://jboss.org/schema/seam/framework" - xmlns:jms="http://jboss.org/schema/seam/jms" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation= - "http://jboss.org/schema/seam/core http://jboss.org/schema/seam/core-2.3.xsd - http://jboss.org/schema/seam/bpm http://jboss.org/schema/seam/bpm-2.3.xsd - http://jboss.org/schema/seam/international http://jboss.org/schema/seam/international-2.3.xsd - http://jboss.org/schema/seam/security http://jboss.org/schema/seam/security-2.3.xsd - http://jboss.org/schema/seam/persistence http://jboss.org/schema/seam/persistence-2.3.xsd - http://jboss.org/schema/seam/components http://jboss.org/schema/seam/components-2.3.xsd - http://jboss.org/schema/seam/web http://jboss.org/schema/seam/web-2.3.xsd - http://jboss.org/schema/seam/jms http://jboss.org/schema/seam/jms-2.3.xsd - http://jboss.org/schema/seam/framework http://jboss.org/schema/seam/framework-2.3.xsd"> - - <core:init debug="false" jndi-pattern="@jndiPattern@" /> - - <core:manager concurrent-request-timeout="500" - conversation-timeout="120000" - conversation-id-parameter="cid"/> - - <i18n:locale-config default-locale="fr_CA" supported-locales="fr_CA fr_FR en"/> - - <persistence:managed-persistence-context name="entityManager" - auto-create="true" - persistence-unit-jndi-name="java:/integrationEntityManagerFactory" /> - - - <bpm:jbpm> - <bpm:process-definitions> - <value>testProcess1.jpdl.xml</value> - <value>testProcess2.jpdl.xml</value> - <value>testProcess3.jpdl.xml</value> - <value>testProcess4.jpdl.xml</value> - </bpm:process-definitions> - </bpm:jbpm> - -</components> Deleted: branches/enterprise/WFK-2_1/seam-integration-tests/src/test/resources/jbpm.cfg.xml =================================================================== --- branches/enterprise/WFK-2_1/seam-integration-tests/src/test/resources/jbpm.cfg.xml 2012-10-08 14:17:24 UTC (rev 15216) +++ branches/enterprise/WFK-2_1/seam-integration-tests/src/test/resources/jbpm.cfg.xml 2012-10-08 14:37:22 UTC (rev 15217) @@ -1,18 +0,0 @@ -<jbpm-configuration> - - <jbpm-context> - <service name="persistence"> - <factory> - <bean class="org.jbpm.persistence.db.DbPersistenceServiceFactory"> - <field name="isTransactionEnabled"><false/></field> - </bean> - </factory> - </service> - <service name="tx" factory="org.jbpm.tx.TxServiceFactory" /> - <service name="message" factory="org.jbpm.msg.db.DbMessageServiceFactory" /> - <service name="scheduler" factory="org.jbpm.scheduler.db.DbSchedulerServiceFactory" /> - <service name="logging" factory="org.jbpm.logging.db.DbLoggingServiceFactory" /> - <service name="authentication" factory="org.jbpm.security.authentication.DefaultAuthenticationServiceFactory" /> - </jbpm-context> - -</jbpm-configuration> Deleted: branches/enterprise/WFK-2_1/seam-integration-tests/src/test/resources/testProcess1.jpdl.xml =================================================================== --- branches/enterprise/WFK-2_1/seam-integration-tests/src/test/resources/testProcess1.jpdl.xml 2012-10-08 14:17:24 UTC (rev 15216) +++ branches/enterprise/WFK-2_1/seam-integration-tests/src/test/resources/testProcess1.jpdl.xml 2012-10-08 14:37:22 UTC (rev 15217) @@ -1,12 +0,0 @@ -<process-definition name="TestProcess1" - xmlns="urn:jbpm.org:jpdl-3.2" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="urn:jbpm.org:jpdl-3.2 http://jbpm.org/xsd/jpdl-3.2.xsd"> - - <start-state name="start"> - <transition to="done"/> - </start-state> - - <end-state name="done"/> - -</process-definition> Deleted: branches/enterprise/WFK-2_1/seam-integration-tests/src/test/resources/testProcess2.jpdl.xml =================================================================== --- branches/enterprise/WFK-2_1/seam-integration-tests/src/test/resources/testProcess2.jpdl.xml 2012-10-08 14:17:24 UTC (rev 15216) +++ branches/enterprise/WFK-2_1/seam-integration-tests/src/test/resources/testProcess2.jpdl.xml 2012-10-08 14:37:22 UTC (rev 15217) @@ -1,17 +0,0 @@ -<process-definition name="TestProcess2" - xmlns="urn:jbpm.org:jpdl-3.2" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="urn:jbpm.org:jpdl-3.2 http://jbpm.org/xsd/jpdl-3.2.xsd"> - - <start-state name="start"> - <transition to="decision" /> - </start-state> - - <decision name="decision" expression="#{seamExpressionEvaluatorTestController.name eq 'foo'}"> - <transition to="done" name="true" /> - <transition to="done" name="false" /> - </decision> - - <end-state name="done"/> - -</process-definition> Deleted: branches/enterprise/WFK-2_1/seam-integration-tests/src/test/resources/testProcess3.jpdl.xml =================================================================== --- branches/enterprise/WFK-2_1/seam-integration-tests/src/test/resources/testProcess3.jpdl.xml 2012-10-08 14:17:24 UTC (rev 15216) +++ branches/enterprise/WFK-2_1/seam-integration-tests/src/test/resources/testProcess3.jpdl.xml 2012-10-08 14:37:22 UTC (rev 15217) @@ -1,14 +0,0 @@ -<process-definition name="TestProcess3" - xmlns="urn:jbpm.org:jpdl-3.2" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="urn:jbpm.org:jpdl-3.2 http://jbpm.org/xsd/jpdl-3.2.xsd"> - - <start-state name="start"> - <transition to="done"> - <action expression="#{seamExpressionEvaluatorTestController.nonExistentMethod}" /> - </transition> - </start-state> - - <end-state name="done"/> - -</process-definition> Deleted: branches/enterprise/WFK-2_1/seam-integration-tests/src/test/resources/testProcess4.jpdl.xml =================================================================== --- branches/enterprise/WFK-2_1/seam-integration-tests/src/test/resources/testProcess4.jpdl.xml 2012-10-08 14:17:24 UTC (rev 15216) +++ branches/enterprise/WFK-2_1/seam-integration-tests/src/test/resources/testProcess4.jpdl.xml 2012-10-08 14:37:22 UTC (rev 15217) @@ -1,19 +0,0 @@ -<process-definition name="TestProcess4" - xmlns="urn:jbpm.org:jpdl-3.2" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="urn:jbpm.org:jpdl-3.2 http://jbpm.org/xsd/jpdl-3.2.xsd"> - - <start-state name="start"> - <transition to="decision" /> - </start-state> - - <decision name="decision" expression="#{testBoolean}"> - <transition to="done" name="true"> - <action expression="#{seamExpressionEvaluatorTestController.logTrue}" /> - </transition> - <transition to="done" name="false" /> - </decision> - - <end-state name="done"/> - -</process-definition> _______________________________________________ seam-commits mailing list [email protected] https://lists.jboss.org/mailman/listinfo/seam-commits
