Seam SVN: r12620 - modules/servlet/trunk/impl/src/main/java/org/jboss/seam/servlet/beanManager.
by seam-commits@lists.jboss.org
Author: nickarls
Date: 2010-04-23 17:45:10 -0400 (Fri, 23 Apr 2010)
New Revision: 12620
Modified:
modules/servlet/trunk/impl/src/main/java/org/jboss/seam/servlet/beanManager/ServletContextBeanManagerProvider.java
Log:
Drop static provider list from BeanManagerAware due to possible classloader issues
Change precedences to favor ServletContext
Document behaviour of equal precedence
Modified: modules/servlet/trunk/impl/src/main/java/org/jboss/seam/servlet/beanManager/ServletContextBeanManagerProvider.java
===================================================================
--- modules/servlet/trunk/impl/src/main/java/org/jboss/seam/servlet/beanManager/ServletContextBeanManagerProvider.java 2010-04-23 19:29:49 UTC (rev 12619)
+++ modules/servlet/trunk/impl/src/main/java/org/jboss/seam/servlet/beanManager/ServletContextBeanManagerProvider.java 2010-04-23 21:45:10 UTC (rev 12620)
@@ -42,7 +42,7 @@
public int getPrecedence()
{
- return 0;
+ return 20;
}
}
14 years, 8 months
Seam SVN: r12619 - in modules/faces/trunk: api and 3 other directories.
by seam-commits@lists.jboss.org
Author: lincolnthree
Date: 2010-04-23 15:29:49 -0400 (Fri, 23 Apr 2010)
New Revision: 12619
Modified:
modules/faces/trunk/api/
modules/faces/trunk/impl/
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/environment/SeamApplicationWrapper.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/util/BeanManagerUtils.java
modules/faces/trunk/pom.xml
Log:
* Updated ApplicationWrapper to properly scope Converters/Validators
Property changes on: modules/faces/trunk/api
___________________________________________________________________
Name: svn:ignore
- .settings
build
target
.classpath
.project
+ .settings
build
target
.classpath
.project
bin
Property changes on: modules/faces/trunk/impl
___________________________________________________________________
Name: svn:ignore
- .settings
target
.classpath
.project
+ .settings
target
.classpath
.project
bin
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/environment/SeamApplicationWrapper.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/environment/SeamApplicationWrapper.java 2010-04-23 19:27:28 UTC (rev 12618)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/environment/SeamApplicationWrapper.java 2010-04-23 19:29:49 UTC (rev 12619)
@@ -50,6 +50,12 @@
@Inject
BeanManagerUtils managerUtils;
+ @Override
+ public Application getWrapped()
+ {
+ return parent;
+ }
+
public void installWrapper(@Observes final PostConstructApplicationEvent event)
{
ApplicationFactory factory = (ApplicationFactory) FactoryFinder.getFactory(FactoryFinder.APPLICATION_FACTORY);
@@ -61,10 +67,7 @@
public Converter createConverter(final Class<?> targetClass)
{
Converter result = parent.createConverter(targetClass);
- if (result != null)
- {
- result = managerUtils.getContextualInstance(result.getClass());
- }
+ result = attemptExtension(result);
return result;
}
@@ -72,10 +75,7 @@
public Converter createConverter(final String converterId)
{
Converter result = parent.createConverter(converterId);
- if (result != null)
- {
- result = managerUtils.getContextualInstance(result.getClass());
- }
+ result = attemptExtension(result);
return result;
}
@@ -83,16 +83,24 @@
public Validator createValidator(final String validatorId)
{
Validator result = parent.createValidator(validatorId);
+ result = attemptExtension(result);
+ return result;
+ }
+
+ @SuppressWarnings("unchecked")
+ private <T> T attemptExtension(T result)
+ {
if (result != null)
{
- result = managerUtils.getContextualInstance(result.getClass());
+ if (managerUtils.isDependentScoped(result.getClass()))
+ {
+ managerUtils.injectNonContextualInstance(result);
+ }
+ else
+ {
+ result = (T) managerUtils.getContextualInstance(result.getClass());
+ }
}
return result;
}
-
- @Override
- public Application getWrapped()
- {
- return parent;
- }
}
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/util/BeanManagerUtils.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/util/BeanManagerUtils.java 2010-04-23 19:27:28 UTC (rev 12618)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/util/BeanManagerUtils.java 2010-04-23 19:29:49 UTC (rev 12619)
@@ -25,6 +25,7 @@
import java.util.ArrayList;
import java.util.List;
+import javax.enterprise.context.Dependent;
import javax.enterprise.context.spi.CreationalContext;
import javax.enterprise.inject.spi.Bean;
import javax.enterprise.inject.spi.BeanManager;
@@ -55,6 +56,17 @@
injectionTarget.inject(instance, creationalContext);
}
+ @SuppressWarnings("unchecked")
+ public <T> boolean isDependentScoped(final Class<T> type)
+ {
+ Bean<T> bean = (Bean<T>) manager.resolve(manager.getBeans(type));
+ if (bean != null)
+ {
+ return Dependent.class.equals(bean.getScope());
+ }
+ return false;
+ }
+
/**
* Get a single CDI managed instance of a specific class. Return only the
* first result if multiple beans are available.
Modified: modules/faces/trunk/pom.xml
===================================================================
--- modules/faces/trunk/pom.xml 2010-04-23 19:27:28 UTC (rev 12618)
+++ modules/faces/trunk/pom.xml 2010-04-23 19:29:49 UTC (rev 12619)
@@ -6,7 +6,6 @@
<artifactId>weld-parent</artifactId>
<version>9</version>
</parent>
- -->
<artifactId>seam-faces-parent</artifactId>
<groupId>org.jboss.seam.faces</groupId>
14 years, 8 months
Seam SVN: r12617 - modules/faces/trunk.
by seam-commits@lists.jboss.org
Author: dan.j.allen
Date: 2010-04-23 14:59:36 -0400 (Fri, 23 Apr 2010)
New Revision: 12617
Modified:
modules/faces/trunk/pom.xml
Log:
link against myfaces api 2.0.0
Modified: modules/faces/trunk/pom.xml
===================================================================
--- modules/faces/trunk/pom.xml 2010-04-23 18:14:58 UTC (rev 12616)
+++ modules/faces/trunk/pom.xml 2010-04-23 18:59:36 UTC (rev 12617)
@@ -6,6 +6,7 @@
<artifactId>weld-parent</artifactId>
<version>9</version>
</parent>
+ -->
<artifactId>seam-faces-parent</artifactId>
<groupId>org.jboss.seam.faces</groupId>
@@ -76,7 +77,7 @@
<!-- This is necessary until a new JSF-API is published to central -->
<groupId>org.apache.myfaces.core</groupId>
<artifactId>myfaces-api</artifactId>
- <version>2.0.0-beta-3</version>
+ <version>2.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
14 years, 8 months
Seam SVN: r12616 - in sandbox/trunk/modules/envconfig: trunk and 1 other directory.
by seam-commits@lists.jboss.org
Author: dan.j.allen
Date: 2010-04-23 14:14:58 -0400 (Fri, 23 Apr 2010)
New Revision: 12616
Added:
sandbox/trunk/modules/envconfig/pom.xml
sandbox/trunk/modules/envconfig/readme.txt
sandbox/trunk/modules/envconfig/src/
Removed:
sandbox/trunk/modules/envconfig/branches/
sandbox/trunk/modules/envconfig/tags/
sandbox/trunk/modules/envconfig/trunk/pom.xml
sandbox/trunk/modules/envconfig/trunk/readme.txt
sandbox/trunk/modules/envconfig/trunk/src/
Log:
remove trunk, tags, branches hierarchy
Copied: sandbox/trunk/modules/envconfig/pom.xml (from rev 12615, sandbox/trunk/modules/envconfig/trunk/pom.xml)
===================================================================
--- sandbox/trunk/modules/envconfig/pom.xml (rev 0)
+++ sandbox/trunk/modules/envconfig/pom.xml 2010-04-23 18:14:58 UTC (rev 12616)
@@ -0,0 +1,101 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.jboss.seam</groupId>
+ <artifactId>seam-parent</artifactId>
+ <version>3.0.0-SNAPSHOT</version>
+ </parent>
+
+ <groupId>org.jboss.seam</groupId>
+ <artifactId>seam-envconfig</artifactId>
+ <version>3.0.0-SNAPSHOT</version>
+ <packaging>ejb</packaging>
+
+ <name>Seam Environment Configuration</name>
+ <description>A set of CDI extensions that deal with configuration of the Java EE environment (e.g., binding to JNDI)</description>
+ <inceptionYear>2009</inceptionYear>
+
+ <developers>
+ <developer>
+ <name>Matt Corey</name>
+ <url>http://smokeandice.blogspot.com</url>
+ <timezone>GMT-05:00</timezone>
+ <roles>
+ <role>Module driver</role>
+ </roles>
+ </developer>
+ <developer>
+ <id>dan.j.allen</id>
+ <name>Dan Allen</name>
+ <email>dan.j.allen(a)gmail.com</email>
+ <url>http://in.relation.to/Bloggers/Dan</url>
+ <organization>JBoss, by Red Hat</organization>
+ <timezone>GMT-05:00</timezone>
+ <roles>
+ <role>Developer</role>
+ </roles>
+ </developer>
+ </developers>
+
+ <properties>
+ <seam.version>3.0.0-SNAPSHOT</seam.version>
+ </properties>
+
+ <!-- Snapshots repo to get parent -->
+ <repositories>
+ <repository>
+ <id>oss.sonatype.org/jboss-snapshots</id>
+ <name>JBoss (Nexus) Snapshots Repository</name>
+ <url>http://oss.sonatype.org/content/repositories/jboss-snapshots</url>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ <updatePolicy>never</updatePolicy>
+ </snapshots>
+ </repository>
+ </repositories>
+
+ <dependencies>
+ <dependency>
+ <groupId>javax.enterprise</groupId>
+ <artifactId>cdi-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.ejb3</groupId>
+ <artifactId>jboss-ejb3-api</artifactId>
+ <scope>provided</scope>
+ <version>3.1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-ejb-plugin</artifactId>
+ <configuration>
+ <ejbVersion>3.0</ejbVersion>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/seam/modules/envconfig/trunk</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/seam/modules/envconfig/trunk</developerConnection>
+ <url>http://fisheye.jboss.org/browse/Seam/modules/envconfig/trunk</url>
+ </scm>
+
+</project>
Copied: sandbox/trunk/modules/envconfig/readme.txt (from rev 12615, sandbox/trunk/modules/envconfig/trunk/readme.txt)
===================================================================
--- sandbox/trunk/modules/envconfig/readme.txt (rev 0)
+++ sandbox/trunk/modules/envconfig/readme.txt 2010-04-23 18:14:58 UTC (rev 12616)
@@ -0,0 +1,40 @@
+Seam Environment Configuration
+==============================
+
+Extension type: Portable Extension (PE)
+
+Example:
+
+The following bean will cause the string "Hello World!" to
+be bound to the JNDI name java:global/msg when the archive
+that contains this bean is deployed.
+
+import org.jboss.seam.envconfig.Bind;
+import org.jboss.seam.envconfig.EnvironmentBinding;
+
+public @EnvironmentBinding class EnvironmentVars
+{
+ @Bind("msg") String msg = "Hello World!";
+}
+
+You can then inject the value into a managed bean as follows:
+
+@Resource(lookup = "java:global/msg") String msg;
+
+You can also bind custom objects:
+
+// somewhere in the same deployment must be a producer for @Admin User
+@Inject @Admin @Bind("adminUser") User user;
+
+Then inject the resource:
+
+@Resource(lookup = "java:global/adminUser") User user;
+
+TODO:
+
+- Add tests (learning Arquillian first)
+- Support unbinding, either with @Unbind, or by simply handling a 'null' value for unbind
+- Support binding producer methods
+- Make 'value' optional on @Bind, using the property name for the binding if not provided (may need to qualify it with class name, possibly even module name?)
+- Implement JndiBinder as a Servlet for non-EJB containers?
+- Create web and/or REST interface to display/reprocess bindings?
Copied: sandbox/trunk/modules/envconfig/src (from rev 12615, sandbox/trunk/modules/envconfig/trunk/src)
Deleted: sandbox/trunk/modules/envconfig/trunk/pom.xml
===================================================================
--- sandbox/trunk/modules/envconfig/trunk/pom.xml 2010-04-23 18:13:36 UTC (rev 12615)
+++ sandbox/trunk/modules/envconfig/trunk/pom.xml 2010-04-23 18:14:58 UTC (rev 12616)
@@ -1,101 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
-
- <parent>
- <groupId>org.jboss.seam</groupId>
- <artifactId>seam-parent</artifactId>
- <version>3.0.0-SNAPSHOT</version>
- </parent>
-
- <groupId>org.jboss.seam</groupId>
- <artifactId>seam-envconfig</artifactId>
- <version>3.0.0-SNAPSHOT</version>
- <packaging>ejb</packaging>
-
- <name>Seam Environment Configuration</name>
- <description>A set of CDI extensions that deal with configuration of the Java EE environment (e.g., binding to JNDI)</description>
- <inceptionYear>2009</inceptionYear>
-
- <developers>
- <developer>
- <name>Matt Corey</name>
- <url>http://smokeandice.blogspot.com</url>
- <timezone>GMT-05:00</timezone>
- <roles>
- <role>Module driver</role>
- </roles>
- </developer>
- <developer>
- <id>dan.j.allen</id>
- <name>Dan Allen</name>
- <email>dan.j.allen(a)gmail.com</email>
- <url>http://in.relation.to/Bloggers/Dan</url>
- <organization>JBoss, by Red Hat</organization>
- <timezone>GMT-05:00</timezone>
- <roles>
- <role>Developer</role>
- </roles>
- </developer>
- </developers>
-
- <properties>
- <seam.version>3.0.0-SNAPSHOT</seam.version>
- </properties>
-
- <!-- Snapshots repo to get parent -->
- <repositories>
- <repository>
- <id>oss.sonatype.org/jboss-snapshots</id>
- <name>JBoss (Nexus) Snapshots Repository</name>
- <url>http://oss.sonatype.org/content/repositories/jboss-snapshots</url>
- <releases>
- <enabled>false</enabled>
- </releases>
- <snapshots>
- <enabled>true</enabled>
- <updatePolicy>never</updatePolicy>
- </snapshots>
- </repository>
- </repositories>
-
- <dependencies>
- <dependency>
- <groupId>javax.enterprise</groupId>
- <artifactId>cdi-api</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.jboss.ejb3</groupId>
- <artifactId>jboss-ejb3-api</artifactId>
- <scope>provided</scope>
- <version>3.1.0</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- <scope>provided</scope>
- </dependency>
- </dependencies>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-ejb-plugin</artifactId>
- <configuration>
- <ejbVersion>3.0</ejbVersion>
- </configuration>
- </plugin>
- </plugins>
- </build>
-
- <scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/seam/modules/envconfig/trunk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/seam/modules/envconfig/trunk</developerConnection>
- <url>http://fisheye.jboss.org/browse/Seam/modules/envconfig/trunk</url>
- </scm>
-
-</project>
Deleted: sandbox/trunk/modules/envconfig/trunk/readme.txt
===================================================================
--- sandbox/trunk/modules/envconfig/trunk/readme.txt 2010-04-23 18:13:36 UTC (rev 12615)
+++ sandbox/trunk/modules/envconfig/trunk/readme.txt 2010-04-23 18:14:58 UTC (rev 12616)
@@ -1,40 +0,0 @@
-Seam Environment Configuration
-==============================
-
-Extension type: Portable Extension (PE)
-
-Example:
-
-The following bean will cause the string "Hello World!" to
-be bound to the JNDI name java:global/msg when the archive
-that contains this bean is deployed.
-
-import org.jboss.seam.envconfig.Bind;
-import org.jboss.seam.envconfig.EnvironmentBinding;
-
-public @EnvironmentBinding class EnvironmentVars
-{
- @Bind("msg") String msg = "Hello World!";
-}
-
-You can then inject the value into a managed bean as follows:
-
-@Resource(lookup = "java:global/msg") String msg;
-
-You can also bind custom objects:
-
-// somewhere in the same deployment must be a producer for @Admin User
-@Inject @Admin @Bind("adminUser") User user;
-
-Then inject the resource:
-
-@Resource(lookup = "java:global/adminUser") User user;
-
-TODO:
-
-- Add tests (learning Arquillian first)
-- Support unbinding, either with @Unbind, or by simply handling a 'null' value for unbind
-- Support binding producer methods
-- Make 'value' optional on @Bind, using the property name for the binding if not provided (may need to qualify it with class name, possibly even module name?)
-- Implement JndiBinder as a Servlet for non-EJB containers?
-- Create web and/or REST interface to display/reprocess bindings?
14 years, 8 months
Seam SVN: r12615 - sandbox/trunk/modules and 1 other directory.
by seam-commits@lists.jboss.org
Author: dan.j.allen
Date: 2010-04-23 14:13:36 -0400 (Fri, 23 Apr 2010)
New Revision: 12615
Added:
sandbox/trunk/modules/envconfig/
Removed:
modules/envconfig/
Log:
move envconfig to sandbox
Copied: sandbox/trunk/modules/envconfig (from rev 12613, modules/envconfig)
14 years, 8 months
Seam SVN: r12614 - branches/community/Seam_2_2/ui/src/main/java/org/jboss/seam/ui/component.
by seam-commits@lists.jboss.org
Author: denis.forveille
Date: 2010-04-23 14:12:49 -0400 (Fri, 23 Apr 2010)
New Revision: 12614
Modified:
branches/community/Seam_2_2/ui/src/main/java/org/jboss/seam/ui/component/UIFileUpload.java
Log:
JBSEAM-2974
Modified: branches/community/Seam_2_2/ui/src/main/java/org/jboss/seam/ui/component/UIFileUpload.java
===================================================================
--- branches/community/Seam_2_2/ui/src/main/java/org/jboss/seam/ui/component/UIFileUpload.java 2010-04-23 17:26:26 UTC (rev 12613)
+++ branches/community/Seam_2_2/ui/src/main/java/org/jboss/seam/ui/component/UIFileUpload.java 2010-04-23 18:12:49 UTC (rev 12614)
@@ -144,6 +144,122 @@
this.localInputStream = localInputStream;
}
+ /**
+ * {@inheritDoc}
+ *
+ * @see javax.faces.component.UIOutput#getLocalValue()
+ */
+ @Override
+ public Object getLocalValue() {
+ return new LocalUploadValue(localContentType, localFileName, localFileSize,
+ localInputStream);
+ }
+
+ /**
+ * {@inheritDoc}
+ *
+ * @see javax.faces.component.UIInput#setValue(java.lang.Object)
+ */
+ @Override
+ public void setValue(Object value) {
+ // Check if the local values get restored
+ if (value != null && value instanceof LocalUploadValue) {
+ LocalUploadValue localValue = (LocalUploadValue) value;
+ localFileName = localValue.getFileName();
+ localFileSize = localValue.getFileSize();
+ localContentType = localValue.getContentType();
+ localInputStream = localValue.getInputStream();
+ } else {
+ super.setValue(value);
+ }
+ }
+
+ /**
+ * {@inheritDoc}
+ *
+ * @see javax.faces.component.UIInput#isLocalValueSet()
+ */
+ @Override
+ public boolean isLocalValueSet() {
+ return localContentType != null || localFileName != null || localFileSize != null
+ || localInputStream != null;
+ }
+
+ /**
+ * Helper class to store the local values.
+ */
+ protected class LocalUploadValue {
+
+ /** Stores the local content type. */
+ private String contentType;
+
+ /** Stores the local file name. */
+ private String fileName;
+
+ /** Stores the local file size. */
+ private Integer fileSize;
+
+ /** Stores the local stream information. */
+ private InputStream inputStream;
+
+ /**
+ * Constructor for this class.
+ *
+ * @param contentType
+ * The local content type to save
+ * @param fileName
+ * The local file name to save
+ * @param fileSize
+ * The local file size to save
+ * @param inputStream
+ * The local input stream to save
+ */
+ public LocalUploadValue(String contentType, String fileName, Integer fileSize,
+ InputStream inputStream) {
+ super();
+ this.contentType = contentType;
+ this.fileName = fileName;
+ this.fileSize = fileSize;
+ this.inputStream = inputStream;
+ }
+
+ /**
+ * Returns the contentType value.
+ *
+ * @return the contentType value
+ */
+ public String getContentType() {
+ return contentType;
+ }
+
+ /**
+ * Returns the fileName value.
+ *
+ * @return the fileName value
+ */
+ public String getFileName() {
+ return fileName;
+ }
+
+ /**
+ * Returns the fileSize value.
+ *
+ * @return the fileSize value
+ */
+ public Integer getFileSize() {
+ return fileSize;
+ }
+
+ /**
+ * Returns the inputStream value.
+ *
+ * @return the inputStream value
+ */
+ public InputStream getInputStream() {
+ return inputStream;
+ }
+ }
+
public abstract void setAccept(String accept);
public abstract String getAccept();
14 years, 8 months
Seam SVN: r12613 - in modules/faces/trunk: api and 1 other directories.
by seam-commits@lists.jboss.org
Author: lincolnthree
Date: 2010-04-23 13:26:26 -0400 (Fri, 23 Apr 2010)
New Revision: 12613
Modified:
modules/faces/trunk/api/pom.xml
modules/faces/trunk/impl/pom.xml
modules/faces/trunk/pom.xml
Log:
[maven-release-plugin] prepare for next development iteration
Modified: modules/faces/trunk/api/pom.xml
===================================================================
--- modules/faces/trunk/api/pom.xml 2010-04-23 17:26:19 UTC (rev 12612)
+++ modules/faces/trunk/api/pom.xml 2010-04-23 17:26:26 UTC (rev 12613)
@@ -4,11 +4,11 @@
<parent>
<artifactId>seam-faces-parent</artifactId>
<groupId>org.jboss.seam.faces</groupId>
- <version>3.0.0.Alpha2</version>
+ <version>3.0.0-SNAPSHOT</version>
</parent>
<artifactId>seam-faces-api</artifactId>
- <version>3.0.0.Alpha2</version>
+ <version>3.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Seam Faces Module API</name>
Modified: modules/faces/trunk/impl/pom.xml
===================================================================
--- modules/faces/trunk/impl/pom.xml 2010-04-23 17:26:19 UTC (rev 12612)
+++ modules/faces/trunk/impl/pom.xml 2010-04-23 17:26:26 UTC (rev 12613)
@@ -4,11 +4,11 @@
<parent>
<artifactId>seam-faces-parent</artifactId>
<groupId>org.jboss.seam.faces</groupId>
- <version>3.0.0.Alpha2</version>
+ <version>3.0.0-SNAPSHOT</version>
</parent>
<artifactId>seam-faces</artifactId>
- <version>3.0.0.Alpha2</version>
+ <version>3.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Seam Faces Module Core Implementation</name>
Modified: modules/faces/trunk/pom.xml
===================================================================
--- modules/faces/trunk/pom.xml 2010-04-23 17:26:19 UTC (rev 12612)
+++ modules/faces/trunk/pom.xml 2010-04-23 17:26:26 UTC (rev 12613)
@@ -9,7 +9,7 @@
<artifactId>seam-faces-parent</artifactId>
<groupId>org.jboss.seam.faces</groupId>
- <version>3.0.0.Alpha2</version>
+ <version>3.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Seam Faces Module Parent POM</name>
@@ -178,11 +178,11 @@
</developers>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/seam/modules/faces/tags/3.0.0.Alpha2
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/seam/modules/faces/trunk
</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/seam/modules/faces/tags/3.0.0.Alpha2
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/seam/modules/faces/trunk
</developerConnection>
- <url>http://fisheye.jboss.org/browse/Seam/modules/faces/tags/3.0.0.Alpha2</url>
+ <url>http://fisheye.jboss.org/browse/Seam/modules/faces/trunk</url>
</scm>
<build>
14 years, 8 months
Seam SVN: r12612 - modules/faces/tags.
by seam-commits@lists.jboss.org
Author: lincolnthree
Date: 2010-04-23 13:26:19 -0400 (Fri, 23 Apr 2010)
New Revision: 12612
Added:
modules/faces/tags/3.0.0.Alpha2/
Log:
[maven-scm] copy for tag 3.0.0.Alpha2
Copied: modules/faces/tags/3.0.0.Alpha2 (from rev 12611, modules/faces/trunk)
14 years, 8 months
Seam SVN: r12611 - in modules/faces/trunk: api and 1 other directories.
by seam-commits@lists.jboss.org
Author: lincolnthree
Date: 2010-04-23 13:26:10 -0400 (Fri, 23 Apr 2010)
New Revision: 12611
Modified:
modules/faces/trunk/api/pom.xml
modules/faces/trunk/impl/pom.xml
modules/faces/trunk/pom.xml
Log:
[maven-release-plugin] prepare release 3.0.0.Alpha2
Modified: modules/faces/trunk/api/pom.xml
===================================================================
--- modules/faces/trunk/api/pom.xml 2010-04-23 16:31:50 UTC (rev 12610)
+++ modules/faces/trunk/api/pom.xml 2010-04-23 17:26:10 UTC (rev 12611)
@@ -4,11 +4,11 @@
<parent>
<artifactId>seam-faces-parent</artifactId>
<groupId>org.jboss.seam.faces</groupId>
- <version>3.0.0-SNAPSHOT</version>
+ <version>3.0.0.Alpha2</version>
</parent>
<artifactId>seam-faces-api</artifactId>
- <version>3.0.0-SNAPSHOT</version>
+ <version>3.0.0.Alpha2</version>
<packaging>jar</packaging>
<name>Seam Faces Module API</name>
Modified: modules/faces/trunk/impl/pom.xml
===================================================================
--- modules/faces/trunk/impl/pom.xml 2010-04-23 16:31:50 UTC (rev 12610)
+++ modules/faces/trunk/impl/pom.xml 2010-04-23 17:26:10 UTC (rev 12611)
@@ -4,11 +4,11 @@
<parent>
<artifactId>seam-faces-parent</artifactId>
<groupId>org.jboss.seam.faces</groupId>
- <version>3.0.0-SNAPSHOT</version>
+ <version>3.0.0.Alpha2</version>
</parent>
<artifactId>seam-faces</artifactId>
- <version>3.0.0-SNAPSHOT</version>
+ <version>3.0.0.Alpha2</version>
<packaging>jar</packaging>
<name>Seam Faces Module Core Implementation</name>
Modified: modules/faces/trunk/pom.xml
===================================================================
--- modules/faces/trunk/pom.xml 2010-04-23 16:31:50 UTC (rev 12610)
+++ modules/faces/trunk/pom.xml 2010-04-23 17:26:10 UTC (rev 12611)
@@ -9,7 +9,7 @@
<artifactId>seam-faces-parent</artifactId>
<groupId>org.jboss.seam.faces</groupId>
- <version>3.0.0-SNAPSHOT</version>
+ <version>3.0.0.Alpha2</version>
<packaging>pom</packaging>
<name>Seam Faces Module Parent POM</name>
@@ -178,11 +178,11 @@
</developers>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/seam/modules/faces/trunk
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/seam/modules/faces/tags/3.0.0.Alpha2
</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/seam/modules/faces/trunk
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/seam/modules/faces/tags/3.0.0.Alpha2
</developerConnection>
- <url>http://fisheye.jboss.org/browse/Seam/modules/faces/trunk</url>
+ <url>http://fisheye.jboss.org/browse/Seam/modules/faces/tags/3.0.0.Alpha2</url>
</scm>
<build>
14 years, 8 months