Seam SVN: r14646 - in branches/community/Seam_2_3/examples-ee6/numberguess: numberguess-ear/src/main/application/META-INF and 2 other directories.
by seam-commits@lists.jboss.org
Author: dhinojosa
Date: 2012-04-30 18:40:06 -0400 (Mon, 30 Apr 2012)
New Revision: 14646
Added:
branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-tests/src/test/resources-integration/web.xml
Modified:
branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ear/src/main/application/META-INF/jboss-deployment-structure.xml
branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-tests/pom.xml
Log:
added changes for number guess to work
Modified: branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ear/pom.xml 2012-04-29 20:50:11 UTC (rev 14645)
+++ branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ear/pom.xml 2012-04-30 22:40:06 UTC (rev 14646)
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="UTF-8"?>
+ <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ear/src/main/application/META-INF/jboss-deployment-structure.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ear/src/main/application/META-INF/jboss-deployment-structure.xml 2012-04-29 20:50:11 UTC (rev 14645)
+++ branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ear/src/main/application/META-INF/jboss-deployment-structure.xml 2012-04-30 22:40:06 UTC (rev 14646)
@@ -1,15 +1,16 @@
<jboss-deployment-structure xmlns="urn:jboss:deployment-structure:1.0">
- <deployment>
+ <deployment>
<dependencies>
- <module name="org.apache.log4j" export="true"/>
- <module name="org.dom4j" export="true"/>
- <module name="org.apache.commons.logging" export="true"/>
- <module name="org.apache.commons.collections" export="true"/>
- <module name="org.slf4j" export="true"/>
- <module name="org.hibernate" export="true"/>
- <module name="org.hibernate.validator" export="true"/>
- <module name="javax.faces.api" export="true"/>
- <module name="com.sun.jsf-impl" export="true"/>
+ <module name="org.javassist" export="true"/>
+ <module name="org.apache.log4j" export="true"/>
+ <module name="org.dom4j" export="true"/>
+ <module name="org.apache.commons.logging" export="true"/>
+ <module name="org.apache.commons.collections" export="true"/>
+ <module name="org.slf4j" export="true"/>
+ <module name="org.hibernate" export="true"/>
+ <module name="org.hibernate.validator" export="true"/>
+ <module name="javax.faces.api" export="true"/>
+ <module name="com.sun.jsf-impl" export="true"/>
</dependencies>
- </deployment>
+ </deployment>
</jboss-deployment-structure>
Modified: branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-tests/pom.xml 2012-04-29 20:50:11 UTC (rev 14645)
+++ branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-tests/pom.xml 2012-04-30 22:40:06 UTC (rev 14646)
@@ -75,7 +75,14 @@
<groupId>org.jboss.spec.javax.el</groupId>
<artifactId>jboss-el-api_2.2_spec</artifactId>
</dependency>
+
<dependency>
+ <groupId>org.javassist</groupId>
+ <artifactId>javassist</artifactId>
+ <version>3.15.0-GA</version>
+ </dependency>
+
+ <dependency>
<groupId>org.jbpm</groupId>
<artifactId>jbpm-jpdl</artifactId>
<version>3.2.3</version>
Added: branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-tests/src/test/resources-integration/web.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-tests/src/test/resources-integration/web.xml (rev 0)
+++ branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-tests/src/test/resources-integration/web.xml 2012-04-30 22:40:06 UTC (rev 14646)
@@ -0,0 +1,13 @@
+<?xml version="1.0" ?>
+
+<web-app version="3.0"
+ xmlns="http://java.sun.com/xml/ns/javaee"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
+ http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
+
+ <listener>
+ <listener-class>org.jboss.seam.mock.MockSeamListener</listener-class>
+ </listener>
+
+</web-app>
12 years, 7 months
Seam SVN: r14645 - branches/community/Seam_2_3/jboss-seam-gen/dist.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-04-29 16:50:11 -0400 (Sun, 29 Apr 2012)
New Revision: 14645
Modified:
branches/community/Seam_2_3/jboss-seam-gen/dist/build.xml
Log:
JBSEAM-4918 added jboss-deployment-structure into generated project files
Modified: branches/community/Seam_2_3/jboss-seam-gen/dist/build.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-gen/dist/build.xml 2012-04-29 20:50:03 UTC (rev 14644)
+++ branches/community/Seam_2_3/jboss-seam-gen/dist/build.xml 2012-04-29 20:50:11 UTC (rev 14645)
@@ -899,7 +899,7 @@
<fileset dir="${templates.dir}/resources">
<include name="META-INF/application.xml"/>
<include name="META-INF/ejb-jar.xml"/>
- <include name="META-INF/jboss-app.xml"/>
+ <include name="META-INF/jboss-deployment-structure.xml"/>
<include name="META-INF/orm.xml"/>
<include name="META-INF/persistence-*.xml"/>
<exclude name="META-INF/persistence-*-war.xml"/>
@@ -936,7 +936,7 @@
<exclude name="WEB-INF/components*.xml"/>
<exclude name="META-INF/persistence*.xml"/>
<exclude name="META-INF/application.xml"/>
- <exclude name="META-INF/jboss-app.xml"/>
+ <include name="META-INF/jboss-deployment-structure.xml"/>
<exclude name="META-INF/ejb-jar.xml"/>
<exclude name="WEB-INF/jboss-web.xml"/>
<exclude name="*identity-management*"/>
12 years, 7 months
Seam SVN: r14644 - branches/community/Seam_2_3/jboss-seam-gen/dist.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-04-29 16:50:03 -0400 (Sun, 29 Apr 2012)
New Revision: 14644
Modified:
branches/community/Seam_2_3/jboss-seam-gen/dist/build.xml
Log:
JBSEAM-4915 don't include jboss-web.xml into new project
Modified: branches/community/Seam_2_3/jboss-seam-gen/dist/build.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-gen/dist/build.xml 2012-04-29 20:49:53 UTC (rev 14643)
+++ branches/community/Seam_2_3/jboss-seam-gen/dist/build.xml 2012-04-29 20:50:03 UTC (rev 14644)
@@ -859,7 +859,7 @@
<fileset dir="${templates.dir}/resources">
<include name="META-INF/orm.xml"/>
<include name="META-INF/persistence-*-war.xml"/>
- <include name="WEB-INF/jboss-web.xml"/>
+ <!-- <include name="WEB-INF/jboss-web.xml"/> -->
</fileset>
<filterset refid="project"/>
<filterset refid="jdbc"/>
12 years, 7 months
Seam SVN: r14643 - in branches/community/Seam_2_3/jboss-seam-gen/dist/resources: META-INF and 1 other directories.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-04-29 16:49:53 -0400 (Sun, 29 Apr 2012)
New Revision: 14643
Modified:
branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/application.xml
branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/persistence-dev-war.xml
branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/persistence-dev.xml
branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/persistence-prod-war.xml
branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/persistence-prod.xml
branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/persistence-test-war.xml
branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/persistence-test.xml
branches/community/Seam_2_3/jboss-seam-gen/dist/resources/WEB-INF/faces-config.xml
branches/community/Seam_2_3/jboss-seam-gen/dist/resources/WEB-INF/web.xml
branches/community/Seam_2_3/jboss-seam-gen/dist/resources/datasource-ds.xml
Log:
JBSEAM-4918 migrations for persistence.xml, datasource, web.xml and faces-config.xml
Modified: branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/application.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/application.xml 2012-04-29 20:49:37 UTC (rev 14642)
+++ branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/application.xml 2012-04-29 20:49:53 UTC (rev 14643)
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<application xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/application_5.xsd"
- version="5">
+ xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/application_6.xsd"
+ version="6">
<display-name>@projectName@</display-name>
Modified: branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/persistence-dev-war.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/persistence-dev-war.xml 2012-04-29 20:49:37 UTC (rev 14642)
+++ branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/persistence-dev-war.xml 2012-04-29 20:49:53 UTC (rev 14643)
@@ -2,8 +2,8 @@
<!-- Persistence deployment descriptor for dev profile -->
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
- version="1.0">
+ xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd"
+ version="2.0">
<persistence-unit name="@projectName@" transaction-type="JTA">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
Modified: branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/persistence-dev.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/persistence-dev.xml 2012-04-29 20:49:37 UTC (rev 14642)
+++ branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/persistence-dev.xml 2012-04-29 20:49:53 UTC (rev 14643)
@@ -2,8 +2,8 @@
<!-- Persistence deployment descriptor for dev profile -->
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
- version="1.0">
+ xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd"
+ version="2.0">
<persistence-unit name="@projectName@">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
Modified: branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/persistence-prod-war.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/persistence-prod-war.xml 2012-04-29 20:49:37 UTC (rev 14642)
+++ branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/persistence-prod-war.xml 2012-04-29 20:49:53 UTC (rev 14643)
@@ -2,8 +2,8 @@
<!-- Persistence deployment descriptor for prod profile -->
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
- version="1.0">
+ xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd"
+ version="2.0">
<persistence-unit name="@projectName@" transaction-type="JTA">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
Modified: branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/persistence-prod.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/persistence-prod.xml 2012-04-29 20:49:37 UTC (rev 14642)
+++ branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/persistence-prod.xml 2012-04-29 20:49:53 UTC (rev 14643)
@@ -2,8 +2,8 @@
<!-- Persistence deployment descriptor for prod profile -->
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
- version="1.0">
+ xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd"
+ version="2.0">
<persistence-unit name="@projectName@">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
Modified: branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/persistence-test-war.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/persistence-test-war.xml 2012-04-29 20:49:37 UTC (rev 14642)
+++ branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/persistence-test-war.xml 2012-04-29 20:49:53 UTC (rev 14643)
@@ -2,12 +2,12 @@
<!-- Persistence deployment descriptor for tests -->
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
- version="1.0">
+ xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd"
+ version="2.0">
<persistence-unit name="@projectName@" transaction-type="JTA">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
- <jta-data-source>java:/DefaultDS</jta-data-source>
+ <jta-data-source>java:jboss/datasources/ExampleDS</jta-data-source>
<properties>
<property name="hibernate.hbm2ddl.auto" value="create-drop"/>
<property name="hibernate.show_sql" value="true"/>
Modified: branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/persistence-test.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/persistence-test.xml 2012-04-29 20:49:37 UTC (rev 14642)
+++ branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/persistence-test.xml 2012-04-29 20:49:53 UTC (rev 14643)
@@ -2,12 +2,12 @@
<!-- Persistence deployment descriptor for tests -->
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
- version="1.0">
+ xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd"
+ version="2.0">
<persistence-unit name="@projectName@">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
- <jta-data-source>java:/DefaultDS</jta-data-source>
+ <jta-data-source>java:jboss/datasources/ExampleDS</jta-data-source>
<properties>
<property name="hibernate.hbm2ddl.auto" value="create-drop"/>
<property name="hibernate.show_sql" value="true"/>
Modified: branches/community/Seam_2_3/jboss-seam-gen/dist/resources/WEB-INF/faces-config.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-gen/dist/resources/WEB-INF/faces-config.xml 2012-04-29 20:49:37 UTC (rev 14642)
+++ branches/community/Seam_2_3/jboss-seam-gen/dist/resources/WEB-INF/faces-config.xml 2012-04-29 20:49:53 UTC (rev 14643)
@@ -1,8 +1,8 @@
<?xml version='1.0' encoding='UTF-8'?>
-<faces-config version="1.2"
+<faces-config version="2.0"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd">
+ xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_2_0.xsd">
<application>
<locale-config>
@@ -14,8 +14,7 @@
<supported-locale>it</supported-locale>
<supported-locale>tr</supported-locale>
<supported-locale>da</supported-locale>
- </locale-config>
- <view-handler>com.sun.facelets.FaceletViewHandler</view-handler>
+ </locale-config>
</application>
</faces-config>
Modified: branches/community/Seam_2_3/jboss-seam-gen/dist/resources/WEB-INF/web.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-gen/dist/resources/WEB-INF/web.xml 2012-04-29 20:49:37 UTC (rev 14642)
+++ branches/community/Seam_2_3/jboss-seam-gen/dist/resources/WEB-INF/web.xml 2012-04-29 20:49:53 UTC (rev 14643)
@@ -7,36 +7,30 @@
<!-- RichFaces -->
<context-param>
- <param-name>org.richfaces.SKIN</param-name>
+ <param-name>org.richfaces.skin</param-name>
<param-value>@skin@</param-value>
</context-param>
<!-- Suppress spurious stylesheets -->
<context-param>
- <param-name>org.richfaces.CONTROL_SKINNING</param-name>
+ <param-name>org.richfaces.enableControlSkinning</param-name>
<param-value>disable</param-value>
</context-param>
<context-param>
- <param-name>org.richfaces.CONTROL_SKINNING_CLASSES</param-name>
+ <param-name>org.richfaces.enableControlSkinningClasses</param-name>
<param-value>disable</param-value>
</context-param>
<!-- Change load strategy to DEFAULT to disable sending scripts/styles as packs -->
<context-param>
- <param-name>org.richfaces.LoadStyleStrategy</param-name>
- <param-value>ALL</param-value>
+ <param-name>org.richfaces.resourceOptimization.enabled</param-name>
+ <param-value>true</param-value>
</context-param>
- <context-param>
- <param-name>org.richfaces.LoadScriptStrategy</param-name>
- <param-value>ALL</param-value>
- </context-param>
-
<!-- Seam -->
-
<listener>
<listener-class>org.jboss.seam.servlet.SeamListener</listener-class>
</listener>
@@ -61,15 +55,13 @@
<url-pattern>/seam/resource/*</url-pattern>
</servlet-mapping>
- <!-- Facelets development mode (disable in production) -->
+<!-- Change to "Production" when you are ready to deploy -->
+ <context-param>
+ <param-name>javax.faces.PROJECT_STAGE</param-name>
+ <param-value>Development</param-value>
+ </context-param>
- <context-param>
- <param-name>facelets.DEVELOPMENT</param-name>
- <param-value>@debug@</param-value>
- </context-param>
-
<!-- JSF -->
-
<context-param>
<param-name>javax.faces.DEFAULT_SUFFIX</param-name>
<param-value>.xhtml</param-value>
Modified: branches/community/Seam_2_3/jboss-seam-gen/dist/resources/datasource-ds.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-gen/dist/resources/datasource-ds.xml 2012-04-29 20:49:37 UTC (rev 14642)
+++ branches/community/Seam_2_3/jboss-seam-gen/dist/resources/datasource-ds.xml 2012-04-29 20:49:53 UTC (rev 14643)
@@ -1,16 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE datasources
- PUBLIC "-//JBoss//DTD JBOSS JCA Config 1.5//EN"
- "http://www.jboss.org/j2ee/dtd/jboss-ds_1_5.dtd">
-<datasources>
-
- <local-tx-datasource>
- <jndi-name>@projectName@Datasource</jndi-name>
- <use-java-context>true</use-java-context>
- <connection-url>@jdbcUrl@</connection-url>
- <driver-class>@driverClass@</driver-class>
- <user-name>@username@</user-name>
- <password>@password@</password>
- </local-tx-datasource>
-
+<datasources xmlns="http://www.jboss.org/ironjacamar/schema">
+ <datasource
+ jndi-name=@projectName@Datasource
+ enabled="true"
+ use-java-context="true" pool-name="@projectName@Datasource_pool">
+ <connection-url>@jdbcUrl@</connection-url>
+ <driver>@database.type@</driver>
+ <security>
+ <user-name>@username@</user-name>
+ <password>@password@</password>
+ </security>
+ </datasource>
</datasources>
12 years, 7 months
Seam SVN: r14642 - branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-04-29 16:49:37 -0400 (Sun, 29 Apr 2012)
New Revision: 14642
Added:
branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/jboss-deployment-structure.xml
Log:
JBSEAM-4918 added first proposal for jboss-deployment-structure.xml
Added: branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/jboss-deployment-structure.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/jboss-deployment-structure.xml (rev 0)
+++ branches/community/Seam_2_3/jboss-seam-gen/dist/resources/META-INF/jboss-deployment-structure.xml 2012-04-29 20:49:37 UTC (rev 14642)
@@ -0,0 +1,11 @@
+<jboss-deployment-structure xmlns="urn:jboss:deployment-structure:1.0">
+ <deployment>
+ <dependencies>
+ <module name="org.hibernate" export="true"/>
+ <module name="javax.faces.api" export="true" />
+ <module name="com.sun.jsf-impl" export="true"/>
+ <module name="org.dom4j" export="true"/>
+ <module name="org.hibernate.validator" export="true"/>
+ </dependencies>
+ </deployment>
+</jboss-deployment-structure>
12 years, 7 months
Seam SVN: r14640 - branches/community/Seam_2_3.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-04-29 16:03:37 -0400 (Sun, 29 Apr 2012)
New Revision: 14640
Modified:
branches/community/Seam_2_3/.gitignore
Log:
fixed unintentionally ignored build directory
Modified: branches/community/Seam_2_3/.gitignore
===================================================================
--- branches/community/Seam_2_3/.gitignore 2012-04-29 20:03:29 UTC (rev 14639)
+++ branches/community/Seam_2_3/.gitignore 2012-04-29 20:03:37 UTC (rev 14640)
@@ -14,4 +14,3 @@
#eclipse output
bin
-build
12 years, 7 months
Seam SVN: r14639 - branches/community/Seam_2_3/examples-ee6/restbay/restbay-tests.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-04-29 16:03:29 -0400 (Sun, 29 Apr 2012)
New Revision: 14639
Modified:
branches/community/Seam_2_3/examples-ee6/restbay/restbay-tests/pom.xml
Log:
removed duplicated dependency
Modified: branches/community/Seam_2_3/examples-ee6/restbay/restbay-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/restbay/restbay-tests/pom.xml 2012-04-28 23:12:57 UTC (rev 14638)
+++ branches/community/Seam_2_3/examples-ee6/restbay/restbay-tests/pom.xml 2012-04-29 20:03:29 UTC (rev 14639)
@@ -50,11 +50,8 @@
<groupId>org.jboss.spec.javax.faces</groupId>
<artifactId>jboss-jsf-api_2.0_spec</artifactId>
</dependency>
- <dependency>
- <groupId>org.jboss.spec.javax.el</groupId>
- <artifactId>jboss-el-api_2.2_spec</artifactId>
- </dependency>
+
<dependency>
<groupId>org.jboss.arquillian.junit</groupId>
<artifactId>arquillian-junit-container</artifactId>
12 years, 7 months
Seam SVN: r14638 - branches/community/Seam_2_3/jboss-seam/src/main/java/org/jboss/seam/jsf.
by seam-commits@lists.jboss.org
Author: shane.bryzak(a)jboss.com
Date: 2012-04-28 19:12:57 -0400 (Sat, 28 Apr 2012)
New Revision: 14638
Modified:
branches/community/Seam_2_3/jboss-seam/src/main/java/org/jboss/seam/jsf/SeamViewHandler.java
Log:
JBSEAM-4930
Modified: branches/community/Seam_2_3/jboss-seam/src/main/java/org/jboss/seam/jsf/SeamViewHandler.java
===================================================================
--- branches/community/Seam_2_3/jboss-seam/src/main/java/org/jboss/seam/jsf/SeamViewHandler.java 2012-04-26 12:40:59 UTC (rev 14637)
+++ branches/community/Seam_2_3/jboss-seam/src/main/java/org/jboss/seam/jsf/SeamViewHandler.java 2012-04-28 23:12:57 UTC (rev 14638)
@@ -92,7 +92,10 @@
public UIViewRoot restoreView(FacesContext ctx, String viewId)
{
UIViewRoot viewRoot =viewHandler.restoreView(ctx, viewId);
- viewRoot.setViewId(viewHandler.deriveViewId(ctx,viewId));
+ if (viewRoot != null)
+ {
+ viewRoot.setViewId(viewHandler.deriveViewId(ctx,viewId));
+ }
return viewRoot;
}
12 years, 7 months
[forge/core] be2925: [maven-release-plugin] prepare for next developmen...
by GitHub
Branch: refs/heads/master
Home: https://github.com/forge/core
Commit: be2925ed39b60c44c68b714fe9ebd9cb5eaf12a8
https://github.com/forge/core/commit/be2925ed39b60c44c68b714fe9ebd9cb5eaf...
Author: Lincoln Baxter, III <lincolnbaxter(a)gmail.com>
Date: 2012-04-26 (Thu, 26 Apr 2012)
Changed paths:
M dev-plugins/pom.xml
M dist/pom.xml
M event-bus-api/pom.xml
M git-tools-tests/pom.xml
M git-tools/pom.xml
M javaee-api/pom.xml
M javaee-impl/pom.xml
M maven-api/pom.xml
M parser-java-api/pom.xml
M parser-java/pom.xml
M parser-xml/pom.xml
M plugin-loader/pom.xml
M pom.xml
M project-model-maven-tests/pom.xml
M project-model-maven/pom.xml
M scaffold-api/pom.xml
M scaffold-faces/pom.xml
M scaffold-plugins/pom.xml
M shell-api/pom.xml
M shell/pom.xml
M test-harness-web/pom.xml
M test-harness/pom.xml
Log Message:
-----------
[maven-release-plugin] prepare for next development iteration
12 years, 7 months