[ajax4jsf-svn-commits] JBoss Ajax4JSF SVN: r32 - in trunk: cdk and 7 other directories.

ajax4jsf-svn-commits at lists.jboss.org ajax4jsf-svn-commits at lists.jboss.org
Mon Mar 12 12:06:45 EDT 2007


Author: alexsmirnov
Date: 2007-03-12 12:06:45 -0400 (Mon, 12 Mar 2007)
New Revision: 32

Added:
   trunk/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
   trunk/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
Modified:
   trunk/cdk/compiler/pom.xml
   trunk/cdk/generator/pom.xml
   trunk/cdk/maven-archetype-jsf-component/pom.xml
   trunk/cdk/maven-cdk-plugin/pom.xml
   trunk/cdk/pom.xml
   trunk/framework/pom.xml
   trunk/pom.xml
Log:
Fix versions, project url's and repository locations

Modified: trunk/cdk/compiler/pom.xml
===================================================================
--- trunk/cdk/compiler/pom.xml	2007-03-09 20:09:51 UTC (rev 31)
+++ trunk/cdk/compiler/pom.xml	2007-03-12 16:06:45 UTC (rev 32)
@@ -8,7 +8,7 @@
   <groupId>org.ajax4jsf.cdk</groupId>
   <artifactId>compiler</artifactId>
   <name>JSF Renderers templates complier</name>
-  <url>https://ajax4jsf.dev.java.net/cdk/compiler</url>
+  <url>http://labs.jboss.com/wiki/Ajax4jsf/cdk/compiler</url>
 	  <build>
 	    <plugins>
 	      <plugin>

Modified: trunk/cdk/generator/pom.xml
===================================================================
--- trunk/cdk/generator/pom.xml	2007-03-09 20:09:51 UTC (rev 31)
+++ trunk/cdk/generator/pom.xml	2007-03-12 16:06:45 UTC (rev 32)
@@ -9,7 +9,7 @@
   <groupId>org.ajax4jsf.cdk</groupId>
   <artifactId>generator</artifactId>
   <name>Java Server Faces component generator</name>
-  <url>https://ajax4jsf.dev.java.net/cdk/generator</url>
+  <url>http://labs.jboss.com/wiki/Ajax4jsf/cdk/generator</url>
 
   <build>
     <plugins>

Modified: trunk/cdk/maven-archetype-jsf-component/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-jsf-component/pom.xml	2007-03-09 20:09:51 UTC (rev 31)
+++ trunk/cdk/maven-archetype-jsf-component/pom.xml	2007-03-12 16:06:45 UTC (rev 32)
@@ -8,5 +8,4 @@
   <groupId>org.ajax4jsf.cdk</groupId>
   <artifactId>maven-archetype-jsf-component</artifactId>
   <name>Archetype - maven-archetype-jsf-component</name>
-  <url>https://ajax4jsf.dev.java.net/cdk/maven-archetype-jsf-component</url>
 </project>
\ No newline at end of file

Added: trunk/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml	                        (rev 0)
+++ trunk/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml	2007-03-12 16:06:45 UTC (rev 32)
@@ -0,0 +1,45 @@
+<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>${groupId}</groupId>
+  <artifactId>${artifactId}</artifactId>
+  <version>${version}</version>
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.ajax4jsf.cdk</groupId>
+				<artifactId>maven-cdk-plugin</artifactId>
+				  <version>1.1.1-SNAPSHOT</version>
+				<configuration>
+					<library>
+					<prefix>${groupId}</prefix>
+					<taglib>
+						<shortName>${artifactId}</shortName>
+					</taglib>
+					</library>
+				</configuration>
+				<executions>
+					<execution>
+						<phase>generate-sources</phase>
+						<goals>
+							<goal>generate</goal>
+						</goals>
+					</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>
+	</dependencies>
+</project>

Added: trunk/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml	                        (rev 0)
+++ trunk/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml	2007-03-12 16:06:45 UTC (rev 32)
@@ -0,0 +1,79 @@
+<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>${groupId}</groupId>
+	<artifactId>${artifactId}</artifactId>
+	<version>${version}</version>
+	<packaging>war</packaging>
+	<name>JSF Maven Webapp</name>
+	<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>
+		</plugins>
+		<finalName>webapp</finalName>
+	</build>
+
+	<pluginRepositories>
+		<!-- Repository to get the jetty plugin -->
+		<pluginRepository>
+			<id>mortbay-repo</id>
+			<name>mortbay-repo</name>
+			<url>http://www.mortbay.org/maven2/snapshot</url>
+		</pluginRepository>
+		<!-- Repository to get the Ajax4jsf CDK plugin -->
+		<pluginRepository>
+			<id>repository.jboss.com</id>
+			<name>Jboss Repository for Maven Artifacts</name>
+			<url>http://repository.jboss.com/maven2</url>
+		</pluginRepository>
+	</pluginRepositories>
+
+	<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>
+</project>

