[richfaces-svn-commits] JBoss Rich Faces SVN: r531 - trunk/sandbox/sandbox-samples.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Tue Apr 24 13:46:15 EDT 2007


Author: abelevich
Date: 2007-04-24 13:46:15 -0400 (Tue, 24 Apr 2007)
New Revision: 531

Removed:
   trunk/sandbox/sandbox-samples/pom.xml
Log:


Deleted: trunk/sandbox/sandbox-samples/pom.xml
===================================================================
--- trunk/sandbox/sandbox-samples/pom.xml	2007-04-24 17:41:03 UTC (rev 530)
+++ trunk/sandbox/sandbox-samples/pom.xml	2007-04-24 17:46:15 UTC (rev 531)
@@ -1,237 +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>
-	<groupId>org.richfaces</groupId>
-	<artifactId>sandbox-samples</artifactId>
-	<packaging>pom</packaging>
-	<name>RichFaces Components Examples</name>
-	<version>3.0.1-SNAPSHOT</version>
-	<url>http://labs.jboss.com/jbossrichfaces/samples</url>
-
-	<!-- Profile to run jetty, so the tomcat jars are included in the bundle. They are not included by default -->
-	<build>
-		<plugins>
-			<plugin>
-				<groupId>org.mortbay.jetty</groupId>
-				<artifactId>maven-jetty-plugin</artifactId>
-				<version>6.1.1</version>
-				<configuration>
-					<scanIntervalSeconds>10</scanIntervalSeconds>
-					<connectors>
-						<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
-							<port>8080</port>
-							<maxIdleTime>60000</maxIdleTime>
-						</connector>
-					</connectors>
-				</configuration>
-
-			</plugin>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-surefire-plugin</artifactId>
-				<configuration>
-					<skip>true</skip>
-				</configuration>
-				<executions>
-					<execution>
-						<id>surefire-it</id>
-						<phase>integration-test</phase>
-						<goals>
-							<goal>test</goal>
-						</goals>
-						<configuration>
-							<skip>false</skip>
-						</configuration>
-					</execution>
-				</executions>
-			</plugin>
-		</plugins>
-	</build>
-
-	<dependencies>
-		<dependency>
-			<groupId>junit</groupId>
-			<artifactId>junit</artifactId>
-			<version>3.8.1</version>
-			<scope>test</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.ajax4jsf</groupId>
-			<artifactId>ajax4jsf</artifactId>
-			<version>1.1.1-SNAPSHOT</version>
-		</dependency>
-		<dependency>
-			<groupId>com.sun.facelets</groupId>
-			<artifactId>jsf-facelets</artifactId>
-			<version>1.1.12</version>
-		</dependency>
-		<dependency>
-			<groupId>javax.el</groupId>
-			<artifactId>el-api</artifactId>
-			<version>1.0</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>el-impl</groupId>
-			<artifactId>el-impl</artifactId>
-			<version>1.0</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>javax.servlet</groupId>
-			<artifactId>jstl</artifactId>
-			<version>1.0</version>
-			<scope>runtime</scope>
-		</dependency>
-	</dependencies>
-
-	<scm>
-		<connection>
-			scm:svn:http://anonsvn.jboss.org/repos/richfaces/
-		</connection>
-		<developerConnection>
-			scm:svn:https://svn.jboss.org/repos/richfaces/
-		</developerConnection>
-		<url>http://anonsvn.jboss.org/repos/richfaces/</url>
-	</scm>
-
-	<distributionManagement>
-	  <downloadUrl>http://labs.jboss.com/portal/jbossrichfaces/downloads</downloadUrl>
-                <repository>
-                        <id>release-repository</id>
-                        <uniqueVersion>false</uniqueVersion>
-                        <url>${releaseRepository}</url>
-                </repository>
-                <snapshotRepository>
-                        <id>snap-repository</id>
-                        <uniqueVersion>true</uniqueVersion>
-                        <url>${snapshotRepository}</url>
-                </snapshotRepository>
-	</distributionManagement>
-	<pluginRepositories>
-		<pluginRepository>
-			<releases>
-				<enabled>false</enabled>
-			</releases>
-			<snapshots>
-				<enabled>true</enabled>
-				<updatePolicy>always</updatePolicy>
-			</snapshots>
-			<id>maven2-snapshots.jboss.org</id>
-			<name>Jboss Repository for Maven Snapshots</name>
-			<url>http://snapshots.jboss.com/</url>
-		</pluginRepository>
-	</pluginRepositories>
-	<repositories>
-		<repository>
-			<releases/>
-			<snapshots>
-				<enabled>false</enabled>
-				<updatePolicy>never</updatePolicy>
-			</snapshots>
-			<id>maven-repository.dev.java.net</id>
-			<name>Java.net Repository for Maven</name>
-			<url>
-				https://maven-repository.dev.java.net/nonav/repository
-			</url>
-			<layout>legacy</layout>
-		</repository>
-		<repository>
-			<releases>
-				<enabled>false</enabled>
-			</releases>
-			<snapshots>
-				<enabled>true</enabled>
-				<updatePolicy>always</updatePolicy>
-			</snapshots>
-			<id>maven2-snapshots.jboss.org</id>
-			<name>Jboss Repository for Maven Snapshots</name>
-			<url>http://snapshots.jboss.com/</url>
-		</repository>
-	</repositories>
-	<profiles>
-		<profile>
-			<id>jsf12</id>
-			<build>
-				<defaultGoal>jetty:run</defaultGoal>
-				<plugins>
-					<plugin>
-						<groupId>org.apache.maven.plugins</groupId>
-						<artifactId>maven-compiler-plugin</artifactId>
-						<version>2.0</version>
-						<configuration>
-							<source>1.5</source>
-							<target>1.5</target>
-						</configuration>
-					</plugin>
-				</plugins>
-			</build>
-			<dependencies>
-				<dependency>
-					<groupId>javax.servlet</groupId>
-					<artifactId>servlet-api</artifactId>
-					<version>2.5</version>
-					<scope>provided</scope>
-				</dependency>
-				<dependency>
-					<groupId>javax.servlet.jsp</groupId>
-					<artifactId>jsp-api</artifactId>
-					<version>2.1</version>
-					<scope>provided</scope>
-				</dependency>
-				<dependency>
-					<groupId>javax.faces</groupId>
-					<artifactId>jsf-api</artifactId>
-					<version>1.2_03</version>
-				</dependency>
-				<dependency>
-					<groupId>javax.faces</groupId>
-					<artifactId>jsf-impl</artifactId>
-					<version>1.2_03</version>
-					<scope>runtime</scope>
-				</dependency>
-			</dependencies>
-		</profile>
-		<profile>
-			<id>myfaces</id>
-			<properties>
-				<myfaces>1.1.5</myfaces>
-    	        <tomahawk>1.1.5</tomahawk>
-			</properties>
-			<build>
-				<plugins/>
-			</build>
-			<dependencies>
-				<dependency>
-					<groupId>org.ajax4jsf</groupId>
-					<artifactId>ajax4jsf</artifactId>
-					<version>1.1.1-SNAPSHOT</version>
-					<exclusions>
-						<exclusion>
-							<groupId>javax.faces</groupId>
-							<artifactId>jsf-api</artifactId>
-						</exclusion>
-						<exclusion>
-							<groupId>javax.faces</groupId>
-							<artifactId>jsf-impl</artifactId>
-						</exclusion>
-					</exclusions>
-				</dependency>
-				<dependency>
-					<groupId>org.apache.myfaces.core</groupId>
-					<artifactId>myfaces-api</artifactId>
-					<version>${myfaces}</version>
-				</dependency>
-				<dependency>
-					<groupId>org.apache.myfaces.core</groupId>
-					<artifactId>myfaces-impl</artifactId>
-					<version>${myfaces}</version>
-					<scope>runtime</scope>
-				</dependency>
-			</dependencies>
-		</profile>
-	</profiles>
-  <modules>
-    <module>scrollable-grid-demo</module>
-  </modules>
-</project>
\ No newline at end of file




More information about the richfaces-svn-commits mailing list