JBoss Rich Faces SVN: r18540 - in sandbox/cdk/maven-resources-plugin/src/main/java/org/richfaces/cdk: naming and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2010-08-10 14:16:55 -0400 (Tue, 10 Aug 2010)
New Revision: 18540
Removed:
sandbox/cdk/maven-resources-plugin/src/main/java/org/richfaces/cdk/util/ConcurrentHashSet.java
Modified:
sandbox/cdk/maven-resources-plugin/src/main/java/org/richfaces/cdk/faces/ResourceELResolver.java
sandbox/cdk/maven-resources-plugin/src/main/java/org/richfaces/cdk/naming/FileNameMapperImpl.java
sandbox/cdk/maven-resources-plugin/src/main/java/org/richfaces/cdk/vfs/zip/ZipVFSFile.java
Log:
Latest changes in maven-resources-plugin
Modified: sandbox/cdk/maven-resources-plugin/src/main/java/org/richfaces/cdk/faces/ResourceELResolver.java
===================================================================
--- sandbox/cdk/maven-resources-plugin/src/main/java/org/richfaces/cdk/faces/ResourceELResolver.java 2010-08-10 17:53:21 UTC (rev 18539)
+++ sandbox/cdk/maven-resources-plugin/src/main/java/org/richfaces/cdk/faces/ResourceELResolver.java 2010-08-10 18:16:55 UTC (rev 18540)
@@ -37,6 +37,9 @@
import javax.faces.application.ResourceHandler;
import javax.faces.context.FacesContext;
+import org.richfaces.application.ServiceTracker;
+import org.richfaces.cdk.FileNameMapper;
+
import com.google.common.collect.Lists;
/**
@@ -89,6 +92,10 @@
return SLASH_JOINER.join(resultPathSegments);
}
+ private FileNameMapper getFileNameMapper() {
+ return ServiceTracker.getService(FileNameMapper.class);
+ }
+
public Object getValue(ELContext context, Object base, Object property) {
checkBaseAndProperty(base, property);
@@ -109,11 +116,13 @@
context.setPropertyResolved(true);
if (resource != null) {
- String requestPath = resource.getRequestPath();
+ FileNameMapper fileNameMapper = getFileNameMapper();
+
+ String requestPath = fileNameMapper.createName(resource);
FacesContext facesContext = (FacesContext) context.getContext(FacesContext.class);
Resource contextResource = CurrentResourceContext.getInstance(facesContext).getResource();
if (contextResource != null) {
- requestPath = relativize(resource.getRequestPath(), contextResource.getRequestPath());
+ requestPath = relativize(requestPath, fileNameMapper.createName(contextResource));
}
return requestPath;
Modified: sandbox/cdk/maven-resources-plugin/src/main/java/org/richfaces/cdk/naming/FileNameMapperImpl.java
===================================================================
--- sandbox/cdk/maven-resources-plugin/src/main/java/org/richfaces/cdk/naming/FileNameMapperImpl.java 2010-08-10 17:53:21 UTC (rev 18539)
+++ sandbox/cdk/maven-resources-plugin/src/main/java/org/richfaces/cdk/naming/FileNameMapperImpl.java 2010-08-10 18:16:55 UTC (rev 18540)
@@ -80,6 +80,7 @@
return result;
}
+ //TODO implement counter remapping
private String remapName(String name) {
if (name == null) {
return name;
Deleted: sandbox/cdk/maven-resources-plugin/src/main/java/org/richfaces/cdk/util/ConcurrentHashSet.java
===================================================================
--- sandbox/cdk/maven-resources-plugin/src/main/java/org/richfaces/cdk/util/ConcurrentHashSet.java 2010-08-10 17:53:21 UTC (rev 18539)
+++ sandbox/cdk/maven-resources-plugin/src/main/java/org/richfaces/cdk/util/ConcurrentHashSet.java 2010-08-10 18:16:55 UTC (rev 18540)
@@ -1,75 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2010, Red Hat, Inc. and individual contributors
- * by the @authors tag. See the copyright.txt in the distribution for a
- * full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.richfaces.cdk.util;
-
-import java.util.AbstractSet;
-import java.util.Iterator;
-import java.util.concurrent.ConcurrentHashMap;
-import java.util.concurrent.ConcurrentMap;
-
-/**
- * @author Nick Belaevski
- *
- */
-public class ConcurrentHashSet<E> extends AbstractSet<E> {
-
- private ConcurrentMap<E, Boolean> backingMap = new ConcurrentHashMap<E, Boolean>();
-
- @Override
- public Iterator<E> iterator() {
- return backingMap.keySet().iterator();
- }
-
- public boolean add(E e) {
- return backingMap.put(e, Boolean.TRUE) == null;
- }
-
- public boolean addIfAbsent(E e) {
- return backingMap.putIfAbsent(e, Boolean.TRUE) == null;
- }
-
- @Override
- public boolean contains(Object o) {
- return backingMap.containsKey(o);
- }
-
- @Override
- public boolean remove(Object o) {
- return Boolean.TRUE.equals(backingMap.remove(o));
- }
-
- @Override
- public void clear() {
- backingMap.clear();
- }
-
- @Override
- public int size() {
- return backingMap.size();
- }
-
- @Override
- public boolean isEmpty() {
- return backingMap.isEmpty();
- }
-
-}
\ No newline at end of file
Modified: sandbox/cdk/maven-resources-plugin/src/main/java/org/richfaces/cdk/vfs/zip/ZipVFSFile.java
===================================================================
--- sandbox/cdk/maven-resources-plugin/src/main/java/org/richfaces/cdk/vfs/zip/ZipVFSFile.java 2010-08-10 17:53:21 UTC (rev 18539)
+++ sandbox/cdk/maven-resources-plugin/src/main/java/org/richfaces/cdk/vfs/zip/ZipVFSFile.java 2010-08-10 18:16:55 UTC (rev 18540)
@@ -68,9 +68,7 @@
public InputStream getInputStream() throws IOException {
ZipEntry entry = zipNode.getZipEntry();
if (entry != null) {
- synchronized (zipFile) {
- return zipFile.getInputStream(entry);
- }
+ return zipFile.getInputStream(entry);
}
throw new IOException("Input stream isn't available!");
15 years, 9 months
JBoss Rich Faces SVN: r18539 - trunk/ui/dist.
by richfaces-svn-commits@lists.jboss.org
Author: Alex.Kolonitsky
Date: 2010-08-10 13:53:21 -0400 (Tue, 10 Aug 2010)
New Revision: 18539
Removed:
trunk/ui/dist/richfaces-components-impl/
Log:
Richfaces 4.0 restructurization of svn repository structure
15 years, 9 months
JBoss Rich Faces SVN: r18538 - in trunk: dist and 8 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: Alex.Kolonitsky
Date: 2010-08-10 13:48:16 -0400 (Tue, 10 Aug 2010)
New Revision: 18538
Modified:
trunk/archetypes/richfaces-archetype-simpleapp/src/main/resources/archetype-resources/pom.xml
trunk/dist/pom.xml
trunk/examples/core-demo/pom.xml
trunk/examples/iteration-demo/pom.xml
trunk/examples/misc-demo/pom.xml
trunk/examples/output-demo/pom.xml
trunk/examples/richfaces-showcase/pom.xml
trunk/ui/dist/richfaces-components-ui/pom.xml
trunk/ui/output/pom.xml
trunk/ui/parent/pom.xml
Log:
Richfaces 4.0 restructurization of svn repository structure
Modified: trunk/archetypes/richfaces-archetype-simpleapp/src/main/resources/archetype-resources/pom.xml
===================================================================
--- trunk/archetypes/richfaces-archetype-simpleapp/src/main/resources/archetype-resources/pom.xml 2010-08-10 16:49:39 UTC (rev 18537)
+++ trunk/archetypes/richfaces-archetype-simpleapp/src/main/resources/archetype-resources/pom.xml 2010-08-10 17:48:16 UTC (rev 18538)
@@ -129,7 +129,7 @@
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
- <artifactId>richfaces-components-bom</artifactId>
+ <artifactId>richfaces-ui-parent</artifactId>
<version>${org.richfaces.ui.version}</version>
<scope>import</scope>
<type>pom</type>
Modified: trunk/dist/pom.xml
===================================================================
--- trunk/dist/pom.xml 2010-08-10 16:49:39 UTC (rev 18537)
+++ trunk/dist/pom.xml 2010-08-10 17:48:16 UTC (rev 18538)
@@ -50,11 +50,6 @@
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
- <artifactId>richfaces-components-impl</artifactId>
- <version>${org.richfaces.ui.version}</version>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-ui</artifactId>
<version>${org.richfaces.ui.version}</version>
</dependency>
Modified: trunk/examples/core-demo/pom.xml
===================================================================
--- trunk/examples/core-demo/pom.xml 2010-08-10 16:49:39 UTC (rev 18537)
+++ trunk/examples/core-demo/pom.xml 2010-08-10 17:48:16 UTC (rev 18538)
@@ -41,15 +41,15 @@
<jetty.port>8080</jetty.port>
<richfaces.checkstyle.version>1</richfaces.checkstyle.version>
- <org.richfaces.ui.core.version>4.0.0-SNAPSHOT</org.richfaces.ui.core.version>
+ <org.richfaces.ui.version>4.0.0-SNAPSHOT</org.richfaces.ui.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
- <groupId>org.richfaces.ui.core</groupId>
- <artifactId>richfaces-ui-core-bom</artifactId>
- <version>${org.richfaces.ui.core.version}</version>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>richfaces-ui-parent</artifactId>
+ <version>${org.richfaces.ui.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
Modified: trunk/examples/iteration-demo/pom.xml
===================================================================
--- trunk/examples/iteration-demo/pom.xml 2010-08-10 16:49:39 UTC (rev 18537)
+++ trunk/examples/iteration-demo/pom.xml 2010-08-10 17:48:16 UTC (rev 18538)
@@ -46,8 +46,8 @@
<dependencyManagement>
<dependencies>
<dependency>
- <groupId>org.richfaces.ui.iteration</groupId>
- <artifactId>richfaces-ui-iteration-bom</artifactId>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>richfaces-ui-parent</artifactId>
<version>${project.version}</version>
<scope>import</scope>
<type>pom</type>
Modified: trunk/examples/misc-demo/pom.xml
===================================================================
--- trunk/examples/misc-demo/pom.xml 2010-08-10 16:49:39 UTC (rev 18537)
+++ trunk/examples/misc-demo/pom.xml 2010-08-10 17:48:16 UTC (rev 18538)
@@ -46,8 +46,8 @@
<dependencyManagement>
<dependencies>
<dependency>
- <groupId>org.richfaces.ui.misc</groupId>
- <artifactId>richfaces-ui-misc-bom</artifactId>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>richfaces-ui-parent</artifactId>
<version>${project.version}</version>
<scope>import</scope>
<type>pom</type>
Modified: trunk/examples/output-demo/pom.xml
===================================================================
--- trunk/examples/output-demo/pom.xml 2010-08-10 16:49:39 UTC (rev 18537)
+++ trunk/examples/output-demo/pom.xml 2010-08-10 17:48:16 UTC (rev 18538)
@@ -133,8 +133,8 @@
<dependencyManagement>
<dependencies>
<dependency>
- <groupId>org.richfaces.ui.output</groupId>
- <artifactId>richfaces-ui-output-bom</artifactId>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>richfaces-ui-parent</artifactId>
<version>${version}</version>
<scope>import</scope>
<type>pom</type>
Modified: trunk/examples/richfaces-showcase/pom.xml
===================================================================
--- trunk/examples/richfaces-showcase/pom.xml 2010-08-10 16:49:39 UTC (rev 18537)
+++ trunk/examples/richfaces-showcase/pom.xml 2010-08-10 17:48:16 UTC (rev 18538)
@@ -31,7 +31,7 @@
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
- <artifactId>richfaces-components-bom</artifactId>
+ <artifactId>richfaces-ui-parent</artifactId>
<version>${org.richfaces.ui.version}</version>
<scope>import</scope>
<type>pom</type>
@@ -42,7 +42,7 @@
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
- <artifactId>richfaces-components-ui</artifactId>
+ <artifactId>richfaces-components-api</artifactId>
</dependency>
<dependency>
<groupId>${jsf2.api.groupid}</groupId>
Modified: trunk/ui/dist/richfaces-components-ui/pom.xml
===================================================================
--- trunk/ui/dist/richfaces-components-ui/pom.xml 2010-08-10 16:49:39 UTC (rev 18537)
+++ trunk/ui/dist/richfaces-components-ui/pom.xml 2010-08-10 17:48:16 UTC (rev 18538)
@@ -59,11 +59,6 @@
<!-- for javadoc generation -->
<dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>richfaces-components-impl</artifactId>
- </dependency>
-
- <dependency>
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-api</artifactId>
</dependency>
Modified: trunk/ui/output/pom.xml
===================================================================
--- trunk/ui/output/pom.xml 2010-08-10 16:49:39 UTC (rev 18537)
+++ trunk/ui/output/pom.xml 2010-08-10 17:48:16 UTC (rev 18538)
@@ -28,7 +28,7 @@
<version>9</version>
</parent>
- <groupId>org.richfaces.ui</groupId>
+ <groupId>org.richfaces.ui.output</groupId>
<artifactId>richfaces-ui-output-aggregator</artifactId>
<version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
Modified: trunk/ui/parent/pom.xml
===================================================================
--- trunk/ui/parent/pom.xml 2010-08-10 16:49:39 UTC (rev 18537)
+++ trunk/ui/parent/pom.xml 2010-08-10 17:48:16 UTC (rev 18538)
@@ -104,15 +104,9 @@
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
- <artifactId>richfaces-components-impl</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-ui</artifactId>
<version>${project.version}</version>
</dependency>
-
<dependency>
<groupId>org.richfaces.cdk</groupId>
15 years, 9 months
JBoss Rich Faces SVN: r18537 - modules and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: Alex.Kolonitsky
Date: 2010-08-10 12:49:39 -0400 (Tue, 10 Aug 2010)
New Revision: 18537
Added:
sandbox/
Removed:
modules/sandbox/
Log:
Richfaces 4.0 restructurization of svn repository structure
relocate sandbox
Copied: sandbox (from rev 18536, modules/sandbox)
15 years, 9 months
JBoss Rich Faces SVN: r18536 - /.
by richfaces-svn-commits@lists.jboss.org
Author: Alex.Kolonitsky
Date: 2010-08-10 12:48:05 -0400 (Tue, 10 Aug 2010)
New Revision: 18536
Added:
modules/
Removed:
root/
Log:
Richfaces 4.0 restructurization of svn repository structure
rename root to modules
Copied: modules (from rev 18535, root)
15 years, 9 months
JBoss Rich Faces SVN: r18535 - in trunk: ui/dist and 4 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: Alex.Kolonitsky
Date: 2010-08-10 11:14:41 -0400 (Tue, 10 Aug 2010)
New Revision: 18535
Modified:
trunk/examples/iteration-demo/pom.xml
trunk/ui/dist/pom.xml
trunk/ui/dist/richfaces-components-api/pom.xml
trunk/ui/iteration/api/pom.xml
trunk/ui/misc/ui/pom.xml
trunk/ui/parent/pom.xml
Log:
Richfaces 4.0 restructurization of svn repository structure
Modified: trunk/examples/iteration-demo/pom.xml
===================================================================
--- trunk/examples/iteration-demo/pom.xml 2010-08-10 14:35:38 UTC (rev 18534)
+++ trunk/examples/iteration-demo/pom.xml 2010-08-10 15:14:41 UTC (rev 18535)
@@ -79,10 +79,6 @@
<artifactId>richfaces-ui-iteration-ui</artifactId>
</dependency>
<dependency>
- <groupId>org.richfaces.ui.iteration</groupId>
- <artifactId>richfaces-ui-iteration-impl</artifactId>
- </dependency>
- <dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</dependency>
Modified: trunk/ui/dist/pom.xml
===================================================================
--- trunk/ui/dist/pom.xml 2010-08-10 14:35:38 UTC (rev 18534)
+++ trunk/ui/dist/pom.xml 2010-08-10 15:14:41 UTC (rev 18535)
@@ -35,7 +35,7 @@
<!--<module>bom</module>-->
<!--<module>parent</module>-->
<module>richfaces-components-api</module>
- <module>richfaces-components-impl</module>
+ <!--<module>richfaces-components-impl</module>-->
<module>richfaces-components-ui</module>
</modules>
Modified: trunk/ui/dist/richfaces-components-api/pom.xml
===================================================================
--- trunk/ui/dist/richfaces-components-api/pom.xml 2010-08-10 14:35:38 UTC (rev 18534)
+++ trunk/ui/dist/richfaces-components-api/pom.xml 2010-08-10 15:14:41 UTC (rev 18535)
@@ -25,7 +25,6 @@
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
<version>4.0.0-SNAPSHOT</version>
- <relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui</groupId>
Modified: trunk/ui/iteration/api/pom.xml
===================================================================
--- trunk/ui/iteration/api/pom.xml 2010-08-10 14:35:38 UTC (rev 18534)
+++ trunk/ui/iteration/api/pom.xml 2010-08-10 15:14:41 UTC (rev 18535)
@@ -63,7 +63,6 @@
<dependency>
<groupId>org.richfaces.ui.core</groupId>
<artifactId>richfaces-ui-core-ui</artifactId>
- <version>4.0.0-SNAPSHOT</version>
</dependency>
<!-- tests -->
Modified: trunk/ui/misc/ui/pom.xml
===================================================================
--- trunk/ui/misc/ui/pom.xml 2010-08-10 14:35:38 UTC (rev 18534)
+++ trunk/ui/misc/ui/pom.xml 2010-08-10 15:14:41 UTC (rev 18535)
@@ -49,12 +49,10 @@
<dependency>
<groupId>org.richfaces.cdk</groupId>
<artifactId>annotations</artifactId>
- <version>${org.richfaces.cdk.version}</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui.core</groupId>
<artifactId>richfaces-ui-core-ui</artifactId>
- <version>${project.version}</version>
</dependency>
<!-- JSF with dependencies -->
Modified: trunk/ui/parent/pom.xml
===================================================================
--- trunk/ui/parent/pom.xml 2010-08-10 14:35:38 UTC (rev 18534)
+++ trunk/ui/parent/pom.xml 2010-08-10 15:14:41 UTC (rev 18535)
@@ -66,7 +66,7 @@
<dependency>
<groupId>org.richfaces.ui.core</groupId>
<artifactId>richfaces-ui-core-ui</artifactId>
- <version>#{org.richfaces.ui.core.version}</version>
+ <version>${project.version}</version>
</dependency>
<dependency>
@@ -81,6 +81,23 @@
</dependency>
<dependency>
+ <groupId>org.richfaces.ui.output</groupId>
+ <artifactId>richfaces-ui-output-api</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui.output</groupId>
+ <artifactId>richfaces-ui-output-ui</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.ui.misc</groupId>
+ <artifactId>richfaces-ui-misc-ui</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+
+ <dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-api</artifactId>
<version>${project.version}</version>
15 years, 9 months
JBoss Rich Faces SVN: r18534 - in trunk: ui/core and 4 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: Alex.Kolonitsky
Date: 2010-08-10 10:35:38 -0400 (Tue, 10 Aug 2010)
New Revision: 18534
Removed:
trunk/ui/core/bom/
trunk/ui/core/parent/
trunk/ui/dist/bom/
trunk/ui/dist/parent/
Modified:
trunk/pom.xml
trunk/ui/core/pom.xml
trunk/ui/core/ui/pom.xml
trunk/ui/dist/pom.xml
trunk/ui/dist/richfaces-components-ui/pom.xml
trunk/ui/parent/pom.xml
Log:
Richfaces 4.0 restructurization of svn repository structure
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-08-10 12:56:40 UTC (rev 18533)
+++ trunk/pom.xml 2010-08-10 14:35:38 UTC (rev 18534)
@@ -28,7 +28,7 @@
<module>ui/iteration</module>
<module>ui/misc</module>
<module>ui/output</module>
- <!--<module>ui/dist</module>-->
+ <module>ui/dist</module>
<!-- Remaining -->
<module>archetypes</module>
Modified: trunk/ui/core/pom.xml
===================================================================
--- trunk/ui/core/pom.xml 2010-08-10 12:56:40 UTC (rev 18533)
+++ trunk/ui/core/pom.xml 2010-08-10 14:35:38 UTC (rev 18534)
@@ -35,8 +35,6 @@
<name>Richfaces UI Components: Core Aggregator</name>
<modules>
- <module>bom</module>
- <module>parent</module>
<module>ui</module>
</modules>
Modified: trunk/ui/core/ui/pom.xml
===================================================================
--- trunk/ui/core/ui/pom.xml 2010-08-10 12:56:40 UTC (rev 18533)
+++ trunk/ui/core/ui/pom.xml 2010-08-10 14:35:38 UTC (rev 18534)
@@ -1,128 +1,127 @@
+<!--
+ JBoss, Home of Professional Open Source Copyright 2010, Red Hat, Inc.
+ and individual contributors by the @authors tag. See the copyright.txt
+ in the distribution for a full listing of individual contributors.
+ This is free software; you can redistribute it and/or modify it under
+ the terms of the GNU Lesser General Public License as published by the
+ Free Software Foundation; either version 2.1 of the License, or (at
+ your option) any later version. This software is distributed in the
+ hope that it will be useful, but WITHOUT ANY WARRANTY; without even
+ the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+ PURPOSE. See the GNU Lesser General Public License for more details.
+ You should have received a copy of the GNU Lesser General Public
+ License along with this software; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
+ USA, or see the FSF site: http://www.fsf.org.
+ -->
- <!--
- JBoss, Home of Professional Open Source Copyright 2010, Red Hat, Inc.
- and individual contributors by the @authors tag. See the copyright.txt
- in the distribution for a full listing of individual contributors.
- This is free software; you can redistribute it and/or modify it under
- the terms of the GNU Lesser General Public License as published by the
- Free Software Foundation; either version 2.1 of the License, or (at
- your option) any later version. This software is distributed in the
- hope that it will be useful, but WITHOUT ANY WARRANTY; without even
- the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
- PURPOSE. See the GNU Lesser General Public License for more details.
- You should have received a copy of the GNU Lesser General Public
- License along with this software; if not, write to the Free Software
- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
- USA, or see the FSF site: http://www.fsf.org.
- -->
+<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">
-<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">
+ <parent>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>richfaces-ui-parent</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ </parent>
- <parent>
- <groupId>org.richfaces.ui.core</groupId>
- <artifactId>richfaces-ui-core-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <relativePath>../parent/pom.xml</relativePath>
- </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui.core</groupId>
+ <artifactId>richfaces-ui-core-ui</artifactId>
+ <name>Richfaces UI Components: Core UI</name>
+ <packaging>jar</packaging>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui.core</groupId>
- <artifactId>richfaces-ui-core-ui</artifactId>
- <name>Richfaces UI Components: Core UI</name>
- <packaging>jar</packaging>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <!-- runtime -->
+ <dependency>
+ <groupId>org.richfaces.core</groupId>
+ <artifactId>richfaces-core-api</artifactId>
+ </dependency>
+ <dependency>
+ <!-- todo remove this dependency or move to test scope -->
+ <groupId>org.richfaces.core</groupId>
+ <artifactId>richfaces-core-impl</artifactId>
+ </dependency>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <!-- runtime -->
- <dependency>
- <groupId>org.richfaces.core</groupId>
- <artifactId>richfaces-core-api</artifactId>
- </dependency>
- <dependency>
- <!-- todo remove this dependency or move to test scope -->
- <groupId>org.richfaces.core</groupId>
- <artifactId>richfaces-core-impl</artifactId>
- </dependency>
+ <dependency>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>annotations</artifactId>
+ <scope>provided</scope>
+ </dependency>
- <dependency>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>annotations</artifactId>
- <scope>provided</scope>
- </dependency>
+ <!-- JSF with dependencies -->
+ <dependency>
+ <groupId>${jsf2.api.groupid}</groupId>
+ <artifactId>${jsf2.api.artifactid}</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jstl</artifactId>
+ <scope>provided</scope>
+ </dependency>
- <!-- JSF with dependencies -->
- <dependency>
- <groupId>${jsf2.api.groupid}</groupId>
- <artifactId>${jsf2.api.artifactid}</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jstl</artifactId>
- <scope>provided</scope>
- </dependency>
+ <!-- tests -->
+ <dependency>
+ <groupId>${jsf2.impl.groupid}</groupId>
+ <artifactId>${jsf2.impl.artifactid}</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <!-- todo api? -->
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-log4j12</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.test-jsf</groupId>
+ <artifactId>jsf-test-stage</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.test-jsf</groupId>
+ <artifactId>htmlunit-client</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.test-jsf</groupId>
+ <artifactId>jsf-mock</artifactId>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
- <!-- tests -->
- <dependency>
- <groupId>${jsf2.impl.groupid}</groupId>
- <artifactId>${jsf2.impl.artifactid}</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <!-- todo api? -->
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-log4j12</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.jboss.test-jsf</groupId>
- <artifactId>jsf-test-stage</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.jboss.test-jsf</groupId>
- <artifactId>htmlunit-client</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.jboss.test-jsf</groupId>
- <artifactId>jsf-mock</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
-
- <scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/core/ui
- </connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/core/ui
- </developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces</url>
- </scm>
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/core/ui
+ </connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/core/ui
+ </developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces</url>
+ </scm>
</project>
\ No newline at end of file
Modified: trunk/ui/dist/pom.xml
===================================================================
--- trunk/ui/dist/pom.xml 2010-08-10 12:56:40 UTC (rev 18533)
+++ trunk/ui/dist/pom.xml 2010-08-10 14:35:38 UTC (rev 18534)
@@ -32,7 +32,7 @@
<name>Richfaces UI Assembler</name>
<modules>
- <module>bom</module>
+ <!--<module>bom</module>-->
<!--<module>parent</module>-->
<module>richfaces-components-api</module>
<module>richfaces-components-impl</module>
Modified: trunk/ui/dist/richfaces-components-ui/pom.xml
===================================================================
--- trunk/ui/dist/richfaces-components-ui/pom.xml 2010-08-10 12:56:40 UTC (rev 18533)
+++ trunk/ui/dist/richfaces-components-ui/pom.xml 2010-08-10 14:35:38 UTC (rev 18534)
@@ -25,7 +25,6 @@
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
<version>4.0.0-SNAPSHOT</version>
- <relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui</groupId>
Modified: trunk/ui/parent/pom.xml
===================================================================
--- trunk/ui/parent/pom.xml 2010-08-10 12:56:40 UTC (rev 18533)
+++ trunk/ui/parent/pom.xml 2010-08-10 14:35:38 UTC (rev 18534)
@@ -37,9 +37,13 @@
<properties>
<richfaces.checkstyle.version>1</richfaces.checkstyle.version>
- <org.richfaces.ui.core.version>4.0.0-SNAPSHOT</org.richfaces.ui.core.version>
<org.richfaces.cdk.version>4.0.0-SNAPSHOT</org.richfaces.cdk.version>
<org.richfaces.core.version>4.0.0-SNAPSHOT</org.richfaces.core.version>
+ <org.richfaces.commons.version>4.0.0-SNAPSHOT</org.richfaces.commons.version>
+ <org.richfaces.ui.core.version>4.0.0-SNAPSHOT</org.richfaces.ui.core.version>
+ <org.richfaces.ui.misc.version>4.0.0-SNAPSHOT</org.richfaces.ui.misc.version>
+ <org.richfaces.ui.iteration.version>4.0.0-SNAPSHOT</org.richfaces.ui.iteration.version>
+ <org.richfaces.ui.output.version>4.0.0-SNAPSHOT</org.richfaces.ui.output.version>
</properties>
<dependencyManagement>
@@ -51,8 +55,21 @@
<scope>import</scope>
<type>pom</type>
</dependency>
+ <dependency>
+ <groupId>org.richfaces.commons</groupId>
+ <artifactId>richfaces-commons-bom</artifactId>
+ <version>${org.richfaces.commons.version}</version>
+ <scope>import</scope>
+ <type>pom</type>
+ </dependency>
<dependency>
+ <groupId>org.richfaces.ui.core</groupId>
+ <artifactId>richfaces-ui-core-ui</artifactId>
+ <version>#{org.richfaces.ui.core.version}</version>
+ </dependency>
+
+ <dependency>
<groupId>org.richfaces.ui.iteration</groupId>
<artifactId>richfaces-ui-iteration-ui</artifactId>
<version>${project.version}</version>
@@ -64,19 +81,29 @@
</dependency>
<dependency>
- <groupId>org.richfaces.ui.core</groupId>
- <artifactId>richfaces-ui-core-bom</artifactId>
- <version>${org.richfaces.ui.core.version}</version>
- <scope>import</scope>
- <type>pom</type>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>richfaces-components-api</artifactId>
+ <version>${project.version}</version>
</dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>richfaces-components-impl</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>richfaces-components-ui</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+
<dependency>
<groupId>org.richfaces.cdk</groupId>
<artifactId>annotations</artifactId>
<version>${org.richfaces.cdk.version}</version>
</dependency>
</dependencies>
+
</dependencyManagement>
<build>
15 years, 9 months
JBoss Rich Faces SVN: r18533 - in trunk/ui/output: api and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: Alex.Kolonitsky
Date: 2010-08-10 08:56:40 -0400 (Tue, 10 Aug 2010)
New Revision: 18533
Removed:
trunk/ui/output/bom/
trunk/ui/output/dist/
trunk/ui/output/panels/
trunk/ui/output/parent/
trunk/ui/output/pom-panels.xml
Modified:
trunk/ui/output/api/pom.xml
trunk/ui/output/pom.xml
trunk/ui/output/ui/pom.xml
Log:
Richfaces 4.0 restructurization of svn repository structure
Modified: trunk/ui/output/api/pom.xml
===================================================================
--- trunk/ui/output/api/pom.xml 2010-08-10 12:20:26 UTC (rev 18532)
+++ trunk/ui/output/api/pom.xml 2010-08-10 12:56:40 UTC (rev 18533)
@@ -19,19 +19,19 @@
http://www.fsf.org.
-->
-<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/xsd/maven-4.0.0.xsd">
+<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/xsd/maven-4.0.0.xsd">
<parent>
- <groupId>org.richfaces.ui.output</groupId>
- <artifactId>panels-aggregator</artifactId>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>richfaces-ui-parent</artifactId>
<version>4.0.0-SNAPSHOT</version>
- <relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui.output</groupId>
- <artifactId>panels-api</artifactId>
- <name>Richfaces UI Components: Panels API</name>
+ <artifactId>richfaces-ui-output-api</artifactId>
+ <name>Richfaces UI Components: Output API</name>
<packaging>jar</packaging>
<dependencies>
@@ -40,8 +40,8 @@
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-api</artifactId>
</dependency>
-
- <!-- JSF with dependencies -->
+
+ <!-- JSF with dependencies -->
<dependency>
<groupId>${jsf2.api.groupid}</groupId>
<artifactId>${jsf2.api.artifactid}</artifactId>
@@ -100,12 +100,13 @@
<artifactId>jsf-mock</artifactId>
<scope>test</scope>
</dependency>
- </dependencies>
-
+ </dependencies>
+
<scm>
<connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/output/panels/api</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/output/panels/api</developerConnection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/output/panels/api
+ </developerConnection>
<url>http://fisheye.jboss.org/browse/richfaces</url>
</scm>
-
+
</project>
\ No newline at end of file
Deleted: trunk/ui/output/pom-panels.xml
===================================================================
--- trunk/ui/output/pom-panels.xml 2010-08-10 12:20:26 UTC (rev 18532)
+++ trunk/ui/output/pom-panels.xml 2010-08-10 12:56:40 UTC (rev 18533)
@@ -1,48 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
- JBoss, Home of Professional Open Source Copyright 2010, Red Hat,
- Inc. and individual contributors by the @authors tag. See the
- copyright.txt in the distribution for a full listing of
- individual contributors. This is free software; you can
- redistribute it and/or modify it under the terms of the GNU
- Lesser General Public License as published by the Free Software
- Foundation; either version 2.1 of the License, or (at your
- option) any later version. This software is distributed in the
- hope that it will be useful, but WITHOUT ANY WARRANTY; without
- even the implied warranty of MERCHANTABILITY or FITNESS FOR A
- PARTICULAR PURPOSE. See the GNU Lesser General Public License
- for more details. You should have received a copy of the GNU
- Lesser General Public License along with this software; if not,
- write to the Free Software Foundation, Inc., 51 Franklin St,
- Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
- http://www.fsf.org.
--->
-
-<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/xsd/maven-4.0.0.xsd">
-
- <modelVersion>4.0.0</modelVersion>
-
- <parent>
- <groupId>org.richfaces.ui.output</groupId>
- <artifactId>richfaces-ui-output-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <relativePath>../parent/pom.xml</relativePath>
- </parent>
-
- <groupId>org.richfaces.ui.output</groupId>
- <artifactId>panels-aggregator</artifactId>
- <packaging>pom</packaging>
- <name>Richfaces UI Components: Panels Aggregator</name>
-
- <modules>
- <module>api</module>
- <module>ui</module>
- </modules>
-
- <scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/output/panels</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/output/panels</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces</url>
- </scm>
-</project>
\ No newline at end of file
Modified: trunk/ui/output/pom.xml
===================================================================
--- trunk/ui/output/pom.xml 2010-08-10 12:20:26 UTC (rev 18532)
+++ trunk/ui/output/pom.xml 2010-08-10 12:56:40 UTC (rev 18533)
@@ -28,17 +28,15 @@
<version>9</version>
</parent>
- <groupId>org.richfaces.ui.output</groupId>
+ <groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-output-aggregator</artifactId>
<version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Output Aggregator</name>
<modules>
- <module>bom</module>
- <module>parent</module>
- <module>panels</module>
- <module>dist</module>
+ <module>api</module>
+ <module>ui</module>
</modules>
<build>
@@ -48,9 +46,7 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
- <!--
- The dist requires clean install for prepare
- -->
+ <!-- The dist requires clean install for prepare -->
<preparationGoals>clean install</preparationGoals>
</configuration>
</plugin>
@@ -61,9 +57,7 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
- <!--
- The dist requires clean install for prepare
- -->
+ <!-- The dist requires clean install for prepare -->
<preparationGoals>clean install</preparationGoals>
</configuration>
</plugin>
Modified: trunk/ui/output/ui/pom.xml
===================================================================
--- trunk/ui/output/ui/pom.xml 2010-08-10 12:20:26 UTC (rev 18532)
+++ trunk/ui/output/ui/pom.xml 2010-08-10 12:56:40 UTC (rev 18533)
@@ -24,15 +24,14 @@
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.richfaces.ui.output</groupId>
- <artifactId>panels-aggregator</artifactId>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>richfaces-ui-parent</artifactId>
<version>4.0.0-SNAPSHOT</version>
- <relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.output</groupId>
- <artifactId>panels-ui</artifactId>
- <name>Richfaces UI Components: Panels UI</name>
+ <artifactId>richfaces-ui-output-ui</artifactId>
+ <name>Richfaces UI Components: Output UI</name>
<packaging>jar</packaging>
<build>
<plugins>
@@ -67,7 +66,7 @@
<dependency>
<groupId>org.richfaces.ui.output</groupId>
- <artifactId>panels-api</artifactId>
+ <artifactId>richfaces-ui-output-api</artifactId>
<version>${project.version}</version>
</dependency>
15 years, 9 months
JBoss Rich Faces SVN: r18532 - in trunk/ui/output: panels and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: Alex.Kolonitsky
Date: 2010-08-10 08:20:26 -0400 (Tue, 10 Aug 2010)
New Revision: 18532
Added:
trunk/ui/output/api/
trunk/ui/output/pom-panels.xml
trunk/ui/output/ui/
Removed:
trunk/ui/output/panels/api/
trunk/ui/output/panels/pom.xml
trunk/ui/output/panels/ui/
Log:
Richfaces 4.0 restructurization of svn repository structure
Copied: trunk/ui/output/api (from rev 18531, trunk/ui/output/panels/api)
Deleted: trunk/ui/output/panels/pom.xml
===================================================================
--- trunk/ui/output/panels/pom.xml 2010-08-10 12:08:36 UTC (rev 18531)
+++ trunk/ui/output/panels/pom.xml 2010-08-10 12:20:26 UTC (rev 18532)
@@ -1,48 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
- JBoss, Home of Professional Open Source Copyright 2010, Red Hat,
- Inc. and individual contributors by the @authors tag. See the
- copyright.txt in the distribution for a full listing of
- individual contributors. This is free software; you can
- redistribute it and/or modify it under the terms of the GNU
- Lesser General Public License as published by the Free Software
- Foundation; either version 2.1 of the License, or (at your
- option) any later version. This software is distributed in the
- hope that it will be useful, but WITHOUT ANY WARRANTY; without
- even the implied warranty of MERCHANTABILITY or FITNESS FOR A
- PARTICULAR PURPOSE. See the GNU Lesser General Public License
- for more details. You should have received a copy of the GNU
- Lesser General Public License along with this software; if not,
- write to the Free Software Foundation, Inc., 51 Franklin St,
- Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
- http://www.fsf.org.
--->
-
-<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/xsd/maven-4.0.0.xsd">
-
- <modelVersion>4.0.0</modelVersion>
-
- <parent>
- <groupId>org.richfaces.ui.output</groupId>
- <artifactId>richfaces-ui-output-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <relativePath>../parent/pom.xml</relativePath>
- </parent>
-
- <groupId>org.richfaces.ui.output</groupId>
- <artifactId>panels-aggregator</artifactId>
- <packaging>pom</packaging>
- <name>Richfaces UI Components: Panels Aggregator</name>
-
- <modules>
- <module>api</module>
- <module>ui</module>
- </modules>
-
- <scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/output/panels</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/output/panels</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces</url>
- </scm>
-</project>
\ No newline at end of file
Copied: trunk/ui/output/pom-panels.xml (from rev 18531, trunk/ui/output/panels/pom.xml)
===================================================================
--- trunk/ui/output/pom-panels.xml (rev 0)
+++ trunk/ui/output/pom-panels.xml 2010-08-10 12:20:26 UTC (rev 18532)
@@ -0,0 +1,48 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ JBoss, Home of Professional Open Source Copyright 2010, Red Hat,
+ Inc. and individual contributors by the @authors tag. See the
+ copyright.txt in the distribution for a full listing of
+ individual contributors. This is free software; you can
+ redistribute it and/or modify it under the terms of the GNU
+ Lesser General Public License as published by the Free Software
+ Foundation; either version 2.1 of the License, or (at your
+ option) any later version. This software is distributed in the
+ hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ PARTICULAR PURPOSE. See the GNU Lesser General Public License
+ for more details. You should have received a copy of the GNU
+ Lesser General Public License along with this software; if not,
+ write to the Free Software Foundation, Inc., 51 Franklin St,
+ Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
+ http://www.fsf.org.
+-->
+
+<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/xsd/maven-4.0.0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.richfaces.ui.output</groupId>
+ <artifactId>richfaces-ui-output-parent</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ <relativePath>../parent/pom.xml</relativePath>
+ </parent>
+
+ <groupId>org.richfaces.ui.output</groupId>
+ <artifactId>panels-aggregator</artifactId>
+ <packaging>pom</packaging>
+ <name>Richfaces UI Components: Panels Aggregator</name>
+
+ <modules>
+ <module>api</module>
+ <module>ui</module>
+ </modules>
+
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/output/panels</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/output/panels</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces</url>
+ </scm>
+</project>
\ No newline at end of file
Copied: trunk/ui/output/ui (from rev 18531, trunk/ui/output/panels/ui)
15 years, 9 months
JBoss Rich Faces SVN: r18531 - in trunk: ui/dist and 3 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: Alex.Kolonitsky
Date: 2010-08-10 08:08:36 -0400 (Tue, 10 Aug 2010)
New Revision: 18531
Modified:
trunk/pom.xml
trunk/ui/dist/pom.xml
trunk/ui/misc/ui/pom.xml
trunk/ui/output/dist/pom.xml
trunk/ui/output/dist/richfaces-ui-output-ui/pom.xml
Log:
Richfaces 4.0 restructurization of svn repository structure
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-08-10 07:16:02 UTC (rev 18530)
+++ trunk/pom.xml 2010-08-10 12:08:36 UTC (rev 18531)
@@ -23,16 +23,17 @@
<module>cdk</module>
<!-- richfaces ui -->
+ <module>ui/parent</module>
<module>ui/core</module>
<module>ui/iteration</module>
<module>ui/misc</module>
<module>ui/output</module>
- <module>ui/dist</module>
+ <!--<module>ui/dist</module>-->
<!-- Remaining -->
<module>archetypes</module>
<module>examples</module>
- <module>docs</module>
+ <!--<module>docs</module>-->
</modules>
<profiles>
Modified: trunk/ui/dist/pom.xml
===================================================================
--- trunk/ui/dist/pom.xml 2010-08-10 07:16:02 UTC (rev 18530)
+++ trunk/ui/dist/pom.xml 2010-08-10 12:08:36 UTC (rev 18531)
@@ -33,7 +33,7 @@
<modules>
<module>bom</module>
- <module>parent</module>
+ <!--<module>parent</module>-->
<module>richfaces-components-api</module>
<module>richfaces-components-impl</module>
<module>richfaces-components-ui</module>
Modified: trunk/ui/misc/ui/pom.xml
===================================================================
--- trunk/ui/misc/ui/pom.xml 2010-08-10 07:16:02 UTC (rev 18530)
+++ trunk/ui/misc/ui/pom.xml 2010-08-10 12:08:36 UTC (rev 18531)
@@ -23,7 +23,7 @@
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.richfaces.ui.misc</groupId>
+ <groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
<version>4.0.0-SNAPSHOT</version>
</parent>
Modified: trunk/ui/output/dist/pom.xml
===================================================================
--- trunk/ui/output/dist/pom.xml 2010-08-10 07:16:02 UTC (rev 18530)
+++ trunk/ui/output/dist/pom.xml 2010-08-10 12:08:36 UTC (rev 18531)
@@ -49,6 +49,14 @@
<inherited>false</inherited>
</plugin>
-->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-enforcer-plugin</artifactId>
+ <version>1.0-beta-1</version>
+ <configuration>
+ <fail>false</fail>
+ </configuration>
+ </plugin>
</plugins>
</build>
Modified: trunk/ui/output/dist/richfaces-ui-output-ui/pom.xml
===================================================================
--- trunk/ui/output/dist/richfaces-ui-output-ui/pom.xml 2010-08-10 07:16:02 UTC (rev 18530)
+++ trunk/ui/output/dist/richfaces-ui-output-ui/pom.xml 2010-08-10 12:08:36 UTC (rev 18531)
@@ -124,6 +124,14 @@
</dependency>
</dependencies>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-enforcer-plugin</artifactId>
+ <version>1.0-beta-1</version>
+ <configuration>
+ <fail>false</fail>
+ </configuration>
+ </plugin>
</plugins>
</build>
<profiles>
15 years, 9 months