Seam SVN: r14627 - branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-tests/src/test/java/com/jboss/dvd/seam/test.
by seam-commits@lists.jboss.org
Author: maschmid
Date: 2012-04-23 04:12:36 -0400 (Mon, 23 Apr 2012)
New Revision: 14627
Modified:
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-tests/src/test/java/com/jboss/dvd/seam/test/ProductUnitTest.java
Log:
dvdstore example ignore ProductUnitTest::testRequiredAttributes, AS7 issue
Modified: branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-tests/src/test/java/com/jboss/dvd/seam/test/ProductUnitTest.java
===================================================================
--- branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-tests/src/test/java/com/jboss/dvd/seam/test/ProductUnitTest.java 2012-04-20 14:03:25 UTC (rev 14626)
+++ branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-tests/src/test/java/com/jboss/dvd/seam/test/ProductUnitTest.java 2012-04-23 08:12:36 UTC (rev 14627)
@@ -15,6 +15,7 @@
import org.jboss.shrinkwrap.api.spec.EnterpriseArchive;
import org.jboss.shrinkwrap.api.spec.WebArchive;
import org.junit.Assert;
+import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
@@ -40,6 +41,7 @@
return er;
}
+ @Ignore //AS7-4576
@Test
public void testRequiredAttributes()
throws Exception
12 years, 10 months
Seam SVN: r14626 - branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ejb/src/main/java/com/jboss/dvd/seam.
by seam-commits@lists.jboss.org
Author: maschmid
Date: 2012-04-20 10:03:25 -0400 (Fri, 20 Apr 2012)
New Revision: 14626
Modified:
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ejb/src/main/java/com/jboss/dvd/seam/Product.java
Log:
forgot to include this file in my previous commit, use actual bean validation annotations, as nullable column behavior isn't specified wrt bean validation.
Modified: branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ejb/src/main/java/com/jboss/dvd/seam/Product.java
===================================================================
--- branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ejb/src/main/java/com/jboss/dvd/seam/Product.java 2012-04-20 13:58:06 UTC (rev 14625)
+++ branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ejb/src/main/java/com/jboss/dvd/seam/Product.java 2012-04-20 14:03:25 UTC (rev 14626)
@@ -22,6 +22,7 @@
import javax.persistence.ManyToMany;
import javax.persistence.OneToOne;
import javax.persistence.Table;
+import javax.validation.constraints.NotNull;
import org.apache.solr.analysis.LowerCaseFilterFactory;
import org.apache.solr.analysis.NGramFilterFactory;
@@ -114,6 +115,7 @@
this.categories = categories;
}
+ @NotNull
@Column(name="TITLE",nullable=false,length=100)
@Fields({
@Field(index=Index.YES),
@@ -146,6 +148,7 @@
this.imageURL = imageURL;
}
+ @NotNull
@Column(name="PRICE",nullable=false,precision=12,scale=2)
public BigDecimal getPrice() {
return price;
@@ -153,4 +156,5 @@
public void setPrice(BigDecimal price) {
this.price=price;
}
+
}
12 years, 10 months
Seam SVN: r14625 - in branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-tests: src/test/java/com/jboss/dvd/seam/test and 1 other directory.
by seam-commits@lists.jboss.org
Author: maschmid
Date: 2012-04-20 09:58:06 -0400 (Fri, 20 Apr 2012)
New Revision: 14625
Modified:
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-tests/src/test/java/com/jboss/dvd/seam/test/ProductUnitTest.java
Log:
update the dvdstore ProductUnitTest
Modified: branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-tests/pom.xml 2012-04-20 13:12:16 UTC (rev 14624)
+++ branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-tests/pom.xml 2012-04-20 13:58:06 UTC (rev 14625)
@@ -77,6 +77,12 @@
<artifactId>jboss-el-api_2.2_spec</artifactId>
</dependency>
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-validator</artifactId>
+ <scope>provided</scope>
+ </dependency>
+
</dependencies>
<build>
Modified: branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-tests/src/test/java/com/jboss/dvd/seam/test/ProductUnitTest.java
===================================================================
--- branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-tests/src/test/java/com/jboss/dvd/seam/test/ProductUnitTest.java 2012-04-20 13:12:16 UTC (rev 14624)
+++ branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-tests/src/test/java/com/jboss/dvd/seam/test/ProductUnitTest.java 2012-04-20 13:58:06 UTC (rev 14625)
@@ -3,7 +3,7 @@
import java.io.File;
import javax.persistence.EntityManager;
-import javax.persistence.PersistenceException;
+import javax.validation.ConstraintViolationException;
import org.jboss.arquillian.container.test.api.Deployment;
import org.jboss.arquillian.container.test.api.OverProtocol;
@@ -57,7 +57,7 @@
try {
em.persist(p);
Assert.fail("empty product persisted");
- } catch (PersistenceException e) {
+ } catch (ConstraintViolationException e) {
// good
}
}
12 years, 10 months
Seam SVN: r14624 - in branches/community/Seam_2_3/examples-ee6/numberguess: numberguess-ejb and 2 other directories.
by seam-commits@lists.jboss.org
Author: dhinojosa
Date: 2012-04-20 09:12:16 -0400 (Fri, 20 Apr 2012)
New Revision: 14624
Modified:
branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-web/pom.xml
Log:
changing around settings in poms to get arquillian to run
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-20 11:07:15 UTC (rev 14623)
+++ branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ear/pom.xml 2012-04-20 13:12:16 UTC (rev 14624)
@@ -83,87 +83,87 @@
</modules>
</configuration>
</plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>jboss-maven-plugin</artifactId>
- <configuration>
- <jbossHome>${jboss.home}</jbossHome>
- <serverName>${jboss.domain}</serverName>
- <fileNames>
- <param>${project.build.directory}/${project.build.finalName}.${project.packaging}</param>
- </fileNames>
- </configuration>
- </plugin>
+ <!--<plugin>-->
+ <!--<groupId>org.codehaus.mojo</groupId>-->
+ <!--<artifactId>jboss-maven-plugin</artifactId>-->
+ <!--<configuration>-->
+ <!--<jbossHome>${jboss.home}</jbossHome>-->
+ <!--<serverName>${jboss.domain}</serverName>-->
+ <!--<fileNames>-->
+ <!--<param>${project.build.directory}/${project.build.finalName}.${project.packaging}</param>-->
+ <!--</fileNames>-->
+ <!--</configuration>-->
+ <!--</plugin>-->
</plugins>
</build>
- <profiles>
- <profile>
- <id>exploded</id>
- <properties>
- <example.name>numberguess</example.name>
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-dependency-plugin</artifactId>
- <executions>
- <execution>
- <id>unpack</id>
- <phase>package</phase>
- <goals>
- <goal>unpack</goal>
- </goals>
- <configuration>
- <artifactItems>
- <artifactItem>
- <groupId>org.jboss.seam.examples</groupId>
- <artifactId>numberguess-ear</artifactId>
- <type>ear</type>
- <overWrite>true</overWrite>
- <outputDirectory>
- ${project.build.directory}/${project.build.finalName}-exploded/${project.build.finalName}.ear
- </outputDirectory>
- </artifactItem>
- <artifactItem>
- <groupId>org.jboss.seam.examples</groupId>
- <artifactId>numberguess-web</artifactId>
- <type>war</type>
- <overWrite>true</overWrite>
- <outputDirectory>
- ${project.build.directory}/${project.build.finalName}-exploded/${project.build.finalName}.ear/${example.name}-web.war
- </outputDirectory>
- </artifactItem>
- <artifactItem>
- <groupId>org.jboss.seam.examples</groupId>
- <artifactId>numberguess-ejb</artifactId>
- <type>jar</type>
- <overWrite>true</overWrite>
- <outputDirectory>
- ${project.build.directory}/${project.build.finalName}-exploded/${project.build.finalName}.ear/${example.name}-ejb.jar
- </outputDirectory>
- </artifactItem>
- </artifactItems>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>jboss-maven-plugin</artifactId>
- <configuration>
- <jbossHome>${jboss.home}</jbossHome>
- <serverName>${jboss.domain}</serverName>
- <fileNames>
- <directory>
- ${project.build.directory}/${project.build.finalName}-exploded/${project.build.finalName}.ear
- </directory>
- </fileNames>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
+ <!--<profiles>-->
+ <!--<profile>-->
+ <!--<id>exploded</id>-->
+ <!--<properties>-->
+ <!--<example.name>numberguess</example.name>-->
+ <!--</properties>-->
+ <!--<build>-->
+ <!--<plugins>-->
+ <!--<plugin>-->
+ <!--<groupId>org.apache.maven.plugins</groupId>-->
+ <!--<artifactId>maven-dependency-plugin</artifactId>-->
+ <!--<executions>-->
+ <!--<execution>-->
+ <!--<id>unpack</id>-->
+ <!--<phase>package</phase>-->
+ <!--<goals>-->
+ <!--<goal>unpack</goal>-->
+ <!--</goals>-->
+ <!--<configuration>-->
+ <!--<artifactItems>-->
+ <!--<artifactItem>-->
+ <!--<groupId>org.jboss.seam.examples</groupId>-->
+ <!--<artifactId>numberguess-ear</artifactId>-->
+ <!--<type>ear</type>-->
+ <!--<overWrite>true</overWrite>-->
+ <!--<outputDirectory>-->
+ <!--${project.build.directory}/${project.build.finalName}-exploded/${project.build.finalName}.ear-->
+ <!--</outputDirectory>-->
+ <!--</artifactItem>-->
+ <!--<artifactItem>-->
+ <!--<groupId>org.jboss.seam.examples</groupId>-->
+ <!--<artifactId>numberguess-web</artifactId>-->
+ <!--<type>war</type>-->
+ <!--<overWrite>true</overWrite>-->
+ <!--<outputDirectory>-->
+ <!--${project.build.directory}/${project.build.finalName}-exploded/${project.build.finalName}.ear/${example.name}-web.war-->
+ <!--</outputDirectory>-->
+ <!--</artifactItem>-->
+ <!--<artifactItem>-->
+ <!--<groupId>org.jboss.seam.examples</groupId>-->
+ <!--<artifactId>numberguess-ejb</artifactId>-->
+ <!--<type>jar</type>-->
+ <!--<overWrite>true</overWrite>-->
+ <!--<outputDirectory>-->
+ <!--${project.build.directory}/${project.build.finalName}-exploded/${project.build.finalName}.ear/${example.name}-ejb.jar-->
+ <!--</outputDirectory>-->
+ <!--</artifactItem>-->
+ <!--</artifactItems>-->
+ <!--</configuration>-->
+ <!--</execution>-->
+ <!--</executions>-->
+ <!--</plugin>-->
+ <!--<plugin>-->
+ <!--<groupId>org.codehaus.mojo</groupId>-->
+ <!--<artifactId>jboss-maven-plugin</artifactId>-->
+ <!--<configuration>-->
+ <!--<jbossHome>${jboss.home}</jbossHome>-->
+ <!--<serverName>${jboss.domain}</serverName>-->
+ <!--<fileNames>-->
+ <!--<directory>-->
+ <!--${project.build.directory}/${project.build.finalName}-exploded/${project.build.finalName}.ear-->
+ <!--</directory>-->
+ <!--</fileNames>-->
+ <!--</configuration>-->
+ <!--</plugin>-->
+ <!--</plugins>-->
+ <!--</build>-->
+ <!--</profile>-->
+ <!--</profiles>-->
</project>
Modified: branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ejb/pom.xml 2012-04-20 11:07:15 UTC (rev 14623)
+++ branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ejb/pom.xml 2012-04-20 13:12:16 UTC (rev 14624)
@@ -48,7 +48,7 @@
<dependency>
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam</artifactId>
- <version>${project.version}</version>
+ <type>ejb</type>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
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-20 11:07:15 UTC (rev 14623)
+++ branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-tests/pom.xml 2012-04-20 13:12:16 UTC (rev 14624)
@@ -145,102 +145,102 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>false</skipTests>
- <argLine>-Dsun.lang.ClassLoader.allowArraySyntax=true -Xms512m -Xmx512m</argLine>
- <additionalClasspathElements>
- <additionalClasspathElement>${basedir}/../numberguess-web/src/main/webapp
- </additionalClasspathElement>
- <additionalClasspathElement>${project.build.directory}/dependency/bootstrap
- </additionalClasspathElement>
- </additionalClasspathElements>
+ <!--<argLine>-Dsun.lang.ClassLoader.allowArraySyntax=true -Xms512m -Xmx512m</argLine>-->
+ <!--<additionalClasspathElements>-->
+ <!--<additionalClasspathElement>${basedir}/../numberguess-web/src/main/webapp-->
+ <!--</additionalClasspathElement>-->
+ <!--<additionalClasspathElement>${project.build.directory}/dependency/bootstrap-->
+ <!--</additionalClasspathElement>-->
+ <!--</additionalClasspathElements>-->
<!--<suiteXmlFiles>-->
<!--<suiteXmlFile>src/test/resources-integration/testng.xml</suiteXmlFile>-->
<!--</suiteXmlFiles>-->
</configuration>
</plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-dependency-plugin</artifactId>
- <executions>
- <execution>
- <id>copy-seam-bootstrap</id>
- <phase>process-resources</phase>
- <goals>
- <goal>unpack</goal>
- </goals>
- <configuration>
- <includes>bootstrap/**</includes>
- <artifactItems>
- <artifactItem>
- <groupId>org.jboss.seam</groupId>
- <artifactId>jboss-embedded-bootstrap</artifactId>
- <version>${project.version}</version>
- <type>jar</type>
- <overWrite>false</overWrite>
- </artifactItem>
- </artifactItems>
- </configuration>
- </execution>
- </executions>
- </plugin>
+ <!--<plugin>-->
+ <!--<groupId>org.apache.maven.plugins</groupId>-->
+ <!--<artifactId>maven-dependency-plugin</artifactId>-->
+ <!--<executions>-->
+ <!--<execution>-->
+ <!--<id>copy-seam-bootstrap</id>-->
+ <!--<phase>process-resources</phase>-->
+ <!--<goals>-->
+ <!--<goal>unpack</goal>-->
+ <!--</goals>-->
+ <!--<configuration>-->
+ <!--<includes>bootstrap/**</includes>-->
+ <!--<artifactItems>-->
+ <!--<artifactItem>-->
+ <!--<groupId>org.jboss.seam</groupId>-->
+ <!--<artifactId>jboss-embedded-bootstrap</artifactId>-->
+ <!--<version>${project.version}</version>-->
+ <!--<type>jar</type>-->
+ <!--<overWrite>false</overWrite>-->
+ <!--</artifactItem>-->
+ <!--</artifactItems>-->
+ <!--</configuration>-->
+ <!--</execution>-->
+ <!--</executions>-->
+ <!--</plugin>-->
</plugins>
</build>
- <profiles>
- <profile>
- <id>ftest-jbossas</id>
- <properties>
- <example.context.path>seam-numberguess</example.context.path>
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>jboss-maven-plugin</artifactId>
- <configuration>
- <jbossHome>${jboss.home}</jbossHome>
- <serverName>${jboss.domain}</serverName>
- <fileNames>
- <param>${basedir}/../numberguess-ear/target/seam-numberguess.ear</param>
- </fileNames>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>selenium-maven-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>failsafe-maven-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-antrun-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
- <id>ftest-tomcat</id>
- <properties>
- <example.context.path>jboss-seam-numberguess</example.context.path>
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>selenium-maven-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>failsafe-maven-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-antrun-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
+ <!--<profiles>-->
+ <!--<profile>-->
+ <!--<id>ftest-jbossas</id>-->
+ <!--<properties>-->
+ <!--<example.context.path>seam-numberguess</example.context.path>-->
+ <!--</properties>-->
+ <!--<build>-->
+ <!--<plugins>-->
+ <!--<plugin>-->
+ <!--<groupId>org.codehaus.mojo</groupId>-->
+ <!--<artifactId>jboss-maven-plugin</artifactId>-->
+ <!--<configuration>-->
+ <!--<jbossHome>${jboss.home}</jbossHome>-->
+ <!--<serverName>${jboss.domain}</serverName>-->
+ <!--<fileNames>-->
+ <!--<param>${basedir}/../numberguess-ear/target/seam-numberguess.ear</param>-->
+ <!--</fileNames>-->
+ <!--</configuration>-->
+ <!--</plugin>-->
+ <!--<plugin>-->
+ <!--<groupId>org.codehaus.mojo</groupId>-->
+ <!--<artifactId>selenium-maven-plugin</artifactId>-->
+ <!--</plugin>-->
+ <!--<plugin>-->
+ <!--<groupId>org.codehaus.mojo</groupId>-->
+ <!--<artifactId>failsafe-maven-plugin</artifactId>-->
+ <!--</plugin>-->
+ <!--<plugin>-->
+ <!--<groupId>org.apache.maven.plugins</groupId>-->
+ <!--<artifactId>maven-antrun-plugin</artifactId>-->
+ <!--</plugin>-->
+ <!--</plugins>-->
+ <!--</build>-->
+ <!--</profile>-->
+ <!--<profile>-->
+ <!--<id>ftest-tomcat</id>-->
+ <!--<properties>-->
+ <!--<example.context.path>jboss-seam-numberguess</example.context.path>-->
+ <!--</properties>-->
+ <!--<build>-->
+ <!--<plugins>-->
+ <!--<plugin>-->
+ <!--<groupId>org.codehaus.mojo</groupId>-->
+ <!--<artifactId>selenium-maven-plugin</artifactId>-->
+ <!--</plugin>-->
+ <!--<plugin>-->
+ <!--<groupId>org.codehaus.mojo</groupId>-->
+ <!--<artifactId>failsafe-maven-plugin</artifactId>-->
+ <!--</plugin>-->
+ <!--<plugin>-->
+ <!--<groupId>org.apache.maven.plugins</groupId>-->
+ <!--<artifactId>maven-antrun-plugin</artifactId>-->
+ <!--</plugin>-->
+ <!--</plugins>-->
+ <!--</build>-->
+ <!--</profile>-->
+ <!--</profiles>-->
</project>
Modified: branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-web/pom.xml 2012-04-20 11:07:15 UTC (rev 14623)
+++ branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-web/pom.xml 2012-04-20 13:12:16 UTC (rev 14624)
@@ -20,13 +20,13 @@
<type>ejb</type>
<scope>provided</scope>
</dependency>
+ <!--<dependency>-->
+ <!--<groupId>org.jboss.seam</groupId>-->
+ <!--<artifactId>jboss-seam</artifactId>-->
+ <!--<type>ejb</type>-->
+ <!--</dependency>-->
<dependency>
<groupId>org.jboss.seam</groupId>
- <artifactId>jboss-seam</artifactId>
- <type>ejb</type>
- </dependency>
- <dependency>
- <groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam-ui</artifactId>
<exclusions>
<exclusion>
12 years, 10 months
Seam SVN: r14623 - branches/community/Seam_2_3/examples-ee6/blog/blog-ejb.
by seam-commits@lists.jboss.org
Author: maschmid
Date: 2012-04-20 07:07:15 -0400 (Fri, 20 Apr 2012)
New Revision: 14623
Modified:
branches/community/Seam_2_3/examples-ee6/blog/blog-ejb/pom.xml
Log:
blog example, add infinispan dependency, remove ehcache
Modified: branches/community/Seam_2_3/examples-ee6/blog/blog-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/blog/blog-ejb/pom.xml 2012-04-20 09:40:52 UTC (rev 14622)
+++ branches/community/Seam_2_3/examples-ee6/blog/blog-ejb/pom.xml 2012-04-20 11:07:15 UTC (rev 14623)
@@ -84,6 +84,15 @@
</dependency>
<dependency>
+ <groupId>org.infinispan</groupId>
+ <artifactId>infinispan-core</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.infinispan</groupId>
+ <artifactId>infinispan-tree</artifactId>
+ </dependency>
+
+ <dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<scope>provided</scope>
@@ -94,10 +103,6 @@
<scope>provided</scope>
</dependency>
- <dependency>
- <groupId>net.sf.ehcache</groupId>
- <artifactId>ehcache</artifactId>
- </dependency>
</dependencies>
<profiles>
<profile>
12 years, 10 months
Seam SVN: r14622 - branches/community/Seam_2_3/examples-ee6.
by seam-commits@lists.jboss.org
Author: maschmid
Date: 2012-04-20 05:40:52 -0400 (Fri, 20 Apr 2012)
New Revision: 14622
Modified:
branches/community/Seam_2_3/examples-ee6/pom.xml
Log:
enable metawidget examples
Modified: branches/community/Seam_2_3/examples-ee6/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/pom.xml 2012-04-20 09:30:10 UTC (rev 14621)
+++ branches/community/Seam_2_3/examples-ee6/pom.xml 2012-04-20 09:40:52 UTC (rev 14622)
@@ -29,6 +29,8 @@
<module>jpa</module>
<module>mail</module>
<module>messages</module>
+ <module>metawidget/booking</module>
+ <module>metawidget/groovybooking</module>
<module>nestedbooking</module>
<module>openid</module>
<module>quartz</module>
12 years, 10 months
Seam SVN: r14621 - branches/community/Seam_2_3/examples-ee6.
by seam-commits@lists.jboss.org
Author: maschmid
Date: 2012-04-20 05:30:10 -0400 (Fri, 20 Apr 2012)
New Revision: 14621
Modified:
branches/community/Seam_2_3/examples-ee6/pom.xml
Log:
enable icefaces example
Modified: branches/community/Seam_2_3/examples-ee6/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/pom.xml 2012-04-20 09:29:30 UTC (rev 14620)
+++ branches/community/Seam_2_3/examples-ee6/pom.xml 2012-04-20 09:30:10 UTC (rev 14621)
@@ -24,6 +24,7 @@
<module>groovybooking</module>
<module>guice</module>
<module>hibernate</module>
+ <module>icefaces</module>
<module>itext</module>
<module>jpa</module>
<module>mail</module>
12 years, 10 months
Seam SVN: r14620 - in branches/community/Seam_2_3/examples-ee6/icefaces: icefaces-ear and 3 other directories.
by seam-commits@lists.jboss.org
Author: maschmid
Date: 2012-04-20 05:29:30 -0400 (Fri, 20 Apr 2012)
New Revision: 14620
Modified:
branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-web/pom.xml
branches/community/Seam_2_3/examples-ee6/icefaces/pom.xml
Log:
icefaces example cleanup
Modified: branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-ear/pom.xml 2012-04-20 09:12:07 UTC (rev 14619)
+++ branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-ear/pom.xml 2012-04-20 09:29:30 UTC (rev 14620)
@@ -8,33 +8,24 @@
<relativePath>../pom.xml</relativePath>
</parent>
- <groupId>org.jboss.seam.examples-ee6</groupId>
+ <groupId>org.jboss.seam.examples-ee6.icefaces</groupId>
<artifactId>icefaces-ear</artifactId>
<packaging>ear</packaging>
<name>Icefaces EAR Module (EE6)</name>
- <properties>
- <jboss.home>${env.JBOSS_HOME}</jboss.home>
- <jboss.domain>default</jboss.domain>
- </properties>
-
<dependencies>
<dependency>
- <groupId>org.jboss.seam.examples-ee6</groupId>
+ <groupId>org.jboss.seam.examples-ee6.icefaces</groupId>
<artifactId>icefaces-web</artifactId>
<version>${project.version}</version>
<type>war</type>
</dependency>
<dependency>
- <groupId>org.jboss.seam.examples-ee6</groupId>
+ <groupId>org.jboss.seam.examples-ee6.icefaces</groupId>
<artifactId>icefaces-ejb</artifactId>
<version>${project.version}</version>
<type>ejb</type>
</dependency>
- <dependency>
- <groupId>org.jboss.seam</groupId>
- <artifactId>jboss-seam</artifactId>
- </dependency>
</dependencies>
<build>
@@ -43,7 +34,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ear-plugin</artifactId>
- <version>2.3.2</version>
<configuration>
<defaultLibBundleDir>lib</defaultLibBundleDir>
<!-- Exclude eclipse generated application.xml and manually modified jboss-app.xml during mvn build -->
@@ -53,13 +43,13 @@
<filtering>true</filtering>
<modules>
<webModule>
- <groupId>org.jboss.seam.examples-ee6</groupId>
+ <groupId>org.jboss.seam.examples-ee6.icefaces</groupId>
<artifactId>icefaces-web</artifactId>
<contextRoot>/seam-icefaces</contextRoot>
<bundleFileName>icefaces-web.war</bundleFileName>
</webModule>
<ejbModule>
- <groupId>org.jboss.seam.examples-ee6</groupId>
+ <groupId>org.jboss.seam.examples-ee6.icefaces</groupId>
<artifactId>icefaces-ejb</artifactId>
<bundleFileName>icefaces-ejb.jar</bundleFileName>
</ejbModule>
@@ -74,63 +64,4 @@
</plugins>
</build>
- <profiles>
- <profile>
- <id>exploded</id>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-dependency-plugin</artifactId>
- <executions>
- <execution>
- <id>unpack</id>
- <phase>package</phase>
- <goals>
- <goal>unpack</goal>
- </goals>
- <configuration>
- <artifactItems>
- <artifactItem>
- <groupId>org.jboss.seam.examples-ee6</groupId>
- <artifactId>icefaces-ear</artifactId>
- <type>ear</type>
- <overWrite>true</overWrite>
- <outputDirectory>${project.build.directory}/${project.build.finalName}-exploded/${project.build.finalName}.ear</outputDirectory>
- </artifactItem>
- <artifactItem>
- <groupId>org.jboss.seam.examples-ee6</groupId>
- <artifactId>icefaces-web</artifactId>
- <type>war</type>
- <overWrite>true</overWrite>
- <outputDirectory>${project.build.directory}/${project.build.finalName}-exploded/${project.build.finalName}.ear/${example.name}-web.war</outputDirectory>
- </artifactItem>
- <artifactItem>
- <groupId>org.jboss.seam.examples-ee6</groupId>
- <artifactId>icefaces-ejb</artifactId>
- <type>jar</type>
- <overWrite>true</overWrite>
- <outputDirectory>${project.build.directory}/${project.build.finalName}-exploded/${project.build.finalName}.ear/${example.name}-ejb.jar</outputDirectory>
- </artifactItem>
- </artifactItems>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>jboss-maven-plugin</artifactId>
- <configuration>
- <jbossHome>${jboss.home}</jbossHome>
- <serverName>${jboss.domain}</serverName>
- <fileNames>
- <param>${basedir}/src/main/resources/seam-icefaces-ds.xml</param>
- <directory>${project.build.directory}/${project.build.finalName}-exploded/${project.build.finalName}.ear</directory>
- </fileNames>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
</project>
Modified: branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-ejb/pom.xml 2012-04-20 09:12:07 UTC (rev 14619)
+++ branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-ejb/pom.xml 2012-04-20 09:29:30 UTC (rev 14620)
@@ -8,7 +8,7 @@
<relativePath>../pom.xml</relativePath>
</parent>
- <groupId>org.jboss.seam.examples-ee6</groupId>
+ <groupId>org.jboss.seam.examples-ee6.icefaces</groupId>
<artifactId>icefaces-ejb</artifactId>
<packaging>ejb</packaging>
<name>Icefaces EJB Module (EE6)</name>
@@ -18,7 +18,6 @@
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam</artifactId>
<type>ejb</type>
- <scope>provided</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
Modified: branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-tests/pom.xml 2012-04-20 09:12:07 UTC (rev 14619)
+++ branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-tests/pom.xml 2012-04-20 09:29:30 UTC (rev 14620)
@@ -8,13 +8,13 @@
<relativePath>../pom.xml</relativePath>
</parent>
- <groupId>org.jboss.seam.examples-ee6</groupId>
+ <groupId>org.jboss.seam.examples-ee6.icefaces</groupId>
<artifactId>icefaces-tests</artifactId>
<name>Icefaces Integration Tests Module (EE6)</name>
<dependencies>
<dependency>
- <groupId>org.jboss.seam.examples-ee6</groupId>
+ <groupId>org.jboss.seam.examples-ee6.icefaces</groupId>
<artifactId>icefaces-ejb</artifactId>
<version>${project.version}</version>
<type>ejb</type>
@@ -58,11 +58,6 @@
<groupId>org.seleniumhq.selenium.client-drivers</groupId>
<artifactId>selenium-java-client-driver</artifactId>
</dependency>
- <!--<dependency>-->
- <!--<groupId>org.jboss.seam</groupId>-->
- <!--<artifactId>functional-tests</artifactId>-->
- <!--<scope>test</scope>-->
- <!--</dependency>-->
<dependency>
<groupId>junit</groupId>
@@ -213,27 +208,5 @@
</plugins>
</build>
</profile>
- <profile>
- <id>ftest-tomcat</id>
- <properties>
- <example.context.path>jboss-seam-booking</example.context.path>
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>selenium-maven-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>failsafe-maven-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-antrun-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </profile>
</profiles>
</project>
Modified: branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-web/pom.xml 2012-04-20 09:12:07 UTC (rev 14619)
+++ branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-web/pom.xml 2012-04-20 09:29:30 UTC (rev 14620)
@@ -9,10 +9,10 @@
<relativePath>../pom.xml</relativePath>
</parent>
- <groupId>org.jboss.seam.examples-ee6</groupId>
+ <groupId>org.jboss.seam.examples-ee6.icefaces</groupId>
<artifactId>icefaces-web</artifactId>
<packaging>war</packaging>
- <name>Icefaces Web Module</name>
+ <name>Icefaces Web Module (EE6)</name>
<properties>
<!-- filtering property for components.xml -->
@@ -29,18 +29,12 @@
<dependencies>
<dependency>
- <groupId>org.jboss.seam.examples-ee6</groupId>
+ <groupId>org.jboss.seam.examples-ee6.icefaces</groupId>
<artifactId>icefaces-ejb</artifactId>
<version>${project.version}</version>
<type>ejb</type>
<scope>provided</scope>
</dependency>
- <!--<dependency>-->
- <!--<groupId>org.jboss.seam</groupId>-->
- <!--<artifactId>jboss-seam</artifactId>-->
- <!--<type>ejb</type>-->
- <!--<scope>provided</scope>-->
- <!--</dependency>-->
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
@@ -97,95 +91,4 @@
</plugins>
</build>
- <profiles>
- <profile>
- <id>tomcat</id>
- <properties>
- <!-- filtering property for components.xml -->
- <jndiPattern>#{ejbName}/local</jndiPattern>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.jboss.seam.examples</groupId>
- <artifactId>icefaces-ejb</artifactId>
- <type>ejb</type>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.jboss.seam</groupId>
- <artifactId>jboss-seam</artifactId>
- <type>ejb</type>
- <scope>compile</scope>
- <exclusions>
- <exclusion>
- <groupId>com.thoughtworks.xstream</groupId>
- <artifactId>xstream</artifactId>
- </exclusion>
- <exclusion>
- <groupId>xpp3</groupId>
- <artifactId>xpp3_min</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jstl</artifactId>
- </dependency>
- <dependency>
- <groupId>commons-beanutils</groupId>
- <artifactId>commons-beanutils</artifactId>
- <exclusions>
- <exclusion>
- <groupId>commons-collections</groupId>
- <artifactId>commons-collections</artifactId>
- </exclusion>
- <exclusion>
- <groupId>commons-logging</groupId>
- <artifactId>commons-logging</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>commons-digester</groupId>
- <artifactId>commons-digester</artifactId>
- </dependency>
- <dependency>
- <groupId>com.lowagie</groupId>
- <artifactId>icefaces-rtf</artifactId>
- </dependency>
- <dependency>
- <groupId>com.lowagie</groupId>
- <artifactId>icefaces</artifactId>
- </dependency>
- <dependency>
- <groupId>jfree</groupId>
- <artifactId>jfreechart</artifactId>
- </dependency>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-api</artifactId>
- <exclusions>
- <exclusion>
- <groupId>commons-collections</groupId>
- <artifactId>commons-collections</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- </dependencies>
- <build>
- <finalName>jboss-seam-icefaces</finalName>
- </build>
- </profile>
- </profiles>
-
</project>
Modified: branches/community/Seam_2_3/examples-ee6/icefaces/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/icefaces/pom.xml 2012-04-20 09:12:07 UTC (rev 14619)
+++ branches/community/Seam_2_3/examples-ee6/icefaces/pom.xml 2012-04-20 09:29:30 UTC (rev 14620)
@@ -26,19 +26,19 @@
<dependencyManagement>
<dependencies>
<dependency>
- <groupId>org.jboss.seam.examples-ee6</groupId>
+ <groupId>org.jboss.seam.examples-ee6.icefaces</groupId>
<artifactId>icefaces-ejb</artifactId>
<version>${project.version}</version>
<type>ejb</type>
</dependency>
<dependency>
- <groupId>org.jboss.seam.examples-ee6</groupId>
+ <groupId>org.jboss.seam.examples-ee6.icefaces</groupId>
<artifactId>icefaces-web</artifactId>
<version>${project.version}</version>
<type>war</type>
</dependency>
<dependency>
- <groupId>org.jboss.seam.examples-ee6</groupId>
+ <groupId>org.jboss.seam.examples-ee6.icefaces</groupId>
<artifactId>icefaces-ear</artifactId>
<version>${project.version}</version>
</dependency>
12 years, 10 months
Seam SVN: r14619 - branches/community/Seam_2_3/examples-ee6.
by seam-commits@lists.jboss.org
Author: maschmid
Date: 2012-04-20 05:12:07 -0400 (Fri, 20 Apr 2012)
New Revision: 14619
Modified:
branches/community/Seam_2_3/examples-ee6/pom.xml
Log:
enable itext example
Modified: branches/community/Seam_2_3/examples-ee6/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/pom.xml 2012-04-20 09:04:53 UTC (rev 14618)
+++ branches/community/Seam_2_3/examples-ee6/pom.xml 2012-04-20 09:12:07 UTC (rev 14619)
@@ -24,6 +24,7 @@
<module>groovybooking</module>
<module>guice</module>
<module>hibernate</module>
+ <module>itext</module>
<module>jpa</module>
<module>mail</module>
<module>messages</module>
12 years, 10 months