Seam SVN: r8841 - in branches/Seam_2_0/seam-gen: icefaces/build-scripts and 1 other directory.
by seam-commits@lists.jboss.org
Author: dan.j.allen
Date: 2008-08-28 09:55:16 -0400 (Thu, 28 Aug 2008)
New Revision: 8841
Modified:
branches/Seam_2_0/seam-gen/build-scripts/build-war.xml
branches/Seam_2_0/seam-gen/build-scripts/build.xml
branches/Seam_2_0/seam-gen/icefaces/build-scripts/build-war.xml
branches/Seam_2_0/seam-gen/icefaces/build-scripts/build.xml
Log:
include empty directories when cleaning test-build
Modified: branches/Seam_2_0/seam-gen/build-scripts/build-war.xml
===================================================================
--- branches/Seam_2_0/seam-gen/build-scripts/build-war.xml 2008-08-28 11:49:18 UTC (rev 8840)
+++ branches/Seam_2_0/seam-gen/build-scripts/build-war.xml 2008-08-28 13:55:16 UTC (rev 8841)
@@ -257,7 +257,7 @@
<delete dir="${war.dir}"/>
<delete dir="${basedir}/test-report"/>
<delete dir="${basedir}/test-output"/>
- <delete failonerror="no">
+ <delete failonerror="no" includeemptydirs="true">
<fileset dir="${test.dir}">
<exclude name="**/*.class" if="eclipse.running"/>
</fileset>
Modified: branches/Seam_2_0/seam-gen/build-scripts/build.xml
===================================================================
--- branches/Seam_2_0/seam-gen/build-scripts/build.xml 2008-08-28 11:49:18 UTC (rev 8840)
+++ branches/Seam_2_0/seam-gen/build-scripts/build.xml 2008-08-28 13:55:16 UTC (rev 8841)
@@ -230,7 +230,7 @@
<delete dir="${src.schema.dir}" failonerror="no"/>
<delete dir="${basedir}/test-report"/>
<delete dir="${basedir}/test-output"/>
- <delete failonerror="no">
+ <delete failonerror="no" includeemptydirs="true">
<fileset dir="${test.dir}">
<exclude name="**/*.class" if="eclipse.running"/>
</fileset>
Modified: branches/Seam_2_0/seam-gen/icefaces/build-scripts/build-war.xml
===================================================================
--- branches/Seam_2_0/seam-gen/icefaces/build-scripts/build-war.xml 2008-08-28 11:49:18 UTC (rev 8840)
+++ branches/Seam_2_0/seam-gen/icefaces/build-scripts/build-war.xml 2008-08-28 13:55:16 UTC (rev 8841)
@@ -257,7 +257,7 @@
<delete dir="${war.dir}"/>
<delete dir="${basedir}/test-report"/>
<delete dir="${basedir}/test-output"/>
- <delete failonerror="no">
+ <delete failonerror="no" includeemptydirs="true">
<fileset dir="${test.dir}">
<exclude name="**/*.class" if="eclipse.running"/>
</fileset>
Modified: branches/Seam_2_0/seam-gen/icefaces/build-scripts/build.xml
===================================================================
--- branches/Seam_2_0/seam-gen/icefaces/build-scripts/build.xml 2008-08-28 11:49:18 UTC (rev 8840)
+++ branches/Seam_2_0/seam-gen/icefaces/build-scripts/build.xml 2008-08-28 13:55:16 UTC (rev 8841)
@@ -230,7 +230,7 @@
<delete dir="${src.schema.dir}" failonerror="no"/>
<delete dir="${basedir}/test-report"/>
<delete dir="${basedir}/test-output"/>
- <delete failonerror="no">
+ <delete failonerror="no" includeemptydirs="true">
<fileset dir="${test.dir}">
<exclude name="**/*.class" if="eclipse.running"/>
</fileset>
16 years, 5 months
Seam SVN: r8840 - trunk/src/pdf/org/jboss/seam/pdf/ui.
by seam-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2008-08-28 07:49:18 -0400 (Thu, 28 Aug 2008)
New Revision: 8840
Modified:
trunk/src/pdf/org/jboss/seam/pdf/ui/UIField.java
trunk/src/pdf/org/jboss/seam/pdf/ui/UIForm.java
Log:
JBSEAM-3342 thanks for the patch Scott.
Modified: trunk/src/pdf/org/jboss/seam/pdf/ui/UIField.java
===================================================================
--- trunk/src/pdf/org/jboss/seam/pdf/ui/UIField.java 2008-08-28 11:08:42 UTC (rev 8839)
+++ trunk/src/pdf/org/jboss/seam/pdf/ui/UIField.java 2008-08-28 11:49:18 UTC (rev 8840)
@@ -1,61 +1,61 @@
-package org.jboss.seam.pdf.ui;
-
-import java.io.IOException;
-
-import javax.faces.context.FacesContext;
-
-import org.jboss.seam.contexts.Contexts;
-import org.jboss.seam.core.Interpolator;
-
-import com.lowagie.text.DocumentException;
-import com.lowagie.text.pdf.AcroFields;
-
-public class UIField extends FormComponent
-{
- public static final String COMPONENT_FAMILY = "org.jboss.seam.pdf.UIField";
-
- private String name;
- private String value;
-
- @Override
- public void encodeBegin(FacesContext facesContext) throws IOException
- {
- AcroFields fields = (AcroFields) Contexts.getEventContext().get(FIELDS_KEY);
- try
- {
- fields.setField(getName(), getValue());
- }
- catch (DocumentException e)
- {
- String message = Interpolator.instance().interpolate("Could not set field #0 to #1", getName(), getValue());
- throw new IOException(message, e);
- }
- }
-
- @Override
- public String getFamily()
- {
- return COMPONENT_FAMILY;
- }
-
- public String getName()
- {
- return (String) valueOf("name", name);
- }
-
- public void setName(String name)
- {
- this.name = name;
- }
-
- public String getValue()
- {
- return (String) valueOf("value", value);
- }
-
- public void setValue(String value)
- {
- this.value = value;
- }
-
-}
+package org.jboss.seam.pdf.ui;
+
+import java.io.IOException;
+
+import javax.faces.context.FacesContext;
+
+import org.jboss.seam.contexts.Contexts;
+import org.jboss.seam.core.Interpolator;
+
+import com.lowagie.text.DocumentException;
+import com.lowagie.text.pdf.AcroFields;
+
+public class UIField extends FormComponent
+{
+ public static final String COMPONENT_FAMILY = "org.jboss.seam.pdf.UIField";
+
+ private String name;
+ private String value;
+
+ @Override
+ public void encodeBegin(FacesContext facesContext) throws IOException
+ {
+ AcroFields fields = (AcroFields) Contexts.getEventContext().get(FIELDS_KEY);
+ try
+ {
+ fields.setField(getName(), getValue());
+ }
+ catch (DocumentException e)
+ {
+ String message = Interpolator.instance().interpolate("Could not set field #0 to #1", getName(), getValue());
+ throw new IOException(message);
+ }
+ }
+
+ @Override
+ public String getFamily()
+ {
+ return COMPONENT_FAMILY;
+ }
+
+ public String getName()
+ {
+ return (String) valueOf("name", name);
+ }
+
+ public void setName(String name)
+ {
+ this.name = name;
+ }
+
+ public String getValue()
+ {
+ return (String) valueOf("value", value);
+ }
+
+ public void setValue(String value)
+ {
+ this.value = value;
+ }
+
+}
Modified: trunk/src/pdf/org/jboss/seam/pdf/ui/UIForm.java
===================================================================
--- trunk/src/pdf/org/jboss/seam/pdf/ui/UIForm.java 2008-08-28 11:08:42 UTC (rev 8839)
+++ trunk/src/pdf/org/jboss/seam/pdf/ui/UIForm.java 2008-08-28 11:49:18 UTC (rev 8840)
@@ -1,114 +1,114 @@
-package org.jboss.seam.pdf.ui;
-
-import java.io.ByteArrayOutputStream;
-import java.io.IOException;
-import java.net.URL;
-
-import javax.faces.context.FacesContext;
-
-import org.jboss.seam.contexts.Contexts;
-import org.jboss.seam.core.Manager;
-import org.jboss.seam.document.DocumentData;
-import org.jboss.seam.document.DocumentStore;
-import org.jboss.seam.document.DocumentData.DocumentType;
-import org.jboss.seam.log.Log;
-import org.jboss.seam.log.Logging;
-import org.jboss.seam.navigation.Pages;
-
-import com.lowagie.text.DocumentException;
-import com.lowagie.text.pdf.AcroFields;
-import com.lowagie.text.pdf.PdfReader;
-import com.lowagie.text.pdf.PdfStamper;
-
-public class UIForm extends FormComponent
-{
- public static final String COMPONENT_FAMILY = "org.jboss.seam.pdf.UIForm";
- private static final String CONTENT_TYPE = "application/pdf";
-
- private Log log = Logging.getLog(getClass());
-
- private String URL;
-
- PdfReader reader;
- PdfStamper stamper;
- AcroFields fields;
- ByteArrayOutputStream buffer;
-
- public String getURL()
- {
- return (String) valueOf("URL", URL);
- }
-
- public void setURL(String url)
- {
- URL = url;
- }
-
- @Override
- public void encodeBegin(FacesContext facesContext) throws IOException
- {
- reader = new PdfReader(new URL(getURL()));
- buffer = new ByteArrayOutputStream();
- try
- {
- stamper = new PdfStamper(reader, buffer);
- }
- catch (DocumentException e)
- {
- throw new IOException("Could not create PDF stamper", e);
- }
- fields = stamper.getAcroFields();
- Contexts.getEventContext().set(FIELDS_KEY, fields);
- }
-
- @Override
- public void encodeEnd(FacesContext facesContext) throws IOException
- {
- stamper.setFormFlattening(true);
- try
- {
- stamper.close();
- }
- catch (DocumentException e)
- {
- throw new IOException("Could not flush PDF", e);
- }
-
- String viewId = Pages.getViewId(facesContext);
- String baseName = baseNameForViewId(viewId);
- DocumentStore store = DocumentStore.instance();
- DocumentType documentType = new DocumentData.DocumentType("pdf", "application/pdf");
- DocumentData documentData = new DocumentData(baseName, documentType, buffer.toByteArray());
- String id = store.newId();
- String url = store.preferredUrlForContent(baseName, documentType.getExtension(), id);
- url = Manager.instance().encodeConversationId(url, viewId);
- store.saveData(id, documentData);
- log.info("Redirecting to #0", url);
- facesContext.getExternalContext().redirect(url);
- }
-
-
- public static String baseNameForViewId(String viewId)
- {
- int pos = viewId.lastIndexOf("/");
- if (pos != -1)
- {
- viewId = viewId.substring(pos + 1);
- }
-
- pos = viewId.lastIndexOf(".");
- if (pos != -1)
- {
- viewId = viewId.substring(0, pos);
- }
-
- return viewId;
- }
-
- @Override
- public String getFamily()
- {
- return COMPONENT_FAMILY;
- }
-
-}
+package org.jboss.seam.pdf.ui;
+
+import java.io.ByteArrayOutputStream;
+import java.io.IOException;
+import java.net.URL;
+
+import javax.faces.context.FacesContext;
+
+import org.jboss.seam.contexts.Contexts;
+import org.jboss.seam.core.Manager;
+import org.jboss.seam.document.DocumentData;
+import org.jboss.seam.document.DocumentStore;
+import org.jboss.seam.document.DocumentData.DocumentType;
+import org.jboss.seam.log.Log;
+import org.jboss.seam.log.Logging;
+import org.jboss.seam.navigation.Pages;
+
+import com.lowagie.text.DocumentException;
+import com.lowagie.text.pdf.AcroFields;
+import com.lowagie.text.pdf.PdfReader;
+import com.lowagie.text.pdf.PdfStamper;
+
+public class UIForm extends FormComponent
+{
+ public static final String COMPONENT_FAMILY = "org.jboss.seam.pdf.UIForm";
+ private static final String CONTENT_TYPE = "application/pdf";
+
+ private Log log = Logging.getLog(getClass());
+
+ private String URL;
+
+ PdfReader reader;
+ PdfStamper stamper;
+ AcroFields fields;
+ ByteArrayOutputStream buffer;
+
+ public String getURL()
+ {
+ return (String) valueOf("URL", URL);
+ }
+
+ public void setURL(String url)
+ {
+ URL = url;
+ }
+
+ @Override
+ public void encodeBegin(FacesContext facesContext) throws IOException
+ {
+ reader = new PdfReader(new URL(getURL()));
+ buffer = new ByteArrayOutputStream();
+ try
+ {
+ stamper = new PdfStamper(reader, buffer);
+ }
+ catch (DocumentException e)
+ {
+ throw new IOException("Could not create PDF stamper");
+ }
+ fields = stamper.getAcroFields();
+ Contexts.getEventContext().set(FIELDS_KEY, fields);
+ }
+
+ @Override
+ public void encodeEnd(FacesContext facesContext) throws IOException
+ {
+ stamper.setFormFlattening(true);
+ try
+ {
+ stamper.close();
+ }
+ catch (DocumentException e)
+ {
+ throw new IOException("Could not flush PDF");
+ }
+
+ String viewId = Pages.getViewId(facesContext);
+ String baseName = baseNameForViewId(viewId);
+ DocumentStore store = DocumentStore.instance();
+ DocumentType documentType = new DocumentData.DocumentType("pdf", "application/pdf");
+ DocumentData documentData = new DocumentData(baseName, documentType, buffer.toByteArray());
+ String id = store.newId();
+ String url = store.preferredUrlForContent(baseName, documentType.getExtension(), id);
+ url = Manager.instance().encodeConversationId(url, viewId);
+ store.saveData(id, documentData);
+ log.info("Redirecting to #0", url);
+ facesContext.getExternalContext().redirect(url);
+ }
+
+
+ public static String baseNameForViewId(String viewId)
+ {
+ int pos = viewId.lastIndexOf("/");
+ if (pos != -1)
+ {
+ viewId = viewId.substring(pos + 1);
+ }
+
+ pos = viewId.lastIndexOf(".");
+ if (pos != -1)
+ {
+ viewId = viewId.substring(0, pos);
+ }
+
+ return viewId;
+ }
+
+ @Override
+ public String getFamily()
+ {
+ return COMPONENT_FAMILY;
+ }
+
+}
16 years, 5 months
Seam SVN: r8839 - in branches/Seam_2_0_FP: seam-gen and 2 other directories.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2008-08-28 07:08:42 -0400 (Thu, 28 Aug 2008)
New Revision: 8839
Modified:
branches/Seam_2_0_FP/examples/build.xml
branches/Seam_2_0_FP/seam-gen/build-scripts/build-war.xml
branches/Seam_2_0_FP/seam-gen/build-scripts/build.xml
branches/Seam_2_0_FP/seam-gen/build.xml
branches/Seam_2_0_FP/seam-gen/icefaces/build-scripts/build-war.xml
branches/Seam_2_0_FP/seam-gen/icefaces/build-scripts/build.xml
Log:
JBPAPP-1108
Modified: branches/Seam_2_0_FP/examples/build.xml
===================================================================
--- branches/Seam_2_0_FP/examples/build.xml 2008-08-28 08:52:19 UTC (rev 8838)
+++ branches/Seam_2_0_FP/examples/build.xml 2008-08-28 11:08:42 UTC (rev 8839)
@@ -30,9 +30,9 @@
<property name="example.ds" value="${example.name}-ds.xml" />
<!-- Deployment directories -->
- <property name="deploy.dir" value="${jboss.home}/server/default/deploy" />
+ <property name="deploy.dir" value="${jboss.home}/server/production/deploy" />
<property name="tomcat.deploy.dir" value="${tomcat.home}/webapps" />
- <property name="conf.dir" value="${jboss.home}/server/default/conf" />
+ <property name="conf.dir" value="${jboss.home}/server/production/conf" />
<!-- Library directories -->
<property name="lib.dir" value="${seam.dir}/lib" />
Modified: branches/Seam_2_0_FP/seam-gen/build-scripts/build-war.xml
===================================================================
--- branches/Seam_2_0_FP/seam-gen/build-scripts/build-war.xml 2008-08-28 08:52:19 UTC (rev 8838)
+++ branches/Seam_2_0_FP/seam-gen/build-scripts/build-war.xml 2008-08-28 11:08:42 UTC (rev 8839)
@@ -21,7 +21,7 @@
<property name="classes.action.dir" value="${war.dir}/${action.dir}" />
<property name="test.dir" value="test-build" />
<property name="bootstrap.dir" value="${basedir}/bootstrap" />
- <property name="deploy.dir" value="${jboss.home}/server/default/deploy" />
+ <property name="deploy.dir" value="${jboss.home}/server/production/deploy" />
<property name="war.deploy.dir" value="${deploy.dir}/${project.name}.war" />
<property name="testng.jar" value="${basedir}/lib/testng.jar" />
<property name="javac.debug" value="true" />
Modified: branches/Seam_2_0_FP/seam-gen/build-scripts/build.xml
===================================================================
--- branches/Seam_2_0_FP/seam-gen/build-scripts/build.xml 2008-08-28 08:52:19 UTC (rev 8838)
+++ branches/Seam_2_0_FP/seam-gen/build-scripts/build.xml 2008-08-28 11:08:42 UTC (rev 8839)
@@ -20,7 +20,7 @@
<property name="war.dir" value="exploded-archives/${project.name}.war" />
<property name="test.dir" value="test-build" />
<property name="bootstrap.dir" value="${basedir}/bootstrap" />
- <property name="deploy.dir" value="${jboss.home}/server/default/deploy" />
+ <property name="deploy.dir" value="${jboss.home}/server/production/deploy" />
<property name="ear.deploy.dir" value="${deploy.dir}/${project.name}.ear" />
<property name="jar.deploy.dir" value="${ear.deploy.dir}/${project.name}.jar" />
<property name="war.deploy.dir" value="${ear.deploy.dir}/${project.name}.war" />
Modified: branches/Seam_2_0_FP/seam-gen/build.xml
===================================================================
--- branches/Seam_2_0_FP/seam-gen/build.xml 2008-08-28 08:52:19 UTC (rev 8838)
+++ branches/Seam_2_0_FP/seam-gen/build.xml 2008-08-28 11:08:42 UTC (rev 8839)
@@ -422,7 +422,7 @@
</propertyfile>
<echo message="Installing JDBC driver jar to JBoss server"/>
- <copy file="${driver.jar.new}" todir="${jboss.home.new}/server/default/lib"/>
+ <copy file="${driver.jar.new}" todir="${jboss.home.new}/server/production/lib"/>
<echo message="Type 'seam create-project' to create the new project"/>
</target>
Modified: branches/Seam_2_0_FP/seam-gen/icefaces/build-scripts/build-war.xml
===================================================================
--- branches/Seam_2_0_FP/seam-gen/icefaces/build-scripts/build-war.xml 2008-08-28 08:52:19 UTC (rev 8838)
+++ branches/Seam_2_0_FP/seam-gen/icefaces/build-scripts/build-war.xml 2008-08-28 11:08:42 UTC (rev 8839)
@@ -21,7 +21,7 @@
<property name="classes.action.dir" value="${war.dir}/${action.dir}" />
<property name="test.dir" value="test-build" />
<property name="bootstrap.dir" value="${basedir}/bootstrap" />
- <property name="deploy.dir" value="${jboss.home}/server/default/deploy" />
+ <property name="deploy.dir" value="${jboss.home}/server/production/deploy" />
<property name="war.deploy.dir" value="${deploy.dir}/${project.name}.war" />
<property name="testng.jar" value="${basedir}/lib/testng.jar" />
<property name="javac.debug" value="true" />
@@ -345,11 +345,11 @@
</target>
<target name="purge" depends="undeploy" description="clean out jboss deployments of crashing applications">
- <delete dir="${jboss.home}/server/default/tmp/deploy" />
- <mkdir dir="${jboss.home}/server/default/tmp/deploy/" />
- <delete dir="${jboss.home}/server/default/tmp/sessions" />
- <mkdir dir="${jboss.home}/server/default/tmp/sessions" />
- <delete dir="${jboss.home}/server/default/work/jboss.web/localhost/${project.name}" />
+ <delete dir="${jboss.home}/server/production/tmp/deploy" />
+ <mkdir dir="${jboss.home}/server/production/tmp/deploy/" />
+ <delete dir="${jboss.home}/server/production/tmp/sessions" />
+ <mkdir dir="${jboss.home}/server/production/tmp/sessions" />
+ <delete dir="${jboss.home}/server/production/work/jboss.web/localhost/${project.name}" />
</target>
</project>
Modified: branches/Seam_2_0_FP/seam-gen/icefaces/build-scripts/build.xml
===================================================================
--- branches/Seam_2_0_FP/seam-gen/icefaces/build-scripts/build.xml 2008-08-28 08:52:19 UTC (rev 8838)
+++ branches/Seam_2_0_FP/seam-gen/icefaces/build-scripts/build.xml 2008-08-28 11:08:42 UTC (rev 8839)
@@ -20,7 +20,7 @@
<property name="war.dir" value="exploded-archives/${project.name}.war" />
<property name="test.dir" value="test-build" />
<property name="bootstrap.dir" value="${basedir}/bootstrap" />
- <property name="deploy.dir" value="${jboss.home}/server/default/deploy" />
+ <property name="deploy.dir" value="${jboss.home}/server/production/deploy" />
<property name="ear.deploy.dir" value="${deploy.dir}/${project.name}.ear" />
<property name="jar.deploy.dir" value="${ear.deploy.dir}/${project.name}.jar" />
<property name="war.deploy.dir" value="${ear.deploy.dir}/${project.name}.war" />
@@ -330,11 +330,11 @@
</target>
<target name="purge" depends="undeploy" description="clean out jboss deployments of crashing applications">
- <delete dir="${jboss.home}/server/default/tmp/deploy" />
- <mkdir dir="${jboss.home}/server/default/tmp/deploy/" />
- <delete dir="${jboss.home}/server/default/tmp/sessions" />
- <mkdir dir="${jboss.home}/server/default/tmp/sessions" />
- <delete dir="${jboss.home}/server/default/work/jboss.web/localhost/${project.name}" />
+ <delete dir="${jboss.home}/server/production/tmp/deploy" />
+ <mkdir dir="${jboss.home}/server/production/tmp/deploy/" />
+ <delete dir="${jboss.home}/server/production/tmp/sessions" />
+ <mkdir dir="${jboss.home}/server/production/tmp/sessions" />
+ <delete dir="${jboss.home}/server/production/work/jboss.web/localhost/${project.name}" />
</target>
</project>
16 years, 5 months
Seam SVN: r8838 - branches/Seam_2_0_FP/build.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2008-08-28 04:52:19 -0400 (Thu, 28 Aug 2008)
New Revision: 8838
Modified:
branches/Seam_2_0_FP/build/gen.pom.xml
branches/Seam_2_0_FP/build/root.pom.xml
Log:
JBPAPP-1143
Modified: branches/Seam_2_0_FP/build/gen.pom.xml
===================================================================
--- branches/Seam_2_0_FP/build/gen.pom.xml 2008-08-28 08:48:00 UTC (rev 8837)
+++ branches/Seam_2_0_FP/build/gen.pom.xml 2008-08-28 08:52:19 UTC (rev 8838)
@@ -62,6 +62,11 @@
<artifactId>text</artifactId>
<scope>runtime</scope>
</dependency>
+
+ <dependency>
+ <groupId>asm</groupId>
+ <artifactId>asm</artifactId>
+ </dependency>
</dependencies>
Modified: branches/Seam_2_0_FP/build/root.pom.xml
===================================================================
--- branches/Seam_2_0_FP/build/root.pom.xml 2008-08-28 08:48:00 UTC (rev 8837)
+++ branches/Seam_2_0_FP/build/root.pom.xml 2008-08-28 08:52:19 UTC (rev 8838)
@@ -282,6 +282,13 @@
</exclusion>
</exclusions>
</dependency>
+
+ <dependency>
+ <groupId>asm</groupId>
+ <artifactId>asm</artifactId>
+ <version>1.5.3</version>
+ <scope>runtime</scope>
+ </dependency>
<dependency>
<groupId>org.hibernate</groupId>
16 years, 5 months
Seam SVN: r8837 - in branches/Seam_2_0_FP/seam-gen: build-scripts and 2 other directories.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2008-08-28 04:48:00 -0400 (Thu, 28 Aug 2008)
New Revision: 8837
Modified:
branches/Seam_2_0_FP/seam-gen/build-scripts/.classpath
branches/Seam_2_0_FP/seam-gen/build.xml
branches/Seam_2_0_FP/seam-gen/icefaces/build-scripts/.classpath
branches/Seam_2_0_FP/seam-gen/nbproject/project.xml
Log:
JBPAPP-1142
Modified: branches/Seam_2_0_FP/seam-gen/build-scripts/.classpath
===================================================================
--- branches/Seam_2_0_FP/seam-gen/build-scripts/.classpath 2008-08-28 07:29:54 UTC (rev 8836)
+++ branches/Seam_2_0_FP/seam-gen/build-scripts/.classpath 2008-08-28 08:48:00 UTC (rev 8837)
@@ -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/hibernate3.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/Seam_2_0_FP/seam-gen/build.xml
===================================================================
--- branches/Seam_2_0_FP/seam-gen/build.xml 2008-08-28 07:29:54 UTC (rev 8836)
+++ branches/Seam_2_0_FP/seam-gen/build.xml 2008-08-28 08:48:00 UTC (rev 8837)
@@ -963,7 +963,7 @@
<pathelement path="../lib/text.jar"/>
<pathelement path="../lib/dom4j.jar" />
<pathelement path="../lib/persistence-api.jar" />
- <pathelement path="../lib/hibernate.jar" />
+ <pathelement path="../lib/hibernate3.jar" />
<pathelement path="../lib/hibernate-commons-annotations.jar" />
<pathelement path="../lib/hibernate-annotations.jar" />
<pathelement path="../lib/hibernate-entitymanager.jar" />
Modified: branches/Seam_2_0_FP/seam-gen/icefaces/build-scripts/.classpath
===================================================================
--- branches/Seam_2_0_FP/seam-gen/icefaces/build-scripts/.classpath 2008-08-28 07:29:54 UTC (rev 8836)
+++ branches/Seam_2_0_FP/seam-gen/icefaces/build-scripts/.classpath 2008-08-28 08:48:00 UTC (rev 8837)
@@ -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/hibernate3.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/Seam_2_0_FP/seam-gen/nbproject/project.xml
===================================================================
--- branches/Seam_2_0_FP/seam-gen/nbproject/project.xml 2008-08-28 07:29:54 UTC (rev 8836)
+++ branches/Seam_2_0_FP/seam-gen/nbproject/project.xml 2008-08-28 08:48:00 UTC (rev 8837)
@@ -96,18 +96,18 @@
<java-data xmlns="http://www.netbeans.org/ns/freeform-project-java/2">
<compilation-unit>
<package-root>src/model</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/mvel14.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/hibernate3.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/mvel14.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/action</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/mvel14.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/hibernate3.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/mvel14.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/mvel14.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/hibernate3.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/mvel14.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>
16 years, 5 months
Seam SVN: r8836 - branches/Seam_2_0_FP.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2008-08-28 03:29:54 -0400 (Thu, 28 Aug 2008)
New Revision: 8836
Modified:
branches/Seam_2_0_FP/build.xml
Log:
JBPAPP-1098
Modified: branches/Seam_2_0_FP/build.xml
===================================================================
--- branches/Seam_2_0_FP/build.xml 2008-08-28 07:25:12 UTC (rev 8835)
+++ branches/Seam_2_0_FP/build.xml 2008-08-28 07:29:54 UTC (rev 8836)
@@ -743,6 +743,11 @@
<manifest>
<attribute name="Seam-Version" value="${complete.version}" />
<attribute name="Implementation-Version" value="${complete.version}" />
+ <attribute name="Specification-Version" value="${complete.version}" />
+ <attribute name="Specification-Title" value="@{module}" />
+ <attribute name="Specification-Vendor" value="JBoss" />
+ <attribute name="Implementation-Title" value="@{module}" />
+ <attribute name="Implementation-Vendor" value="JBoss" />
</manifest>
</jar>
<jar jarfile="@{outputdir}/src/(a){module}-sources.jar" basedir="@{srcdir}">
@@ -753,6 +758,11 @@
<manifest>
<attribute name="Seam-Version" value="${complete.version}" />
<attribute name="Implementation-Version" value="${complete.version}" />
+ <attribute name="Specification-Version" value="${complete.version}" />
+ <attribute name="Specification-Title" value="@{module}" />
+ <attribute name="Specification-Vendor" value="JBoss" />
+ <attribute name="Implementation-Title" value="@{module}" />
+ <attribute name="Implementation-Vendor" value="JBoss" />
</manifest>
</jar>
<install jar="@{outputdir}/(a){module}.jar" pom="@{pom}">
16 years, 5 months
Seam SVN: r8835 - in branches/Seam_2_0_FP/build: embedded and 1 other directories.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2008-08-28 03:25:12 -0400 (Thu, 28 Aug 2008)
New Revision: 8835
Modified:
branches/Seam_2_0_FP/build/build.properties
branches/Seam_2_0_FP/build/embedded/hibernate-all.pom.xml
branches/Seam_2_0_FP/build/embedded/jboss-embedded-all.pom.xml
branches/Seam_2_0_FP/build/embedded/jboss-embedded.pom.xml
branches/Seam_2_0_FP/build/embedded/shaded/hibernate-all.pom.xml
branches/Seam_2_0_FP/build/embedded/shaded/jboss-embedded-all.pom.xml
branches/Seam_2_0_FP/build/embedded/shaded/jboss-embedded.pom.xml
branches/Seam_2_0_FP/build/embedded/shaded/thirdparty-all.pom.xml
branches/Seam_2_0_FP/build/embedded/thirdparty-all.pom.xml
Log:
JBPAPP-1131 - updating pom files for jboss-embedded upgrade
Modified: branches/Seam_2_0_FP/build/build.properties
===================================================================
--- branches/Seam_2_0_FP/build/build.properties 2008-08-28 04:01:15 UTC (rev 8834)
+++ branches/Seam_2_0_FP/build/build.properties 2008-08-28 07:25:12 UTC (rev 8835)
@@ -1,6 +1,7 @@
-offline.repository.jboss.org /Users/pmuir/workspace/repository.jboss.org/maven2
-embedded.poms.dir /Users/pmuir/workspace/seam/build/embedded
-embedded.dir /Users/pmuir/workspace/jbossas/embedded
+offline.repository.jboss.org /home/mnovotny/projects/jboss-maven-repo
+embedded.poms.dir /home/mnovotny/workspaces/jboss/jboss-seam-fp/build/embedded
+#embedded.dir /home/mnovotny/tmp/export/EMBEDDED_JBOSS_BETA3_SP1/embedded
+embedded.dir /home/mnovotny/workspaces/jbossembedded/EMBEDDED_JBOSS_BETA3/embedded
#embedded.jars.dir /Users/pmuir/tmp/embedded-jboss-beta3/lib
-#�embedded.dist.zip /Users/pmuir/Desktop/downloads/embedded-jboss-beta3.zip
-embedded.version beta3
\ No newline at end of file
+#embedded.dist.zip /Users/pmuir/Desktop/downloads/embedded-jboss-beta3.zip
+embedded.version beta3.SP2
\ No newline at end of file
Modified: branches/Seam_2_0_FP/build/embedded/hibernate-all.pom.xml
===================================================================
--- branches/Seam_2_0_FP/build/embedded/hibernate-all.pom.xml 2008-08-28 04:01:15 UTC (rev 8834)
+++ branches/Seam_2_0_FP/build/embedded/hibernate-all.pom.xml 2008-08-28 07:25:12 UTC (rev 8835)
@@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.embedded</groupId>
<artifactId>hibernate-all</artifactId>
- <version>beta3.SP1</version>
+ <version>beta3.SP2</version>
<description>The hibernate-all.jar distributed with JBoss Embedded. This contains Hibernate
for running in an EJB3 enviroment (Hibernate, Hibernate Annotations, Hibernate EntityManager, Hibernate Validator, Hibernate Commons Annotations)</description>
</project>
Modified: branches/Seam_2_0_FP/build/embedded/jboss-embedded-all.pom.xml
===================================================================
--- branches/Seam_2_0_FP/build/embedded/jboss-embedded-all.pom.xml 2008-08-28 04:01:15 UTC (rev 8834)
+++ branches/Seam_2_0_FP/build/embedded/jboss-embedded-all.pom.xml 2008-08-28 07:25:12 UTC (rev 8835)
@@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.embedded</groupId>
<artifactId>jboss-embedded-all</artifactId>
- <version>beta3.SP1</version>
+ <version>beta3.SP2</version>
<description>The jboss-embedded-all.jar distributed with JBoss Embedded. This contains all depdencies
from JBoss AS that originate in JBoss. This jar has has the org.jboss.embedded packages split out.</description>
@@ -13,7 +13,7 @@
<dependency>
<groupId>org.jboss.embedded</groupId>
<artifactId>jboss-embedded</artifactId>
- <version>beta3.SP1</version>
+ <version>beta3.SP2</version>
<exclusions>
<exclusion></exclusion>
</exclusions>
Modified: branches/Seam_2_0_FP/build/embedded/jboss-embedded.pom.xml
===================================================================
--- branches/Seam_2_0_FP/build/embedded/jboss-embedded.pom.xml 2008-08-28 04:01:15 UTC (rev 8834)
+++ branches/Seam_2_0_FP/build/embedded/jboss-embedded.pom.xml 2008-08-28 07:25:12 UTC (rev 8835)
@@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.embedded</groupId>
<artifactId>jboss-embedded</artifactId>
- <version>beta3.SP1</version>
+ <version>beta3.SP2</version>
<description>This jar has the org.jboss.embedded packages split out from jboss-embedded-all.</description>
<dependencies>
Modified: branches/Seam_2_0_FP/build/embedded/shaded/hibernate-all.pom.xml
===================================================================
--- branches/Seam_2_0_FP/build/embedded/shaded/hibernate-all.pom.xml 2008-08-28 04:01:15 UTC (rev 8834)
+++ branches/Seam_2_0_FP/build/embedded/shaded/hibernate-all.pom.xml 2008-08-28 07:25:12 UTC (rev 8835)
@@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.seam.embedded</groupId>
<artifactId>hibernate-all</artifactId>
- <version>beta3.SP1</version>
+ <version>beta3.SP2</version>
<description>The hibernate-all.jar distributed with JBoss Embedded. This contains Hibernate
for running in an EJB3 enviroment (Hibernate, Hibernate Annotations, Hibernate EntityManager, Hibernate Validator, Hibernate Commons Annotations) and Hibernate Search (specific to this seam version of hibernate-all)</description>
</project>
Modified: branches/Seam_2_0_FP/build/embedded/shaded/jboss-embedded-all.pom.xml
===================================================================
--- branches/Seam_2_0_FP/build/embedded/shaded/jboss-embedded-all.pom.xml 2008-08-28 04:01:15 UTC (rev 8834)
+++ branches/Seam_2_0_FP/build/embedded/shaded/jboss-embedded-all.pom.xml 2008-08-28 07:25:12 UTC (rev 8835)
@@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.seam.embedded</groupId>
<artifactId>jboss-embedded-all</artifactId>
- <version>beta3.SP1</version>
+ <version>beta3.SP2</version>
<description>The jboss-embedded-all.jar distributed with JBoss Embedded. This contains all depdencies
from JBoss AS that originate in JBoss. This jar has has the org.jboss.embedded packages split out.</description>
@@ -13,7 +13,7 @@
<dependency>
<groupId>org.jboss.seam.embedded</groupId>
<artifactId>jboss-embedded-api</artifactId>
- <version>beta3.SP1</version>
+ <version>beta3.SP2</version>
<exclusions>
<exclusion></exclusion>
</exclusions>
Modified: branches/Seam_2_0_FP/build/embedded/shaded/jboss-embedded.pom.xml
===================================================================
--- branches/Seam_2_0_FP/build/embedded/shaded/jboss-embedded.pom.xml 2008-08-28 04:01:15 UTC (rev 8834)
+++ branches/Seam_2_0_FP/build/embedded/shaded/jboss-embedded.pom.xml 2008-08-28 07:25:12 UTC (rev 8835)
@@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.seam.embedded</groupId>
<artifactId>jboss-embedded-api</artifactId>
- <version>beta3.SP1</version>
+ <version>beta3.SP2</version>
<description>This jar has the org.jboss.embedded packages split out from jboss-embedded-all. This Seam specific version simply keeps the old jboss-embedded-api name for tooling compatibility</description>
<dependencies>
Modified: branches/Seam_2_0_FP/build/embedded/shaded/thirdparty-all.pom.xml
===================================================================
--- branches/Seam_2_0_FP/build/embedded/shaded/thirdparty-all.pom.xml 2008-08-28 04:01:15 UTC (rev 8834)
+++ branches/Seam_2_0_FP/build/embedded/shaded/thirdparty-all.pom.xml 2008-08-28 07:25:12 UTC (rev 8835)
@@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.seam.embedded</groupId>
<artifactId>thirdparty-all</artifactId>
- <version>beta3.SP1</version>
+ <version>beta3.SP2</version>
<description>The thirdparty-all.jar distributed with JBoss Embedded. This contains thirdparty
dependencies distributed with JBoss AS. This Seam version also includes lucene, a dependency
of hibernate search</description>
Modified: branches/Seam_2_0_FP/build/embedded/thirdparty-all.pom.xml
===================================================================
--- branches/Seam_2_0_FP/build/embedded/thirdparty-all.pom.xml 2008-08-28 04:01:15 UTC (rev 8834)
+++ branches/Seam_2_0_FP/build/embedded/thirdparty-all.pom.xml 2008-08-28 07:25:12 UTC (rev 8835)
@@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.embedded</groupId>
<artifactId>thirdparty-all</artifactId>
- <version>beta3.SP1</version>
+ <version>beta3.SP2</version>
<description>The thirdparty-all.jar distributed with JBoss Embedded. This contains thirdparty
dependencies distributed with JBoss AS.</description>
</project>
16 years, 5 months
Seam SVN: r8834 - trunk/src/main/org/jboss/seam/security.
by seam-commits@lists.jboss.org
Author: shane.bryzak(a)jboss.com
Date: 2008-08-28 00:01:15 -0400 (Thu, 28 Aug 2008)
New Revision: 8834
Modified:
trunk/src/main/org/jboss/seam/security/Identity.java
Log:
postAuthenticate() should be protected
Modified: trunk/src/main/org/jboss/seam/security/Identity.java
===================================================================
--- trunk/src/main/org/jboss/seam/security/Identity.java 2008-08-28 03:53:02 UTC (rev 8833)
+++ trunk/src/main/org/jboss/seam/security/Identity.java 2008-08-28 04:01:15 UTC (rev 8834)
@@ -341,7 +341,7 @@
* authenticated user. This method may be overridden by a subclass if
* different post-authentication logic should occur.
*/
- void postAuthenticate()
+ protected void postAuthenticate()
{
// Populate the working memory with the user's principals
for ( Principal p : getSubject().getPrincipals() )
16 years, 5 months
Seam SVN: r8833 - trunk/src/main/org/jboss/seam.
by seam-commits@lists.jboss.org
Author: shane.bryzak(a)jboss.com
Date: 2008-08-27 23:53:02 -0400 (Wed, 27 Aug 2008)
New Revision: 8833
Modified:
trunk/src/main/org/jboss/seam/security-2.1.xsd
Log:
JBSEAM-3344
Modified: trunk/src/main/org/jboss/seam/security-2.1.xsd
===================================================================
--- trunk/src/main/org/jboss/seam/security-2.1.xsd 2008-08-27 21:04:22 UTC (rev 8832)
+++ trunk/src/main/org/jboss/seam/security-2.1.xsd 2008-08-28 03:53:02 UTC (rev 8833)
@@ -71,6 +71,7 @@
<xs:attributeGroup name="attlist.ldap-identity-store">
<xs:attribute name="server-address" type="components:string"/>
+ <xs:attribute name="server-port" type="components:string"/>
<xs:attribute name="bind-DN" type="components:string"/>
<xs:attribute name="bind-credentials" type="components:string"/>
<xs:attribute name="user-DN-prefix" type="components:string"/>
16 years, 5 months
Seam SVN: r8832 - branches/Seam_2_0_FP/build.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2008-08-27 17:04:22 -0400 (Wed, 27 Aug 2008)
New Revision: 8832
Modified:
branches/Seam_2_0_FP/build/common.build.xml
branches/Seam_2_0_FP/build/root.pom.xml
Log:
JBPAPP-1131
Modified: branches/Seam_2_0_FP/build/common.build.xml
===================================================================
--- branches/Seam_2_0_FP/build/common.build.xml 2008-08-27 20:28:45 UTC (rev 8831)
+++ branches/Seam_2_0_FP/build/common.build.xml 2008-08-27 21:04:22 UTC (rev 8832)
@@ -23,7 +23,7 @@
<property name="maven.settings.xml" location="${build.dir}/settings.xml" />
- <property name="embedded.version" value="beta3.SP1" />
+ <property name="embedded.version" value="beta3.SP2" />
<import file="${build.dir}/utilities.build.xml" />
Modified: branches/Seam_2_0_FP/build/root.pom.xml
===================================================================
--- branches/Seam_2_0_FP/build/root.pom.xml 2008-08-27 20:28:45 UTC (rev 8831)
+++ branches/Seam_2_0_FP/build/root.pom.xml 2008-08-27 21:04:22 UTC (rev 8832)
@@ -334,7 +334,7 @@
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-search</artifactId>
- <version>3.0.0.GA</version>
+ <version>3.0.1.GA</version>
<exclusions>
<exclusion>
<groupId>org.hibernate</groupId>
@@ -664,7 +664,7 @@
<dependency>
<groupId>org.jboss.seam.embedded</groupId>
<artifactId>jboss-embedded-api</artifactId>
- <version>beta3.SP1</version>
+ <version>beta3.SP2</version>
</dependency>
<dependency>
16 years, 5 months