Seam SVN: r14251 - branches/community/Seam_2_3/jboss-seam-parent.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2011-12-15 17:23:53 -0500 (Thu, 15 Dec 2011)
New Revision: 14251
Modified:
branches/community/Seam_2_3/jboss-seam-parent/pom.xml
Log:
removed eclipse compiler
Modified: branches/community/Seam_2_3/jboss-seam-parent/pom.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-parent/pom.xml 2011-12-15 22:23:46 UTC (rev 14250)
+++ branches/community/Seam_2_3/jboss-seam-parent/pom.xml 2011-12-15 22:23:53 UTC (rev 14251)
@@ -1605,14 +1605,14 @@
<target>${java.compiler.version}</target>
<!-- javac doesn't compile all package-info.java,
therefore use eclipse compiler -->
- <compilerId>eclipse</compilerId>
+<!-- <compilerId>eclipse</compilerId> -->
</configuration>
<dependencies>
- <dependency>
- <groupId>org.codehaus.plexus</groupId>
- <artifactId>plexus-compiler-eclipse</artifactId>
- <version>1.8.2</version>
- </dependency>
+<!-- <dependency> -->
+<!-- <groupId>org.codehaus.plexus</groupId> -->
+<!-- <artifactId>plexus-compiler-eclipse</artifactId> -->
+<!-- <version>1.8.2</version> -->
+<!-- </dependency> -->
</dependencies>
</plugin>
12 years, 11 months
Seam SVN: r14250 - branches/community/Seam_2_3/examples/dvdstore/dvdstore-ear/src/main/application.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2011-12-15 17:23:46 -0500 (Thu, 15 Dec 2011)
New Revision: 14250
Modified:
branches/community/Seam_2_3/examples/dvdstore/dvdstore-ear/src/main/application/hibernate.cfg.xml
Log:
rolled back changes in hibernate.cfg.xml for AS5
Modified: branches/community/Seam_2_3/examples/dvdstore/dvdstore-ear/src/main/application/hibernate.cfg.xml
===================================================================
--- branches/community/Seam_2_3/examples/dvdstore/dvdstore-ear/src/main/application/hibernate.cfg.xml 2011-12-15 22:23:22 UTC (rev 14249)
+++ branches/community/Seam_2_3/examples/dvdstore/dvdstore-ear/src/main/application/hibernate.cfg.xml 2011-12-15 22:23:46 UTC (rev 14250)
@@ -10,10 +10,8 @@
<property name="show_sql">false</property>
<property name="connection.datasource">java:/dvdstoreDatasource</property>
<property name="transaction.factory_class">org.hibernate.transaction.JTATransactionFactory</property>
- <property name="hibernate.cache.use_query_cache">false</property>
- <property name="hibernate.cache.use_second_level_cache" >false</property>
-<!-- <property name="transaction.manager_lookup_class">org.hibernate.transaction.JBossTransactionManagerLookup</property> -->
-<!-- <property name="cache.provider_class">org.hibernate.cache.HashtableCacheProvider</property> -->
+ <property name="transaction.manager_lookup_class">org.hibernate.transaction.JBossTransactionManagerLookup</property>
+ <property name="cache.provider_class">org.hibernate.cache.HashtableCacheProvider</property>
<property name="hbm2ddl.auto">create-drop</property>
<!--property name="transaction.flush_before_completion">true</property-->
12 years, 11 months
Seam SVN: r14247 - branches/community/Seam_2_3/jboss-seam-parent.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2011-12-15 17:08:25 -0500 (Thu, 15 Dec 2011)
New Revision: 14247
Modified:
branches/community/Seam_2_3/jboss-seam-parent/pom.xml
Log:
fixed compilator setup - enable debugging in eclipse
Modified: branches/community/Seam_2_3/jboss-seam-parent/pom.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-parent/pom.xml 2011-12-15 22:08:18 UTC (rev 14246)
+++ branches/community/Seam_2_3/jboss-seam-parent/pom.xml 2011-12-15 22:08:25 UTC (rev 14247)
@@ -1603,17 +1603,15 @@
<configuration>
<source>${java.compiler.version}</source>
<target>${java.compiler.version}</target>
- <optimize>true</optimize>
<!-- javac doesn't compile all package-info.java,
therefore use eclipse compiler -->
- <compilerId>eclipse</compilerId>
+ <compilerId>eclipse</compilerId>
</configuration>
<dependencies>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-compiler-eclipse</artifactId>
- <version>1.8.1</version>
- <scope>runtime</scope>
+ <version>1.8.2</version>
</dependency>
</dependencies>
12 years, 11 months
Seam SVN: r14246 - branches/community/Seam_2_3/examples/jpa/jpa-web.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2011-12-15 17:08:18 -0500 (Thu, 15 Dec 2011)
New Revision: 14246
Modified:
branches/community/Seam_2_3/examples/jpa/jpa-web/pom.xml
Log:
added commented adding datasource
Modified: branches/community/Seam_2_3/examples/jpa/jpa-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples/jpa/jpa-web/pom.xml 2011-11-06 13:34:57 UTC (rev 14245)
+++ branches/community/Seam_2_3/examples/jpa/jpa-web/pom.xml 2011-12-15 22:08:18 UTC (rev 14246)
@@ -156,10 +156,31 @@
<plugin>
<groupId>org.jboss.as.plugins</groupId>
<artifactId>jboss-as-maven-plugin</artifactId>
- <version>7.0.0.Final</version>
+ <version>7.0.2.Final</version>
<configuration>
<filename>${project.build.finalName}.war</filename>
</configuration>
+<!-- <executions> -->
+<!-- <execution> -->
+<!-- <id>add-datasource</id> -->
+<!-- <phase>install</phase> -->
+<!-- <configuration> -->
+<!-- <address>subsystem=datasources,data-source=bookingDatasource</address> -->
+<!-- <properties> -->
+<!-- <connection-url>jdbc:h2:mem:test;DB_CLOSE_DELAY=-1</connection-url> -->
+<!-- <jndi-name>bookingDatabase</jndi-name> -->
+<!-- <enabled>true</enabled> -->
+<!-- <pool-name>myJPAPool</pool-name> -->
+<!-- <user-name>sa</user-name> -->
+<!-- <password></password> -->
+<!-- <driver-name>h2</driver-name> -->
+<!-- </properties> -->
+<!-- </configuration> -->
+<!-- <goals> -->
+<!-- <goal>add-resource</goal> -->
+<!-- </goals> -->
+<!-- </execution> -->
+<!-- </executions> -->
</plugin>
</plugins>
</build>
12 years, 11 months
[seam/international] 9235dc: SEAMINTL-69 Change Requires to be on classes for j...
by noreply@github.com
Branch: refs/heads/develop
Home: https://github.com/seam/international
Commit: 9235dc7d1cda8c8ac948735aa59c1341404d9ed4
https://github.com/seam/international/commit/9235dc7d1cda8c8ac948735aa59c...
Author: Ken Finnigan <ken(a)kenfinnigan.me>
Date: 2011-12-14 (Wed, 14 Dec 2011)
Changed paths:
M api/src/main/java/org/jboss/seam/international/datetimezone/ForwardingDateTimeZone.java
R api/src/main/java/org/jboss/seam/international/datetimezone/package-info.java
M impl/src/main/java/org/jboss/seam/international/datetimezone/AvailableDateTimeZones.java
M impl/src/main/java/org/jboss/seam/international/datetimezone/DefaultDateTimeZoneProducer.java
M impl/src/main/java/org/jboss/seam/international/datetimezone/UserDateTimeZoneProducer.java
R impl/src/main/java/org/jboss/seam/international/datetimezone/package-info.java
Log Message:
-----------
SEAMINTL-69 Change Requires to be on classes for joda-time
Commit: ceef985270bf7e8f622da4870f10fc885ecd7759
https://github.com/seam/international/commit/ceef985270bf7e8f622da4870f10...
Author: Ken Finnigan <ken(a)kenfinnigan.me>
Date: 2011-12-14 (Wed, 14 Dec 2011)
Changed paths:
M api/src/main/java/org/jboss/seam/international/datetimezone/ForwardingDateTimeZone.java
R api/src/main/java/org/jboss/seam/international/datetimezone/package-info.java
M impl/src/main/java/org/jboss/seam/international/datetimezone/AvailableDateTimeZones.java
M impl/src/main/java/org/jboss/seam/international/datetimezone/DefaultDateTimeZoneProducer.java
M impl/src/main/java/org/jboss/seam/international/datetimezone/UserDateTimeZoneProducer.java
R impl/src/main/java/org/jboss/seam/international/datetimezone/package-info.java
Log Message:
-----------
Merge pull request #24 from kenfinnigan/develop
SEAMINTL-69 Change Requires to be on classes for joda-time
Compare: https://github.com/seam/international/compare/41e50fc...ceef985
12 years, 11 months
[seam/jms] 3f2122: SEAMJMS-61 fixed an issue with the example. Chang...
by noreply@github.com
Branch: refs/heads/develop
Home: https://github.com/seam/jms
Commit: 3f2122c8faa0224e8d7fc76a522a60a5a4df186d
https://github.com/seam/jms/commit/3f2122c8faa0224e8d7fc76a522a60a5a4df186d
Author: John Ament <john.d.ament(a)gmail.com>
Date: 2011-12-14 (Wed, 14 Dec 2011)
Changed paths:
M api/src/main/java/org/jboss/seam/jms/TopicBuilder.java
M examples/jms-statuswatcher/src/main/java/org/jboss/seam/jms/example/statuswatcher/session/ReceivingClient.java
M impl/src/main/java/org/jboss/seam/jms/QueueBuilderImpl.java
M impl/src/main/java/org/jboss/seam/jms/TopicBuilderImpl.java
M testsuite/pom.xml
M testsuite/src/test/java/org/jboss/seam/jms/test/builder/queue/QueueBuilderImplTest.java
M testsuite/src/test/java/org/jboss/seam/jms/test/builder/topic/TopicBuilderImplTest.java
M testsuite/src/test/resources-jbossas6/hornetq-jms.xml
Log Message:
-----------
SEAMJMS-61 fixed an issue with the example. Changed the impls to clean
up how connections created. Tweaked the test cases a bit.
12 years, 11 months