Modified: trunk/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- trunk/cdk/maven-cdk-plugin/pom.xml	2007-03-09 20:09:51 UTC (rev 31)
+++ trunk/cdk/maven-cdk-plugin/pom.xml	2007-03-12 16:06:45 UTC (rev 32)
@@ -9,7 +9,7 @@
 	<artifactId>maven-cdk-plugin</artifactId>
 	<packaging>maven-plugin</packaging>
 	<name>Maven plugin for JSF components code generation</name>
-	<url>https://ajax4jsf.dev.java.net/cdk/maven-cdk-plugin/</url>
+	<url>http://labs.jboss.com/wiki/Ajax4jsf/cdk/maven-cdk-plugin/</url>
 	<dependencies>
 		<dependency>
 			<groupId>org.apache.maven</groupId>

Modified: trunk/cdk/pom.xml
===================================================================
--- trunk/cdk/pom.xml	2007-03-09 20:09:51 UTC (rev 31)
+++ trunk/cdk/pom.xml	2007-03-12 16:06:45 UTC (rev 32)
@@ -8,9 +8,9 @@
 	<groupId>org.ajax4jsf</groupId>
 	<artifactId>cdk</artifactId>
 	<packaging>pom</packaging>
-	<name>Components Development kit</name>
+	<name>JSF Components Development kit</name>
 	<version>1.1.1-SNAPSHOT</version>
-	<url>https://ajax4jsf.dev.java.net/cdk</url>
+	<url>http://labs.jboss.com/wiki/Ajax4jsf/cdk</url>
 	<dependencies />
 	<build>
 		<pluginManagement>

Modified: trunk/framework/pom.xml
===================================================================
--- trunk/framework/pom.xml	2007-03-09 20:09:51 UTC (rev 31)
+++ trunk/framework/pom.xml	2007-03-12 16:06:45 UTC (rev 32)
@@ -8,7 +8,7 @@
 	<groupId>org.ajax4jsf</groupId>
 	<artifactId>ajax4jsf</artifactId>
 	<name>Java Server Faces AJAX framework</name>
-	<url>https://ajax4jsf.dev.java.net</url>
+	<url>http://labs.jboss.com/wiki/Ajax4jsf/framework</url>
 	<properties>
 		<jsfVersion>1.1</jsfVersion>
 	</properties>
@@ -80,18 +80,6 @@
 			</plugin>
 		</plugins>
 	</reporting>
-	<!--
-		<distributionManagement>
-		<relocation>
-		<groupId>org.ajax4jsf</groupId>
-		<artifactId>ajax4jsf</artifactId>
-		<version>1.0</version>
-		<message>
-		We have moved the 'framework' to name 'ajax4jsf'
-		</message>
-		</relocation>
-		</distributionManagement>
-	-->
 	<dependencies>
 		<dependency>
 			<groupId>junit</groupId>
@@ -138,11 +126,6 @@
 				</exclusion>
 			</exclusions>
 		</dependency>
-		<!-- dependency>
-			<groupId>com.sdicons.jsontools</groupId>
-			<artifactId>jsontools-core </artifactId>
-			<version>1.5</version>
-			</dependency-->
 		<dependency>
 			<groupId>commons-logging</groupId>
 			<artifactId>commons-logging</artifactId>

Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml	2007-03-09 20:09:51 UTC (rev 31)
+++ trunk/pom.xml	2007-03-12 16:06:45 UTC (rev 32)
@@ -5,7 +5,7 @@
 	<packaging>pom</packaging>
 	<version>1.1.1-SNAPSHOT</version>
 	<name>Ajax for Java Server faces core project</name>
-	<url>http://www.ajax4jsf.org</url>
+	<url>http://labs.jboss.com/jbossajax4jsf</url>
 	<licenses>
 		<license>
 			<name>LGPL 2.1</name>
@@ -59,7 +59,18 @@
 			<timezone>+8</timezone>
 		</developer>
 	</developers>
-	<distributionManagement>
+	<distributionManagement>
+	  <downloadUrl>http://labs.jboss.com/portal/jbossajax4jsf/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>
 	<repositories>
 		<repository>




More information about the ajax4jsf-svn-commits mailing list