Seam SVN: r11203 - branches/community/Seam_2_2/src/main/org/jboss/seam/drools.
by seam-commits@lists.jboss.org
Author: norman.richards(a)jboss.com
Date: 2009-06-24 16:51:19 -0400 (Wed, 24 Jun 2009)
New Revision: 11203
Added:
branches/community/Seam_2_2/src/main/org/jboss/seam/drools/SpreadsheetCompiler.java
Modified:
branches/community/Seam_2_2/src/main/org/jboss/seam/drools/RuleBase.java
Log:
JBSEAM-4266
Modified: branches/community/Seam_2_2/src/main/org/jboss/seam/drools/RuleBase.java
===================================================================
--- branches/community/Seam_2_2/src/main/org/jboss/seam/drools/RuleBase.java 2009-06-24 18:25:59 UTC (rev 11202)
+++ branches/community/Seam_2_2/src/main/org/jboss/seam/drools/RuleBase.java 2009-06-24 20:51:19 UTC (rev 11203)
@@ -11,8 +11,6 @@
import org.drools.compiler.PackageBuilder;
import org.drools.compiler.PackageBuilderConfiguration;
import org.drools.compiler.RuleBuildError;
-import org.drools.decisiontable.InputType;
-import org.drools.decisiontable.SpreadsheetCompiler;
import org.drools.spi.ConsequenceExceptionHandler;
import org.jboss.seam.ScopeType;
import org.jboss.seam.annotations.Create;
@@ -61,16 +59,13 @@
if(isDecisionTable(ruleFile))
{
- log.debug("compiling decision table");
- SpreadsheetCompiler compiler = new SpreadsheetCompiler();
- String drl = compiler.compile(stream, InputType.XLS);
-
- log.debug("creating source");
- byte currentXMLBytes[] = drl.getBytes();
- InputStreamReader source = new InputStreamReader(new ByteArrayInputStream(currentXMLBytes));
-
- builder.addPackageFromDrl(source);
- }
+ if (SpreadsheetCompiler.instance() != null) {
+ builder.addPackageFromDrl(SpreadsheetCompiler.instance().compile(stream));
+ } else {
+ throw new UnsupportedOperationException("Unable to compile decision table. You need drools-decisiontables.jar in your classpath");
+
+ }
+ }
else if(isRuleFlow(ruleFile))
{
log.debug("adding ruleflow: " + ruleFile);
Added: branches/community/Seam_2_2/src/main/org/jboss/seam/drools/SpreadsheetCompiler.java
===================================================================
--- branches/community/Seam_2_2/src/main/org/jboss/seam/drools/SpreadsheetCompiler.java (rev 0)
+++ branches/community/Seam_2_2/src/main/org/jboss/seam/drools/SpreadsheetCompiler.java 2009-06-24 20:51:19 UTC (rev 11203)
@@ -0,0 +1,53 @@
+package org.jboss.seam.drools;
+
+import static org.jboss.seam.ScopeType.APPLICATION;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
+
+import java.io.ByteArrayInputStream;
+import java.io.InputStream;
+import java.io.InputStreamReader;
+
+import org.drools.decisiontable.InputType;
+import org.jboss.seam.Component;
+import org.jboss.seam.ScopeType;
+import org.jboss.seam.annotations.Install;
+import org.jboss.seam.annotations.Name;
+import org.jboss.seam.annotations.Scope;
+import org.jboss.seam.annotations.intercept.BypassInterceptors;
+import org.jboss.seam.contexts.Contexts;
+import org.jboss.seam.log.LogProvider;
+import org.jboss.seam.log.Logging;
+
+/**
+ * Compiles Drools DecisionTable.
+ *
+ * @author Tihomir Surdilovic
+ *
+ */
+
+@Name("org.jboss.seam.drools.spreadsheetComponent")
+@BypassInterceptors
+@Scope(APPLICATION)
+@Install(precedence = BUILT_IN, classDependencies = "org.drools.decisiontable.SpreadsheetCompiler")
+public class SpreadsheetCompiler
+{
+ private static final LogProvider log = Logging.getLogProvider(SpreadsheetCompiler.class);
+
+ public InputStreamReader compile(InputStream stream) {
+ org.drools.decisiontable.SpreadsheetCompiler compiler = new org.drools.decisiontable.SpreadsheetCompiler();
+ String drl = compiler.compile(stream, InputType.XLS);
+
+ byte currentXMLBytes[] = drl.getBytes();
+ InputStreamReader source = new InputStreamReader(new ByteArrayInputStream(currentXMLBytes));
+ return source;
+ }
+
+ public static SpreadsheetCompiler instance()
+ {
+ if (!Contexts.isApplicationContextActive()) {
+ return new SpreadsheetCompiler();
+ } else {
+ return (SpreadsheetCompiler) Component.getInstance(SpreadsheetCompiler.class, ScopeType.APPLICATION);
+ }
+ }
+}
\ No newline at end of file
15 years, 6 months
Seam SVN: r11202 - branches/community/Seam_2_2/doc/Seam_Reference_Guide/en-US.
by seam-commits@lists.jboss.org
Author: norman.richards(a)jboss.com
Date: 2009-06-24 14:25:59 -0400 (Wed, 24 Jun 2009)
New Revision: 11202
Modified:
branches/community/Seam_2_2/doc/Seam_Reference_Guide/en-US/Gettingstarted.xml
branches/community/Seam_2_2/doc/Seam_Reference_Guide/en-US/Websphere.xml
Log:
JBSEAM-4271
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/en-US/Gettingstarted.xml
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/en-US/Gettingstarted.xml 2009-06-24 13:51:43 UTC (rev 11201)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/en-US/Gettingstarted.xml 2009-06-24 18:25:59 UTC (rev 11202)
@@ -55,7 +55,7 @@
<para>The first thing we need to do is configure seam-gen for your environment: JBoss AS installation directory,
project workspace, and database connection. It's easy, just type:</para>
- <programlisting>cd jboss-seam-2.0.x
+ <programlisting>cd jboss-seam-2.2.x
seam setup</programlisting>
<para>And you will be prompted for the needed information:</para>
@@ -410,11 +410,11 @@
<section>
<title>Using Seam with JBoss 4.0</title>
- <para> Seam 2.0 was developed for JavaServer Faces 1.2. When using JBoss AS, we recommend using JBoss 4.2 or
+ <para> Seam 2 was developed for JavaServer Faces 1.2. When using JBoss AS, we recommend using JBoss 4.2 or
JBoss 5.0, both of which bundle the JSF 1.2 reference implementation. However, it is still possible to use
- Seam 2.0 on the JBoss 4.0 platform. There are two basic steps required to do this: install an EJB3-enabled
+ Seam 2 on the JBoss 4.0 platform. There are two basic steps required to do this: install an EJB3-enabled
version of JBoss 4.0 and replace MyFaces with the JSF 1.2 reference implementation. Once you complete these
- steps, Seam 2.0 applications can be deployed to JBoss 4.0.</para>
+ steps, Seam 2 applications can be deployed to JBoss 4.0.</para>
<section>
<title>Install JBoss 4.0</title>
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/en-US/Websphere.xml
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/en-US/Websphere.xml 2009-06-24 13:51:43 UTC (rev 11201)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/en-US/Websphere.xml 2009-06-24 18:25:59 UTC (rev 11202)
@@ -841,7 +841,7 @@
import.sql each time you deploy? [n] (y, [n], )
[propertyfile] Creating new property file:
-/rhdev/projects/jboss-seam/svn-seam_2_0/jboss-seam-2_0/seam-gen/build.properties
+/rhdev/projects/jboss-seam/svn-seam_2_2/jboss-seam-2_2/seam-gen/build.properties
[echo] Installing JDBC driver jar to JBoss server
[copy] Copying 1 file to /home/jbalunas/jboss/jboss-4.2.3.GA/server/default/lib
[echo] Type 'seam create-project' to create the new project
15 years, 6 months
Seam SVN: r11201 - in branches/community/Seam_2_2: seam-gen/build-scripts and 6 other directories.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2009-06-24 09:51:43 -0400 (Wed, 24 Jun 2009)
New Revision: 11201
Modified:
branches/community/Seam_2_2/doc/Seam_Reference_Guide/en-US/Dependencies.xml
branches/community/Seam_2_2/doc/Seam_Reference_Guide/en-US/Security.xml
branches/community/Seam_2_2/seam-gen/build-scripts/deployed-jars-ear.list
branches/community/Seam_2_2/seam-gen/build-scripts/deployed-jars-war.list
branches/community/Seam_2_2/seam-gen/icefaces/build-scripts/deployed-jars-ear.list
branches/community/Seam_2_2/seam-gen/icefaces/build-scripts/deployed-jars-war.list
branches/community/Seam_2_2/seam-gen/icefaces/ide-project-files/eclipse/.classpath
branches/community/Seam_2_2/seam-gen/icefaces/ide-project-files/idea/module.iml
branches/community/Seam_2_2/seam-gen/ide-project-files/eclipse/.classpath
branches/community/Seam_2_2/seam-gen/ide-project-files/idea/module.iml
branches/community/Seam_2_2/seam-gen/ide-project-files/netbeans/project.xml
Log:
JBSEAM-4266 - fixing missing references of drools-decision-tables.jar and drools-templates.jar
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/en-US/Dependencies.xml
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/en-US/Dependencies.xml 2009-06-23 19:17:15 UTC (rev 11200)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/en-US/Dependencies.xml 2009-06-24 13:51:43 UTC (rev 11201)
@@ -858,6 +858,21 @@
<row>
<entry>
+ <para><literal>drools-api.jar</literal></para>
+ </entry>
+ <entry align="center">
+ <para>runtime</para>
+ </entry>
+ <entry align="center">
+ <para>ear</para>
+ </entry>
+ <entry>
+ <para></para>
+ </entry>
+ </row>
+
+ <row>
+ <entry>
<para><literal>drools-compiler.jar</literal></para>
</entry>
<entry align="center">
@@ -888,6 +903,36 @@
<row>
<entry>
+ <para><literal>drools-decisiontables.jar</literal></para>
+ </entry>
+ <entry align="center">
+ <para>runtime</para>
+ </entry>
+ <entry align="center">
+ <para>ear</para>
+ </entry>
+ <entry>
+ <para></para>
+ </entry>
+ </row>
+
+ <row>
+ <entry>
+ <para><literal>drools-templates.jar</literal></para>
+ </entry>
+ <entry align="center">
+ <para>runtime</para>
+ </entry>
+ <entry align="center">
+ <para>ear</para>
+ </entry>
+ <entry>
+ <para></para>
+ </entry>
+ </row>
+
+ <row>
+ <entry>
<para><literal>janino.jar</literal></para>
</entry>
<entry align="center">
@@ -903,7 +948,7 @@
<row>
<entry>
- <para><literal>mvel.jar</literal></para>
+ <para><literal>mvel2.jar</literal></para>
</entry>
<entry align="center">
<para>runtime</para>
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/en-US/Security.xml
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/en-US/Security.xml 2009-06-23 19:17:15 UTC (rev 11200)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/en-US/Security.xml 2009-06-24 13:51:43 UTC (rev 11201)
@@ -3343,6 +3343,12 @@
<para>drools-core.jar</para>
</listitem>
<listitem>
+ <para>drools-decisiontables.jar</para>
+ </listitem>
+ <listitem>
+ <para>drools-templates.jar</para>
+ </listitem>
+ <listitem>
<para>janino.jar</para>
</listitem>
<listitem>
Modified: branches/community/Seam_2_2/seam-gen/build-scripts/deployed-jars-ear.list
===================================================================
--- branches/community/Seam_2_2/seam-gen/build-scripts/deployed-jars-ear.list 2009-06-23 19:17:15 UTC (rev 11200)
+++ branches/community/Seam_2_2/seam-gen/build-scripts/deployed-jars-ear.list 2009-06-24 13:51:43 UTC (rev 11201)
@@ -1,6 +1,7 @@
antlr-runtime.jar
commons-beanutils.jar
core.jar
+drools-templates.jar
drools-decisiontables.jar
drools-compiler.jar
drools-api.jar
Modified: branches/community/Seam_2_2/seam-gen/build-scripts/deployed-jars-war.list
===================================================================
--- branches/community/Seam_2_2/seam-gen/build-scripts/deployed-jars-war.list 2009-06-23 19:17:15 UTC (rev 11200)
+++ branches/community/Seam_2_2/seam-gen/build-scripts/deployed-jars-war.list 2009-06-24 13:51:43 UTC (rev 11201)
@@ -2,6 +2,7 @@
commons-beanutils.jar
commons-digester.jar
core.jar
+drools-templates.jar
drools-decisiontables.jar
drools-api.jar
drools-compiler.jar
Modified: branches/community/Seam_2_2/seam-gen/icefaces/build-scripts/deployed-jars-ear.list
===================================================================
--- branches/community/Seam_2_2/seam-gen/icefaces/build-scripts/deployed-jars-ear.list 2009-06-23 19:17:15 UTC (rev 11200)
+++ branches/community/Seam_2_2/seam-gen/icefaces/build-scripts/deployed-jars-ear.list 2009-06-24 13:51:43 UTC (rev 11201)
@@ -6,6 +6,8 @@
drools-api.jar
drools-compiler.jar
drools-core.jar
+drools-decisiontables.jar
+drools-templates.jar
groovy-all.jar
icefaces.jar
icefaces-comps.jar
Modified: branches/community/Seam_2_2/seam-gen/icefaces/build-scripts/deployed-jars-war.list
===================================================================
--- branches/community/Seam_2_2/seam-gen/icefaces/build-scripts/deployed-jars-war.list 2009-06-23 19:17:15 UTC (rev 11200)
+++ branches/community/Seam_2_2/seam-gen/icefaces/build-scripts/deployed-jars-war.list 2009-06-24 13:51:43 UTC (rev 11201)
@@ -7,6 +7,8 @@
drools-api.jar
drools-compiler.jar
drools-core.jar
+drools-decisiontables.jar
+drools-templates.jar
icefaces.jar
icefaces-comps.jar
icefaces-facelets.jar
Modified: branches/community/Seam_2_2/seam-gen/icefaces/ide-project-files/eclipse/.classpath
===================================================================
--- branches/community/Seam_2_2/seam-gen/icefaces/ide-project-files/eclipse/.classpath 2009-06-23 19:17:15 UTC (rev 11200)
+++ branches/community/Seam_2_2/seam-gen/icefaces/ide-project-files/eclipse/.classpath 2009-06-24 13:51:43 UTC (rev 11201)
@@ -28,6 +28,8 @@
<classpathentry kind="lib" path="lib/drools-api.jar"/>
<classpathentry kind="lib" path="lib/drools-core.jar"/>
<classpathentry kind="lib" path="lib/drools-compiler.jar"/>
+ <classpathentry kind="lib" path="lib/drools-decisiontables.jar"/>
+ <classpathentry kind="lib" path="lib/drools-templates.jar"/>
<classpathentry kind="lib" path="lib/janino.jar"/>
<classpathentry kind="lib" path="lib/antlr-runtime.jar"/>
<classpathentry kind="lib" path="lib/mail.jar"/>
Modified: branches/community/Seam_2_2/seam-gen/icefaces/ide-project-files/idea/module.iml
===================================================================
--- branches/community/Seam_2_2/seam-gen/icefaces/ide-project-files/idea/module.iml 2009-06-23 19:17:15 UTC (rev 11200)
+++ branches/community/Seam_2_2/seam-gen/icefaces/ide-project-files/idea/module.iml 2009-06-24 13:51:43 UTC (rev 11201)
@@ -277,6 +277,24 @@
<orderEntry type="module-library">
<library>
<CLASSES>
+ <root url="jar://$MODULE_DIR$/lib/drools-decisiontables.jar!/" />
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library>
+ <CLASSES>
+ <root url="jar://$MODULE_DIR$/lib/drools-templates.jar!/" />
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry
+ <orderEntry type="module-library">
+ <library>
+ <CLASSES>
<root url="jar://$MODULE_DIR$/lib/janino.jar!/" />
</CLASSES>
<JAVADOC />
Modified: branches/community/Seam_2_2/seam-gen/ide-project-files/eclipse/.classpath
===================================================================
--- branches/community/Seam_2_2/seam-gen/ide-project-files/eclipse/.classpath 2009-06-23 19:17:15 UTC (rev 11200)
+++ branches/community/Seam_2_2/seam-gen/ide-project-files/eclipse/.classpath 2009-06-24 13:51:43 UTC (rev 11201)
@@ -27,6 +27,8 @@
<classpathentry kind="lib" path="lib/drools-api.jar"/>
<classpathentry kind="lib" path="lib/drools-core.jar"/>
<classpathentry kind="lib" path="lib/drools-compiler.jar"/>
+ <classpathentry kind="lib" path="lib/drools-decisiontables.jar"/>
+ <classpathentry kind="lib" path="lib/drools-templates.jar"/>
<classpathentry kind="lib" path="lib/janino.jar"/>
<classpathentry kind="lib" path="lib/antlr-runtime.jar"/>
<classpathentry kind="lib" path="lib/mail.jar"/>
Modified: branches/community/Seam_2_2/seam-gen/ide-project-files/idea/module.iml
===================================================================
--- branches/community/Seam_2_2/seam-gen/ide-project-files/idea/module.iml 2009-06-23 19:17:15 UTC (rev 11200)
+++ branches/community/Seam_2_2/seam-gen/ide-project-files/idea/module.iml 2009-06-24 13:51:43 UTC (rev 11201)
@@ -272,6 +272,24 @@
<orderEntry type="module-library">
<library>
<CLASSES>
+ <root url="jar://$MODULE_DIR$/lib/drools-decisiontables.jar!/" />
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library>
+ <CLASSES>
+ <root url="jar://$MODULE_DIR$/lib/drools-templates!/" />
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library>
+ <CLASSES>
<root url="jar://$MODULE_DIR$/lib/janino.jar!/" />
</CLASSES>
<JAVADOC />
Modified: branches/community/Seam_2_2/seam-gen/ide-project-files/netbeans/project.xml
===================================================================
--- branches/community/Seam_2_2/seam-gen/ide-project-files/netbeans/project.xml 2009-06-23 19:17:15 UTC (rev 11200)
+++ branches/community/Seam_2_2/seam-gen/ide-project-files/netbeans/project.xml 2009-06-24 13:51:43 UTC (rev 11201)
@@ -96,18 +96,18 @@
<java-data xmlns="http://www.netbeans.org/ns/freeform-project-java/2">
<compilation-unit>
<package-root>src/main</package-root>
- <classpath mode="compile">lib/hibernate-validator.jar:lib/hibernate-core.jar:lib/hibernate-annotations.jar:lib/hibernate-commons-annotations.jar:lib/hibernate-entitymanager.jar:lib/jboss-seam.jar:lib/jboss-seam-debug.jar:lib/jboss-cache.jar:lib/jbpm-jpdl.jar:lib/antlr.jar:lib/jgroups.jar:lib/jsf-facelets.jar:lib/jstl.jar:lib/jsf-api.jar:lib/servlet-api.jar:lib/jboss-el.jar:lib/el-api.jar:lib/mvel2.jar:lib/drools-api.jar:lib/drools-core.jar:lib/drools-compiler.jar:lib/janino.jar:lib/antlr-runtime.jar:lib/mail.jar:lib/persistence-api.jar:lib/ejb-api.jar:lib/jsr250-api.jar:lib/jta.jar:lib/core.jar:lib/jboss-embedded-api.jar:lib/hibernate-search.jar:lib/richfaces-api.jar:lib/richfaces-ui.jar:lib/@driverJar@:lib/lucene-core.jar</classpath>
+ <classpath mode="compile">lib/hibernate-validator.jar:lib/hibernate-core.jar:lib/hibernate-annotations.jar:lib/hibernate-commons-annotations.jar:lib/hibernate-entitymanager.jar:lib/jboss-seam.jar:lib/jboss-seam-debug.jar:lib/jboss-cache.jar:lib/jbpm-jpdl.jar:lib/antlr.jar:lib/jgroups.jar:lib/jsf-facelets.jar:lib/jstl.jar:lib/jsf-api.jar:lib/servlet-api.jar:lib/jboss-el.jar:lib/el-api.jar:lib/mvel2.jar:lib/drools-api.jar:lib/drools-core.jar:lib/drools-compiler.jar:lib/drools-decisiontables.jar:lib/drools-templates.jar:lib/janino.jar:lib/antlr-runtime.jar:lib/mail.jar:lib/persistence-api.jar:lib/ejb-api.jar:lib/jsr250-api.jar:lib/jta.jar:lib/core.jar:lib/jboss-embedded-api.jar:lib/hibernate-search.jar:lib/richfaces-api.jar:lib/richfaces-ui.jar:lib/@driverJar@:lib/lucene-core.jar</classpath>
<source-level>1.5</source-level>
</compilation-unit>
<compilation-unit>
<package-root>src/hot</package-root>
- <classpath mode="compile">lib/hibernate-validator.jar:lib/hibernate-core.jar:lib/hibernate-annotations.jar:lib/hibernate-commons-annotations.jar:lib/hibernate-entitymanager.jar:lib/jboss-seam.jar:lib/jboss-seam-debug.jar:lib/jboss-cache.jar:lib/jbpm-jpdl.jar:lib/antlr.jar:lib/jgroups.jar:lib/jsf-facelets.jar:lib/jstl.jar:lib/jsf-api.jar:lib/servlet-api.jar:lib/jboss-el.jar:lib/el-api.jar:lib/mvel2.jar:lib/drools-api.jar:lib/drools-core.jar:lib/drools-compiler.jar:lib/janino.jar:lib/antlr-runtime.jar:lib/mail.jar:lib/persistence-api.jar:lib/ejb-api.jar:lib/jsr250-api.jar:lib/jta.jar:lib/core.jar:lib/jboss-embedded-api.jar:lib/hibernate-search.jar:lib/richfaces-api.jar:lib/richfaces-ui.jar:lib/@driverJar@:lib/lucene-core.jar</classpath>
+ <classpath mode="compile">lib/hibernate-validator.jar:lib/hibernate-core.jar:lib/hibernate-annotations.jar:lib/hibernate-commons-annotations.jar:lib/hibernate-entitymanager.jar:lib/jboss-seam.jar:lib/jboss-seam-debug.jar:lib/jboss-cache.jar:lib/jbpm-jpdl.jar:lib/antlr.jar:lib/jgroups.jar:lib/jsf-facelets.jar:lib/jstl.jar:lib/jsf-api.jar:lib/servlet-api.jar:lib/jboss-el.jar:lib/el-api.jar:lib/mvel2.jar:lib/drools-api.jar:lib/drools-core.jar:lib/drools-compiler.jar:lib/drools-decisiontables.jar:lib/drools-templates.jar:lib/janino.jar:lib/antlr-runtime.jar:lib/mail.jar:lib/persistence-api.jar:lib/ejb-api.jar:lib/jsr250-api.jar:lib/jta.jar:lib/core.jar:lib/jboss-embedded-api.jar:lib/hibernate-search.jar:lib/richfaces-api.jar:lib/richfaces-ui.jar:lib/@driverJar@:lib/lucene-core.jar</classpath>
<source-level>1.5</source-level>
</compilation-unit>
<compilation-unit>
<package-root>src/test</package-root>
<unit-tests/>
- <classpath mode="compile">bootstrap:lib/hibernate-validator.jar:lib/hibernate-core.jar:lib/hibernate-annotations.jar:lib/hibernate-commons-annotations.jar:lib/hibernate-entitymanager.jar:lib/jboss-seam.jar:lib/jboss-seam-debug.jar:lib/jboss-cache.jar:lib/jbpm-jpdl.jar:lib/antlr.jar:lib/jgroups.jar:lib/jsf-facelets.jar:lib/jstl.jar:lib/jsf-api.jar:lib/servlet-api.jar:lib/testng.jar:lib/jboss-el.jar:lib/el-api.jar:lib/mvel2.jar:lib/drools-api.jar:lib/drools-core.jar:lib/drools-compiler.jar:lib/janino.jar:lib/antlr-runtime.jar:lib/mail.jar:lib/persistence-api.jar:lib/ejb-api.jar:lib/jsr250-api.jar:lib/jta.jar:lib/core.jar:lib/jboss-embedded-api.jar:lib/hibernate-search.jar:lib/richfaces-api.jar:lib/@driverJar@:lib/lucene-core.jar</classpath>
+ <classpath mode="compile">bootstrap:lib/hibernate-validator.jar:lib/hibernate-core.jar:lib/hibernate-annotations.jar:lib/hibernate-commons-annotations.jar:lib/hibernate-entitymanager.jar:lib/jboss-seam.jar:lib/jboss-seam-debug.jar:lib/jboss-cache.jar:lib/jbpm-jpdl.jar:lib/antlr.jar:lib/jgroups.jar:lib/jsf-facelets.jar:lib/jstl.jar:lib/jsf-api.jar:lib/servlet-api.jar:lib/testng.jar:lib/jboss-el.jar:lib/el-api.jar:lib/mvel2.jar:lib/drools-api.jar:lib/drools-core.jar:lib/drools-compiler.jar:lib/drools-templates.jar:lib/janino.jar:lib/antlr-runtime.jar:lib/mail.jar:lib/persistence-api.jar:lib/ejb-api.jar:lib/jsr250-api.jar:lib/jta.jar:lib/core.jar:lib/jboss-embedded-api.jar:lib/hibernate-search.jar:lib/richfaces-api.jar:lib/@driverJar@:lib/lucene-core.jar</classpath>
<source-level>1.5</source-level>
</compilation-unit>
</java-data>
15 years, 6 months
Seam SVN: r11200 - tags/JBoss_Seam_2_2_0_CR1.
by seam-commits@lists.jboss.org
Author: norman.richards(a)jboss.com
Date: 2009-06-23 15:17:15 -0400 (Tue, 23 Jun 2009)
New Revision: 11200
Modified:
tags/JBoss_Seam_2_2_0_CR1/changelog.txt
Log:
update changelog
Modified: tags/JBoss_Seam_2_2_0_CR1/changelog.txt
===================================================================
--- tags/JBoss_Seam_2_2_0_CR1/changelog.txt 2009-06-23 19:16:50 UTC (rev 11199)
+++ tags/JBoss_Seam_2_2_0_CR1/changelog.txt 2009-06-23 19:17:15 UTC (rev 11200)
@@ -16,8 +16,9 @@
* [JBSEAM-4244] - fix for JBSEAM-4131 introduced a performance regression
* [JBSEAM-4246] - Addition of numberDepth to p:chapter
* [JBSEAM-4258] - Redirect in navigation rules doesn't work
+ * [JBSEAM-4262] - Bad classpath for eclipse project in seam-gen generated .classpath file
+ * [JBSEAM-4265] - seam-gen generate cannot find org/hibernate/cfg/Configuration
-
** Feature Request
* [JBSEAM-1587] - page parameters: option to bypass model-based validations
* [JBSEAM-3891] - openid fails on port 80
15 years, 6 months
Seam SVN: r11199 - branches/community/Seam_2_2.
by seam-commits@lists.jboss.org
Author: norman.richards(a)jboss.com
Date: 2009-06-23 15:16:50 -0400 (Tue, 23 Jun 2009)
New Revision: 11199
Modified:
branches/community/Seam_2_2/changelog.txt
Log:
update changelog
Modified: branches/community/Seam_2_2/changelog.txt
===================================================================
--- branches/community/Seam_2_2/changelog.txt 2009-06-23 19:14:04 UTC (rev 11198)
+++ branches/community/Seam_2_2/changelog.txt 2009-06-23 19:16:50 UTC (rev 11199)
@@ -16,8 +16,9 @@
* [JBSEAM-4244] - fix for JBSEAM-4131 introduced a performance regression
* [JBSEAM-4246] - Addition of numberDepth to p:chapter
* [JBSEAM-4258] - Redirect in navigation rules doesn't work
+ * [JBSEAM-4262] - Bad classpath for eclipse project in seam-gen generated .classpath file
+ * [JBSEAM-4265] - seam-gen generate cannot find org/hibernate/cfg/Configuration
-
** Feature Request
* [JBSEAM-1587] - page parameters: option to bypass model-based validations
* [JBSEAM-3891] - openid fails on port 80
15 years, 6 months
Seam SVN: r11198 - in tags/JBoss_Seam_2_2_0_CR1/seam-gen: icefaces/ide-project-files/eclipse and 4 other directories.
by seam-commits@lists.jboss.org
Author: norman.richards(a)jboss.com
Date: 2009-06-23 15:14:04 -0400 (Tue, 23 Jun 2009)
New Revision: 11198
Modified:
tags/JBoss_Seam_2_2_0_CR1/seam-gen/build.xml
tags/JBoss_Seam_2_2_0_CR1/seam-gen/icefaces/ide-project-files/eclipse/.classpath
tags/JBoss_Seam_2_2_0_CR1/seam-gen/icefaces/ide-project-files/idea/module.iml
tags/JBoss_Seam_2_2_0_CR1/seam-gen/ide-project-files/eclipse/.classpath
tags/JBoss_Seam_2_2_0_CR1/seam-gen/ide-project-files/idea/module.iml
tags/JBoss_Seam_2_2_0_CR1/seam-gen/ide-project-files/netbeans/project.xml
Log:
merge seamgen changes from branch
Modified: tags/JBoss_Seam_2_2_0_CR1/seam-gen/build.xml
===================================================================
--- tags/JBoss_Seam_2_2_0_CR1/seam-gen/build.xml 2009-06-23 19:05:47 UTC (rev 11197)
+++ tags/JBoss_Seam_2_2_0_CR1/seam-gen/build.xml 2009-06-23 19:14:04 UTC (rev 11198)
@@ -1534,15 +1534,18 @@
<pathelement path="${seam.dir}/lib/gen/text.jar"/>
<pathelement path="${seam.dir}/lib/dom4j.jar"/>
<pathelement path="${seam.dir}/lib/persistence-api.jar"/>
- <pathelement path="${seam.dir}/lib/hibernate.jar"/>
+ <pathelement path="${seam.dir}/lib/hibernate-core.jar"/>
<pathelement path="${seam.dir}/lib/hibernate-commons-annotations.jar"/>
<pathelement path="${seam.dir}/lib/hibernate-annotations.jar"/>
<pathelement path="${seam.dir}/lib/hibernate-entitymanager.jar"/>
<pathelement path="${seam.dir}/lib/hibernate-validator.jar"/>
+ <pathelement path="${seam.dir}/lib/slf4j-api.jar"/>
+ <pathelement path="${seam.dir}/lib/slf4j-log4j12.jar"/>
+ <pathelement path="${seam.dir}/lib/log4j.jar"/>
<pathelement path="${seam.dir}/lib/commons-collections.jar"/>
<pathelement path="${seam.dir}/lib/commons-logging.jar"/>
<pathelement path="${seam.dir}/lib/javassist.jar"/>
- <pathelement path="${seam.dir}/lib/cglib.jar"/>
+ <pathelement path="${seam.dir}/lib/cglib-nodep.jar"/>
<pathelement path="${seam.dir}/lib/asm.jar"/>
<pathelement path="${seam.dir}/lib/core.jar"/>
<pathelement path="${seam.dir}/lib/jboss-common-core.jar"/>
Modified: tags/JBoss_Seam_2_2_0_CR1/seam-gen/icefaces/ide-project-files/eclipse/.classpath
===================================================================
--- tags/JBoss_Seam_2_2_0_CR1/seam-gen/icefaces/ide-project-files/eclipse/.classpath 2009-06-23 19:05:47 UTC (rev 11197)
+++ tags/JBoss_Seam_2_2_0_CR1/seam-gen/icefaces/ide-project-files/eclipse/.classpath 2009-06-23 19:14:04 UTC (rev 11198)
@@ -6,7 +6,7 @@
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="lib" path="bootstrap"/>
<classpathentry kind="lib" path="lib/hibernate-validator.jar"/>
- <classpathentry kind="lib" path="lib/hibernate.jar"/>
+ <classpathentry kind="lib" path="lib/hibernate-core.jar"/>
<classpathentry kind="lib" path="lib/hibernate-annotations.jar"/>
<classpathentry kind="lib" path="lib/hibernate-commons-annotations.jar"/>
<classpathentry kind="lib" path="lib/hibernate-entitymanager.jar"/>
Modified: tags/JBoss_Seam_2_2_0_CR1/seam-gen/icefaces/ide-project-files/idea/module.iml
===================================================================
--- tags/JBoss_Seam_2_2_0_CR1/seam-gen/icefaces/ide-project-files/idea/module.iml 2009-06-23 19:05:47 UTC (rev 11197)
+++ tags/JBoss_Seam_2_2_0_CR1/seam-gen/icefaces/ide-project-files/idea/module.iml 2009-06-23 19:14:04 UTC (rev 11198)
@@ -84,7 +84,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/lib/hibernate.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/hibernate-core.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: tags/JBoss_Seam_2_2_0_CR1/seam-gen/ide-project-files/eclipse/.classpath
===================================================================
--- tags/JBoss_Seam_2_2_0_CR1/seam-gen/ide-project-files/eclipse/.classpath 2009-06-23 19:05:47 UTC (rev 11197)
+++ tags/JBoss_Seam_2_2_0_CR1/seam-gen/ide-project-files/eclipse/.classpath 2009-06-23 19:14:04 UTC (rev 11198)
@@ -6,7 +6,7 @@
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="lib" path="bootstrap"/>
<classpathentry kind="lib" path="lib/hibernate-validator.jar"/>
- <classpathentry kind="lib" path="lib/hibernate.jar"/>
+ <classpathentry kind="lib" path="lib/hibernate-core.jar"/>
<classpathentry kind="lib" path="lib/hibernate-annotations.jar"/>
<classpathentry kind="lib" path="lib/hibernate-commons-annotations.jar"/>
<classpathentry kind="lib" path="lib/hibernate-entitymanager.jar"/>
Modified: tags/JBoss_Seam_2_2_0_CR1/seam-gen/ide-project-files/idea/module.iml
===================================================================
--- tags/JBoss_Seam_2_2_0_CR1/seam-gen/ide-project-files/idea/module.iml 2009-06-23 19:05:47 UTC (rev 11197)
+++ tags/JBoss_Seam_2_2_0_CR1/seam-gen/ide-project-files/idea/module.iml 2009-06-23 19:14:04 UTC (rev 11198)
@@ -79,7 +79,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/lib/hibernate.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/hibernate-core.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: tags/JBoss_Seam_2_2_0_CR1/seam-gen/ide-project-files/netbeans/project.xml
===================================================================
--- tags/JBoss_Seam_2_2_0_CR1/seam-gen/ide-project-files/netbeans/project.xml 2009-06-23 19:05:47 UTC (rev 11197)
+++ tags/JBoss_Seam_2_2_0_CR1/seam-gen/ide-project-files/netbeans/project.xml 2009-06-23 19:14:04 UTC (rev 11198)
@@ -96,18 +96,18 @@
<java-data xmlns="http://www.netbeans.org/ns/freeform-project-java/2">
<compilation-unit>
<package-root>src/main</package-root>
- <classpath mode="compile">lib/hibernate-validator.jar:lib/hibernate.jar:lib/hibernate-annotations.jar:lib/hibernate-commons-annotations.jar:lib/hibernate-entitymanager.jar:lib/jboss-seam.jar:lib/jboss-seam-debug.jar:lib/jboss-cache.jar:lib/jbpm-jpdl.jar:lib/antlr.jar:lib/jgroups.jar:lib/jsf-facelets.jar:lib/jstl.jar:lib/jsf-api.jar:lib/servlet-api.jar:lib/jboss-el.jar:lib/el-api.jar:lib/mvel2.jar:lib/drools-api.jar:lib/drools-core.jar:lib/drools-compiler.jar:lib/janino.jar:lib/antlr-runtime.jar:lib/mail.jar:lib/persistence-api.jar:lib/ejb-api.jar:lib/jsr250-api.jar:lib/jta.jar:lib/core.jar:lib/jboss-embedded-api.jar:lib/hibernate-search.jar:lib/richfaces-api.jar:lib/richfaces-ui.jar:lib/@driverJar@:lib/lucene-core.jar</classpath>
+ <classpath mode="compile">lib/hibernate-validator.jar:lib/hibernate-core.jar:lib/hibernate-annotations.jar:lib/hibernate-commons-annotations.jar:lib/hibernate-entitymanager.jar:lib/jboss-seam.jar:lib/jboss-seam-debug.jar:lib/jboss-cache.jar:lib/jbpm-jpdl.jar:lib/antlr.jar:lib/jgroups.jar:lib/jsf-facelets.jar:lib/jstl.jar:lib/jsf-api.jar:lib/servlet-api.jar:lib/jboss-el.jar:lib/el-api.jar:lib/mvel2.jar:lib/drools-api.jar:lib/drools-core.jar:lib/drools-compiler.jar:lib/janino.jar:lib/antlr-runtime.jar:lib/mail.jar:lib/persistence-api.jar:lib/ejb-api.jar:lib/jsr250-api.jar:lib/jta.jar:lib/core.jar:lib/jboss-embedded-api.jar:lib/hibernate-search.jar:lib/richfaces-api.jar:lib/richfaces-ui.jar:lib/@driverJar@:lib/lucene-core.jar</classpath>
<source-level>1.5</source-level>
</compilation-unit>
<compilation-unit>
<package-root>src/hot</package-root>
- <classpath mode="compile">lib/hibernate-validator.jar:lib/hibernate.jar:lib/hibernate-annotations.jar:lib/hibernate-commons-annotations.jar:lib/hibernate-entitymanager.jar:lib/jboss-seam.jar:lib/jboss-seam-debug.jar:lib/jboss-cache.jar:lib/jbpm-jpdl.jar:lib/antlr.jar:lib/jgroups.jar:lib/jsf-facelets.jar:lib/jstl.jar:lib/jsf-api.jar:lib/servlet-api.jar:lib/jboss-el.jar:lib/el-api.jar:lib/mvel2.jar:lib/drools-api.jar:lib/drools-core.jar:lib/drools-compiler.jar:lib/janino.jar:lib/antlr-runtime.jar:lib/mail.jar:lib/persistence-api.jar:lib/ejb-api.jar:lib/jsr250-api.jar:lib/jta.jar:lib/core.jar:lib/jboss-embedded-api.jar:lib/hibernate-search.jar:lib/richfaces-api.jar:lib/richfaces-ui.jar:lib/@driverJar@:lib/lucene-core.jar</classpath>
+ <classpath mode="compile">lib/hibernate-validator.jar:lib/hibernate-core.jar:lib/hibernate-annotations.jar:lib/hibernate-commons-annotations.jar:lib/hibernate-entitymanager.jar:lib/jboss-seam.jar:lib/jboss-seam-debug.jar:lib/jboss-cache.jar:lib/jbpm-jpdl.jar:lib/antlr.jar:lib/jgroups.jar:lib/jsf-facelets.jar:lib/jstl.jar:lib/jsf-api.jar:lib/servlet-api.jar:lib/jboss-el.jar:lib/el-api.jar:lib/mvel2.jar:lib/drools-api.jar:lib/drools-core.jar:lib/drools-compiler.jar:lib/janino.jar:lib/antlr-runtime.jar:lib/mail.jar:lib/persistence-api.jar:lib/ejb-api.jar:lib/jsr250-api.jar:lib/jta.jar:lib/core.jar:lib/jboss-embedded-api.jar:lib/hibernate-search.jar:lib/richfaces-api.jar:lib/richfaces-ui.jar:lib/@driverJar@:lib/lucene-core.jar</classpath>
<source-level>1.5</source-level>
</compilation-unit>
<compilation-unit>
<package-root>src/test</package-root>
<unit-tests/>
- <classpath mode="compile">bootstrap:lib/hibernate-validator.jar:lib/hibernate.jar:lib/hibernate-annotations.jar:lib/hibernate-commons-annotations.jar:lib/hibernate-entitymanager.jar:lib/jboss-seam.jar:lib/jboss-seam-debug.jar:lib/jboss-cache.jar:lib/jbpm-jpdl.jar:lib/antlr.jar:lib/jgroups.jar:lib/jsf-facelets.jar:lib/jstl.jar:lib/jsf-api.jar:lib/servlet-api.jar:lib/testng.jar:lib/jboss-el.jar:lib/el-api.jar:lib/mvel2.jar:lib/drools-api.jar:lib/drools-core.jar:lib/drools-compiler.jar:lib/janino.jar:lib/antlr-runtime.jar:lib/mail.jar:lib/persistence-api.jar:lib/ejb-api.jar:lib/jsr250-api.jar:lib/jta.jar:lib/core.jar:lib/jboss-embedded-api.jar:lib/hibernate-search.jar:lib/richfaces-api.jar:lib/@driverJar@:lib/lucene-core.jar</classpath>
+ <classpath mode="compile">bootstrap:lib/hibernate-validator.jar:lib/hibernate-core.jar:lib/hibernate-annotations.jar:lib/hibernate-commons-annotations.jar:lib/hibernate-entitymanager.jar:lib/jboss-seam.jar:lib/jboss-seam-debug.jar:lib/jboss-cache.jar:lib/jbpm-jpdl.jar:lib/antlr.jar:lib/jgroups.jar:lib/jsf-facelets.jar:lib/jstl.jar:lib/jsf-api.jar:lib/servlet-api.jar:lib/testng.jar:lib/jboss-el.jar:lib/el-api.jar:lib/mvel2.jar:lib/drools-api.jar:lib/drools-core.jar:lib/drools-compiler.jar:lib/janino.jar:lib/antlr-runtime.jar:lib/mail.jar:lib/persistence-api.jar:lib/ejb-api.jar:lib/jsr250-api.jar:lib/jta.jar:lib/core.jar:lib/jboss-embedded-api.jar:lib/hibernate-search.jar:lib/richfaces-api.jar:lib/@driverJar@:lib/lucene-core.jar</classpath>
<source-level>1.5</source-level>
</compilation-unit>
</java-data>
15 years, 6 months
Seam SVN: r11197 - branches/community/Seam_2_2/seam-gen.
by seam-commits@lists.jboss.org
Author: norman.richards(a)jboss.com
Date: 2009-06-23 15:05:47 -0400 (Tue, 23 Jun 2009)
New Revision: 11197
Modified:
branches/community/Seam_2_2/seam-gen/build.xml
Log:
JBSEAM-4265
Modified: branches/community/Seam_2_2/seam-gen/build.xml
===================================================================
--- branches/community/Seam_2_2/seam-gen/build.xml 2009-06-23 18:45:38 UTC (rev 11196)
+++ branches/community/Seam_2_2/seam-gen/build.xml 2009-06-23 19:05:47 UTC (rev 11197)
@@ -1539,10 +1539,13 @@
<pathelement path="${seam.dir}/lib/hibernate-annotations.jar"/>
<pathelement path="${seam.dir}/lib/hibernate-entitymanager.jar"/>
<pathelement path="${seam.dir}/lib/hibernate-validator.jar"/>
+ <pathelement path="${seam.dir}/lib/slf4j-api.jar"/>
+ <pathelement path="${seam.dir}/lib/slf4j-log4j12.jar"/>
+ <pathelement path="${seam.dir}/lib/log4j.jar"/>
<pathelement path="${seam.dir}/lib/commons-collections.jar"/>
<pathelement path="${seam.dir}/lib/commons-logging.jar"/>
<pathelement path="${seam.dir}/lib/javassist.jar"/>
- <pathelement path="${seam.dir}/lib/cglib.jar"/>
+ <pathelement path="${seam.dir}/lib/cglib-nodep.jar"/>
<pathelement path="${seam.dir}/lib/asm.jar"/>
<pathelement path="${seam.dir}/lib/core.jar"/>
<pathelement path="${seam.dir}/lib/jboss-common-core.jar"/>
15 years, 6 months
Seam SVN: r11196 - in branches/community/Seam_2_2/seam-gen: icefaces/ide-project-files/eclipse and 4 other directories.
by seam-commits@lists.jboss.org
Author: norman.richards(a)jboss.com
Date: 2009-06-23 14:45:38 -0400 (Tue, 23 Jun 2009)
New Revision: 11196
Modified:
branches/community/Seam_2_2/seam-gen/build.xml
branches/community/Seam_2_2/seam-gen/icefaces/ide-project-files/eclipse/.classpath
branches/community/Seam_2_2/seam-gen/icefaces/ide-project-files/idea/module.iml
branches/community/Seam_2_2/seam-gen/ide-project-files/eclipse/.classpath
branches/community/Seam_2_2/seam-gen/ide-project-files/idea/module.iml
branches/community/Seam_2_2/seam-gen/ide-project-files/netbeans/project.xml
Log:
JBSEAM-4262
Modified: branches/community/Seam_2_2/seam-gen/build.xml
===================================================================
--- branches/community/Seam_2_2/seam-gen/build.xml 2009-06-23 16:47:49 UTC (rev 11195)
+++ branches/community/Seam_2_2/seam-gen/build.xml 2009-06-23 18:45:38 UTC (rev 11196)
@@ -1534,7 +1534,7 @@
<pathelement path="${seam.dir}/lib/gen/text.jar"/>
<pathelement path="${seam.dir}/lib/dom4j.jar"/>
<pathelement path="${seam.dir}/lib/persistence-api.jar"/>
- <pathelement path="${seam.dir}/lib/hibernate.jar"/>
+ <pathelement path="${seam.dir}/lib/hibernate-core.jar"/>
<pathelement path="${seam.dir}/lib/hibernate-commons-annotations.jar"/>
<pathelement path="${seam.dir}/lib/hibernate-annotations.jar"/>
<pathelement path="${seam.dir}/lib/hibernate-entitymanager.jar"/>
Modified: branches/community/Seam_2_2/seam-gen/icefaces/ide-project-files/eclipse/.classpath
===================================================================
--- branches/community/Seam_2_2/seam-gen/icefaces/ide-project-files/eclipse/.classpath 2009-06-23 16:47:49 UTC (rev 11195)
+++ branches/community/Seam_2_2/seam-gen/icefaces/ide-project-files/eclipse/.classpath 2009-06-23 18:45:38 UTC (rev 11196)
@@ -6,7 +6,7 @@
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="lib" path="bootstrap"/>
<classpathentry kind="lib" path="lib/hibernate-validator.jar"/>
- <classpathentry kind="lib" path="lib/hibernate.jar"/>
+ <classpathentry kind="lib" path="lib/hibernate-core.jar"/>
<classpathentry kind="lib" path="lib/hibernate-annotations.jar"/>
<classpathentry kind="lib" path="lib/hibernate-commons-annotations.jar"/>
<classpathentry kind="lib" path="lib/hibernate-entitymanager.jar"/>
Modified: branches/community/Seam_2_2/seam-gen/icefaces/ide-project-files/idea/module.iml
===================================================================
--- branches/community/Seam_2_2/seam-gen/icefaces/ide-project-files/idea/module.iml 2009-06-23 16:47:49 UTC (rev 11195)
+++ branches/community/Seam_2_2/seam-gen/icefaces/ide-project-files/idea/module.iml 2009-06-23 18:45:38 UTC (rev 11196)
@@ -84,7 +84,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/lib/hibernate.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/hibernate-core.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: branches/community/Seam_2_2/seam-gen/ide-project-files/eclipse/.classpath
===================================================================
--- branches/community/Seam_2_2/seam-gen/ide-project-files/eclipse/.classpath 2009-06-23 16:47:49 UTC (rev 11195)
+++ branches/community/Seam_2_2/seam-gen/ide-project-files/eclipse/.classpath 2009-06-23 18:45:38 UTC (rev 11196)
@@ -6,7 +6,7 @@
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="lib" path="bootstrap"/>
<classpathentry kind="lib" path="lib/hibernate-validator.jar"/>
- <classpathentry kind="lib" path="lib/hibernate.jar"/>
+ <classpathentry kind="lib" path="lib/hibernate-core.jar"/>
<classpathentry kind="lib" path="lib/hibernate-annotations.jar"/>
<classpathentry kind="lib" path="lib/hibernate-commons-annotations.jar"/>
<classpathentry kind="lib" path="lib/hibernate-entitymanager.jar"/>
Modified: branches/community/Seam_2_2/seam-gen/ide-project-files/idea/module.iml
===================================================================
--- branches/community/Seam_2_2/seam-gen/ide-project-files/idea/module.iml 2009-06-23 16:47:49 UTC (rev 11195)
+++ branches/community/Seam_2_2/seam-gen/ide-project-files/idea/module.iml 2009-06-23 18:45:38 UTC (rev 11196)
@@ -79,7 +79,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/lib/hibernate.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/hibernate-core.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: branches/community/Seam_2_2/seam-gen/ide-project-files/netbeans/project.xml
===================================================================
--- branches/community/Seam_2_2/seam-gen/ide-project-files/netbeans/project.xml 2009-06-23 16:47:49 UTC (rev 11195)
+++ branches/community/Seam_2_2/seam-gen/ide-project-files/netbeans/project.xml 2009-06-23 18:45:38 UTC (rev 11196)
@@ -96,18 +96,18 @@
<java-data xmlns="http://www.netbeans.org/ns/freeform-project-java/2">
<compilation-unit>
<package-root>src/main</package-root>
- <classpath mode="compile">lib/hibernate-validator.jar:lib/hibernate.jar:lib/hibernate-annotations.jar:lib/hibernate-commons-annotations.jar:lib/hibernate-entitymanager.jar:lib/jboss-seam.jar:lib/jboss-seam-debug.jar:lib/jboss-cache.jar:lib/jbpm-jpdl.jar:lib/antlr.jar:lib/jgroups.jar:lib/jsf-facelets.jar:lib/jstl.jar:lib/jsf-api.jar:lib/servlet-api.jar:lib/jboss-el.jar:lib/el-api.jar:lib/mvel2.jar:lib/drools-api.jar:lib/drools-core.jar:lib/drools-compiler.jar:lib/janino.jar:lib/antlr-runtime.jar:lib/mail.jar:lib/persistence-api.jar:lib/ejb-api.jar:lib/jsr250-api.jar:lib/jta.jar:lib/core.jar:lib/jboss-embedded-api.jar:lib/hibernate-search.jar:lib/richfaces-api.jar:lib/richfaces-ui.jar:lib/@driverJar@:lib/lucene-core.jar</classpath>
+ <classpath mode="compile">lib/hibernate-validator.jar:lib/hibernate-core.jar:lib/hibernate-annotations.jar:lib/hibernate-commons-annotations.jar:lib/hibernate-entitymanager.jar:lib/jboss-seam.jar:lib/jboss-seam-debug.jar:lib/jboss-cache.jar:lib/jbpm-jpdl.jar:lib/antlr.jar:lib/jgroups.jar:lib/jsf-facelets.jar:lib/jstl.jar:lib/jsf-api.jar:lib/servlet-api.jar:lib/jboss-el.jar:lib/el-api.jar:lib/mvel2.jar:lib/drools-api.jar:lib/drools-core.jar:lib/drools-compiler.jar:lib/janino.jar:lib/antlr-runtime.jar:lib/mail.jar:lib/persistence-api.jar:lib/ejb-api.jar:lib/jsr250-api.jar:lib/jta.jar:lib/core.jar:lib/jboss-embedded-api.jar:lib/hibernate-search.jar:lib/richfaces-api.jar:lib/richfaces-ui.jar:lib/@driverJar@:lib/lucene-core.jar</classpath>
<source-level>1.5</source-level>
</compilation-unit>
<compilation-unit>
<package-root>src/hot</package-root>
- <classpath mode="compile">lib/hibernate-validator.jar:lib/hibernate.jar:lib/hibernate-annotations.jar:lib/hibernate-commons-annotations.jar:lib/hibernate-entitymanager.jar:lib/jboss-seam.jar:lib/jboss-seam-debug.jar:lib/jboss-cache.jar:lib/jbpm-jpdl.jar:lib/antlr.jar:lib/jgroups.jar:lib/jsf-facelets.jar:lib/jstl.jar:lib/jsf-api.jar:lib/servlet-api.jar:lib/jboss-el.jar:lib/el-api.jar:lib/mvel2.jar:lib/drools-api.jar:lib/drools-core.jar:lib/drools-compiler.jar:lib/janino.jar:lib/antlr-runtime.jar:lib/mail.jar:lib/persistence-api.jar:lib/ejb-api.jar:lib/jsr250-api.jar:lib/jta.jar:lib/core.jar:lib/jboss-embedded-api.jar:lib/hibernate-search.jar:lib/richfaces-api.jar:lib/richfaces-ui.jar:lib/@driverJar@:lib/lucene-core.jar</classpath>
+ <classpath mode="compile">lib/hibernate-validator.jar:lib/hibernate-core.jar:lib/hibernate-annotations.jar:lib/hibernate-commons-annotations.jar:lib/hibernate-entitymanager.jar:lib/jboss-seam.jar:lib/jboss-seam-debug.jar:lib/jboss-cache.jar:lib/jbpm-jpdl.jar:lib/antlr.jar:lib/jgroups.jar:lib/jsf-facelets.jar:lib/jstl.jar:lib/jsf-api.jar:lib/servlet-api.jar:lib/jboss-el.jar:lib/el-api.jar:lib/mvel2.jar:lib/drools-api.jar:lib/drools-core.jar:lib/drools-compiler.jar:lib/janino.jar:lib/antlr-runtime.jar:lib/mail.jar:lib/persistence-api.jar:lib/ejb-api.jar:lib/jsr250-api.jar:lib/jta.jar:lib/core.jar:lib/jboss-embedded-api.jar:lib/hibernate-search.jar:lib/richfaces-api.jar:lib/richfaces-ui.jar:lib/@driverJar@:lib/lucene-core.jar</classpath>
<source-level>1.5</source-level>
</compilation-unit>
<compilation-unit>
<package-root>src/test</package-root>
<unit-tests/>
- <classpath mode="compile">bootstrap:lib/hibernate-validator.jar:lib/hibernate.jar:lib/hibernate-annotations.jar:lib/hibernate-commons-annotations.jar:lib/hibernate-entitymanager.jar:lib/jboss-seam.jar:lib/jboss-seam-debug.jar:lib/jboss-cache.jar:lib/jbpm-jpdl.jar:lib/antlr.jar:lib/jgroups.jar:lib/jsf-facelets.jar:lib/jstl.jar:lib/jsf-api.jar:lib/servlet-api.jar:lib/testng.jar:lib/jboss-el.jar:lib/el-api.jar:lib/mvel2.jar:lib/drools-api.jar:lib/drools-core.jar:lib/drools-compiler.jar:lib/janino.jar:lib/antlr-runtime.jar:lib/mail.jar:lib/persistence-api.jar:lib/ejb-api.jar:lib/jsr250-api.jar:lib/jta.jar:lib/core.jar:lib/jboss-embedded-api.jar:lib/hibernate-search.jar:lib/richfaces-api.jar:lib/@driverJar@:lib/lucene-core.jar</classpath>
+ <classpath mode="compile">bootstrap:lib/hibernate-validator.jar:lib/hibernate-core.jar:lib/hibernate-annotations.jar:lib/hibernate-commons-annotations.jar:lib/hibernate-entitymanager.jar:lib/jboss-seam.jar:lib/jboss-seam-debug.jar:lib/jboss-cache.jar:lib/jbpm-jpdl.jar:lib/antlr.jar:lib/jgroups.jar:lib/jsf-facelets.jar:lib/jstl.jar:lib/jsf-api.jar:lib/servlet-api.jar:lib/testng.jar:lib/jboss-el.jar:lib/el-api.jar:lib/mvel2.jar:lib/drools-api.jar:lib/drools-core.jar:lib/drools-compiler.jar:lib/janino.jar:lib/antlr-runtime.jar:lib/mail.jar:lib/persistence-api.jar:lib/ejb-api.jar:lib/jsr250-api.jar:lib/jta.jar:lib/core.jar:lib/jboss-embedded-api.jar:lib/hibernate-search.jar:lib/richfaces-api.jar:lib/@driverJar@:lib/lucene-core.jar</classpath>
<source-level>1.5</source-level>
</compilation-unit>
</java-data>
15 years, 6 months
Seam SVN: r11195 - branches/community/Seam_2_2/doc/Seam_Reference_Guide/it-IT.
by seam-commits@lists.jboss.org
Author: nico.ben
Date: 2009-06-23 12:47:49 -0400 (Tue, 23 Jun 2009)
New Revision: 11195
Modified:
branches/community/Seam_2_2/doc/Seam_Reference_Guide/it-IT/Tutorial.po
Log:
Italian translation
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/it-IT/Tutorial.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/it-IT/Tutorial.po 2009-06-23 15:25:17 UTC (rev 11194)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/it-IT/Tutorial.po 2009-06-23 16:47:49 UTC (rev 11195)
@@ -4177,7 +4177,7 @@
#: Tutorial.xml:1580
#, no-c-format
msgid "The <varname>roomSelection</varname> is outjected to the conversation based on the <varname>@DataModelSelection</varname>. Note that because the nested conversation has an independent context, the <varname>roomSelection</varname> is only set into the new nested conversation. Should the user select a different preference in another window or tab a new nested conversation would be started."
-msgstr "<varname>roomSelection</varname> viene messa in outjection nella conversazione tramite <varname>@DataModelSelection</varname>. Si noti che, poiché la conversazione innestata haun contesto indipendente, <varname>roomSelection</varname> è impostata solo nella nuova conversazione innestata. Dovesse l'utente selezionare un'altra preferenza in un'altra finestra o scheda, una nuova conversazione innestata verrebbe generata."
+msgstr "<varname>roomSelection</varname> viene messa in outjection nella conversazione tramite <varname>@DataModelSelection</varname>. Si noti che, poiché la conversazione innestata ha un contesto indipendente, <varname>roomSelection</varname> è impostata solo nella nuova conversazione innestata. Dovesse l'utente selezionare un'altra preferenza in un'altra finestra o scheda, una nuova conversazione innestata verrebbe generata."
#. Tag: para
#: Tutorial.xml:1587
15 years, 6 months
Seam SVN: r11194 - branches/community/Seam_2_1/seam-gen.
by seam-commits@lists.jboss.org
Author: dan.j.allen
Date: 2009-06-23 11:25:17 -0400 (Tue, 23 Jun 2009)
New Revision: 11194
Modified:
branches/community/Seam_2_1/seam-gen/README
Log:
document add-ivy and add-identity-management
Modified: branches/community/Seam_2_1/seam-gen/README
===================================================================
--- branches/community/Seam_2_1/seam-gen/README 2009-06-23 15:25:01 UTC (rev 11193)
+++ branches/community/Seam_2_1/seam-gen/README 2009-06-23 15:25:17 UTC (rev 11194)
@@ -139,3 +139,23 @@
that allow them to be managed.
Example: seam generate
+
+ add-identity-management
+ Adds Seam's identity management support to an existing project. The
+ command modifies the component descriptor to activate the identity
+ management components, generates annotated User and UserRole entities,
+ and wires the identity management components to these entities. The
+ command also generates an administrative interface to manage the users
+ and roles.
+
+ Example: seam add-identity-management
+
+ add-ivy
+ Alters an existing project to use Ivy to manage the dependencies. The
+ command adds Ivy configuration files and a cooresponding Ant build file.
+ The Ant tasks invoke Ivy to download the dependency sets required to
+ build, test and deploy the application. The step of downloading the
+ dependencies is kept separate from the build life cycle.
+
+ Example: seam add-ivy
+
15 years, 6 months