[seam-commits] Seam SVN: r12752 - in modules: international/trunk and 1 other directories.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Tue May 18 14:20:45 EDT 2010


Author: lincolnthree
Date: 2010-05-18 14:20:45 -0400 (Tue, 18 May 2010)
New Revision: 12752

Modified:
   modules/faces/trunk/pom.xml
   modules/international/trunk/pom.xml
   modules/servlet/trunk/pom.xml
Log:
Removed too much. Re-added SLF4J-api provided scope dependency.

Modified: modules/faces/trunk/pom.xml
===================================================================
--- modules/faces/trunk/pom.xml	2010-05-18 17:41:18 UTC (rev 12751)
+++ modules/faces/trunk/pom.xml	2010-05-18 18:20:45 UTC (rev 12752)
@@ -38,6 +38,7 @@
 		<junit.version>4.8.1</junit.version>
 		<emma.maven.plugin.version>1.0-alpha-2</emma.maven.plugin.version>
 		<emma4it.maven.plugin.version>1.3</emma4it.maven.plugin.version>
+		<slf4j.version>1.5.10</slf4j.version>
 	</properties>
 
 	<dependencyManagement>
@@ -82,6 +83,12 @@
 			<artifactId>weld-extensions</artifactId>
 			<version>${weldx.version}</version>
 		</dependency>
+		<dependency>
+			<groupId>org.slf4j</groupId>
+			<artifactId>slf4j-api</artifactId>
+			<version>${slf4j.version}</version>
+			<scope>provided</scope>
+		</dependency>
 
 		<!-- Test Dependencies -->
 		<dependency>

Modified: modules/international/trunk/pom.xml
===================================================================
--- modules/international/trunk/pom.xml	2010-05-18 17:41:18 UTC (rev 12751)
+++ modules/international/trunk/pom.xml	2010-05-18 18:20:45 UTC (rev 12752)
@@ -1,216 +1,223 @@
 <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>
+	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.weld</groupId>
-    <artifactId>weld-parent</artifactId>
-    <version>9</version>
-  </parent>
+	<parent>
+		<groupId>org.jboss.weld</groupId>
+		<artifactId>weld-parent</artifactId>
+		<version>9</version>
+	</parent>
 
-  <artifactId>seam-international-parent</artifactId>
-  <groupId>org.jboss.seam.international</groupId>
-  <version>3.0.0-SNAPSHOT</version>
+	<artifactId>seam-international-parent</artifactId>
+	<groupId>org.jboss.seam.international</groupId>
+	<version>3.0.0-SNAPSHOT</version>
 
-  <packaging>pom</packaging>
-  <name>Seam International Module Parent POM</name>
+	<packaging>pom</packaging>
+	<name>Seam International Module Parent POM</name>
 
-  <description>The Parent for Seam International Module</description>
-  <url>http://www.seamframework.org</url>
+	<description>The Parent for Seam International Module</description>
+	<url>http://www.seamframework.org</url>
 
-  <modules>
-    <module>api</module>
-    <module>impl</module>
-    <!--module>docs</module-->
-    <!--module>examples/??</module-->
-  </modules>
+	<modules>
+		<module>api</module>
+		<module>impl</module>
+		<!--module>docs</module-->
+		<!--module>examples/??</module-->
+	</modules>
 
-  <properties>
-    <arquillian.version>1.0.0-SNAPSHOT</arquillian.version>
-    <seam.xml.version>3.0.0-SNAPSHOT</seam.xml.version>
-    <weld.extensions.version>1.0.0.Alpha1</weld.extensions.version>
-    <weld.api.version>1.0-SP1</weld.api.version>
-    <junit.version>4.8.1</junit.version>
-    <joda-time.version>1.6</joda-time.version>
-    <pretty-time.version>1.0.6</pretty-time.version>
-    <emma.maven.plugin.version>1.0-alpha-2</emma.maven.plugin.version>
-    <emma4it.maven.plugin.version>1.3</emma4it.maven.plugin.version>
-  </properties>
+	<properties>
+		<arquillian.version>1.0.0-SNAPSHOT</arquillian.version>
+		<seam.xml.version>3.0.0-SNAPSHOT</seam.xml.version>
+		<weld.extensions.version>1.0.0.Alpha1</weld.extensions.version>
+		<weld.api.version>1.0-SP1</weld.api.version>
+		<junit.version>4.8.1</junit.version>
+		<joda-time.version>1.6</joda-time.version>
+		<pretty-time.version>1.0.6</pretty-time.version>
+		<emma.maven.plugin.version>1.0-alpha-2</emma.maven.plugin.version>
+		<emma4it.maven.plugin.version>1.3</emma4it.maven.plugin.version>
+		<slf4j.version>1.5.10</slf4j.version>
+	</properties>
 
-  <dependencyManagement>
-    <dependencies>
-      <dependency>
-        <groupId>org.jboss.weld</groupId>
-        <artifactId>weld-api-bom</artifactId>
-        <version>${weld.api.version}</version>
-        <scope>import</scope>
-        <type>pom</type>
-      </dependency>
-    </dependencies>
-  </dependencyManagement>
+	<dependencyManagement>
+		<dependencies>
+			<dependency>
+				<groupId>org.jboss.weld</groupId>
+				<artifactId>weld-api-bom</artifactId>
+				<version>${weld.api.version}</version>
+				<scope>import</scope>
+				<type>pom</type>
+			</dependency>
+		</dependencies>
+	</dependencyManagement>
 
-  <dependencies>
+	<dependencies>
 
-    <!-- Environment Dependencies -->
-    <dependency>
-      <groupId>javax.el</groupId>
-      <artifactId>el-api</artifactId>
-      <scope>provided</scope>
-    </dependency>
-    <dependency>
-      <groupId>javax.enterprise</groupId>
-      <artifactId>cdi-api</artifactId>
-      <scope>provided</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.jboss.weld</groupId>
-      <artifactId>weld-extensions</artifactId>
-      <version>${weld.extensions.version}</version>
-    </dependency>
-    <dependency>
-      <groupId>joda-time</groupId>
-      <artifactId>joda-time</artifactId>
-      <version>${joda-time.version}</version>
-    </dependency>
-    <dependency>
-      <groupId>com.ocpsoft</groupId>
-      <artifactId>ocpsoft-pretty-time</artifactId>
-      <version>${pretty-time.version}</version>
-    </dependency>
+		<!-- Environment Dependencies -->
+		<dependency>
+			<groupId>javax.el</groupId>
+			<artifactId>el-api</artifactId>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>javax.enterprise</groupId>
+			<artifactId>cdi-api</artifactId>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.jboss.weld</groupId>
+			<artifactId>weld-extensions</artifactId>
+			<version>${weld.extensions.version}</version>
+		</dependency>
+		<dependency>
+			<groupId>joda-time</groupId>
+			<artifactId>joda-time</artifactId>
+			<version>${joda-time.version}</version>
+		</dependency>
+		<dependency>
+			<groupId>com.ocpsoft</groupId>
+			<artifactId>ocpsoft-pretty-time</artifactId>
+			<version>${pretty-time.version}</version>
+		</dependency>
+		<dependency>
+			<groupId>org.slf4j</groupId>
+			<artifactId>slf4j-api</artifactId>
+			<version>${slf4j.version}</version>
+			<scope>provided</scope>
+		</dependency>
 
-    <!-- Test Dependencies -->
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>${junit.version}</version>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.jboss.arquillian</groupId>
-      <artifactId>arquillian-junit</artifactId>
-      <version>${arquillian.version}</version>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.jboss.arquillian.container</groupId>
-      <artifactId>arquillian-weld-embedded</artifactId>
-      <version>${arquillian.version}</version>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.jboss.seam.xml</groupId>
-      <artifactId>seam-xml-bean-config</artifactId>
-      <version>${seam.xml.version}</version>
-    </dependency>
-  </dependencies>
+		<!-- Test Dependencies -->
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+			<version>${junit.version}</version>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.jboss.arquillian</groupId>
+			<artifactId>arquillian-junit</artifactId>
+			<version>${arquillian.version}</version>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.jboss.arquillian.container</groupId>
+			<artifactId>arquillian-weld-embedded</artifactId>
+			<version>${arquillian.version}</version>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.jboss.seam.xml</groupId>
+			<artifactId>seam-xml-bean-config</artifactId>
+			<version>${seam.xml.version}</version>
+		</dependency>
+	</dependencies>
 
-  <developers>
-    <developer>
-      <name>Lincoln Baxter, III</name>
-      <email>lincolnbaxter at gmail.com</email>
-      <url>http://ocpsoft.com</url>
-      <organization>JBoss, by Red Hat</organization>
-      <organizationUrl>http://jboss.org</organizationUrl>
-      <timezone>EST</timezone>
-      <roles>
-        <role>Project Lead</role>
-      </roles>
-    </developer>
-    <developer>
-      <name>Ken Finnigan</name>
-      <timezone>GMT</timezone>
-      <roles>
-        <role>Project Lead</role>
-      </roles>
-    </developer>
-  </developers>
+	<developers>
+		<developer>
+			<name>Lincoln Baxter, III</name>
+			<email>lincolnbaxter at gmail.com</email>
+			<url>http://ocpsoft.com</url>
+			<organization>JBoss, by Red Hat</organization>
+			<organizationUrl>http://jboss.org</organizationUrl>
+			<timezone>EST</timezone>
+			<roles>
+				<role>Project Lead</role>
+			</roles>
+		</developer>
+		<developer>
+			<name>Ken Finnigan</name>
+			<timezone>GMT</timezone>
+			<roles>
+				<role>Project Lead</role>
+			</roles>
+		</developer>
+	</developers>
 
-  <scm>
-    <connection>scm:svn:http://anonsvn.jboss.org/repos/seam/modules/international/trunk</connection>
-    <developerConnection>scm:svn:https://svn.jboss.org/repos/seam/modules/international/trunk</developerConnection>
-    <url>http://fisheye.jboss.org/browse/Seam/modules/international/trunk</url>
-  </scm>
+	<scm>
+		<connection>scm:svn:http://anonsvn.jboss.org/repos/seam/modules/international/trunk</connection>
+		<developerConnection>scm:svn:https://svn.jboss.org/repos/seam/modules/international/trunk</developerConnection>
+		<url>http://fisheye.jboss.org/browse/Seam/modules/international/trunk</url>
+	</scm>
 
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-compiler-plugin</artifactId>
-        <version>2.0.2</version>
-        <configuration>
-          <source>1.5</source>
-          <target>1.5</target>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<version>2.0.2</version>
+				<configuration>
+					<source>1.5</source>
+					<target>1.5</target>
+				</configuration>
+			</plugin>
+		</plugins>
+	</build>
 
-  <profiles>
-    <profile>
-      <id>code-coverage</id>
-      <build>
-        <pluginManagement>
-          <plugins>
-            <plugin>
-              <groupId>org.codehaus.mojo</groupId>
-              <artifactId>emma-maven-plugin</artifactId>
-              <version>${emma.maven.plugin.version}</version>
-              <inherited>true</inherited>
-              <executions>
-                <execution>
-                  <id>instrumentation</id>
-                  <phase>process-classes</phase>
-                  <goals>
-                    <goal>instrument</goal>
-                  </goals>
-                  <configuration>
-                    <verbose>true</verbose>
-                  </configuration>
-                </execution>
-                <execution>
-                  <id>cleaning</id>
-                  <phase>clean</phase>
-                  <goals>
-                    <goal>clean</goal>
-                  </goals>
-                </execution>
-              </executions>
-            </plugin>
+	<profiles>
+		<profile>
+			<id>code-coverage</id>
+			<build>
+				<pluginManagement>
+					<plugins>
+						<plugin>
+							<groupId>org.codehaus.mojo</groupId>
+							<artifactId>emma-maven-plugin</artifactId>
+							<version>${emma.maven.plugin.version}</version>
+							<inherited>true</inherited>
+							<executions>
+								<execution>
+									<id>instrumentation</id>
+									<phase>process-classes</phase>
+									<goals>
+										<goal>instrument</goal>
+									</goals>
+									<configuration>
+										<verbose>true</verbose>
+									</configuration>
+								</execution>
+								<execution>
+									<id>cleaning</id>
+									<phase>clean</phase>
+									<goals>
+										<goal>clean</goal>
+									</goals>
+								</execution>
+							</executions>
+						</plugin>
 
-            <plugin>
-              <groupId>org.apache.maven.plugins</groupId>
-              <artifactId>maven-surefire-plugin</artifactId>
-              <inherited>true</inherited>
-              <configuration>
-                <forkMode>once</forkMode>
-                <classesDirectory>${project.build.directory}/generated-classes/emma/classes</classesDirectory>
-              </configuration>
-            </plugin>
+						<plugin>
+							<groupId>org.apache.maven.plugins</groupId>
+							<artifactId>maven-surefire-plugin</artifactId>
+							<inherited>true</inherited>
+							<configuration>
+								<forkMode>once</forkMode>
+								<classesDirectory>${project.build.directory}/generated-classes/emma/classes</classesDirectory>
+							</configuration>
+						</plugin>
 
-            <plugin>
-              <groupId>org.sonatype.maven.plugin</groupId>
-              <artifactId>emma4it-maven-plugin</artifactId>
-              <version>${emma4it.maven.plugin.version}</version>
-              <executions>
-                <execution>
-                  <id>report</id>
-                  <phase>test</phase>
-                  <goals>
-                    <goal>report</goal>
-                  </goals>
-                  <configuration>
-                    <sourceSets>
-                      <sourceSet>
-                        <directory>${project.build.sourceDirectory}</directory>
-                      </sourceSet>
-                    </sourceSets>
-                  </configuration>
-                </execution>
-              </executions>
-            </plugin>
-          </plugins>
-        </pluginManagement>
-      </build>
-    </profile>
-  </profiles>
+						<plugin>
+							<groupId>org.sonatype.maven.plugin</groupId>
+							<artifactId>emma4it-maven-plugin</artifactId>
+							<version>${emma4it.maven.plugin.version}</version>
+							<executions>
+								<execution>
+									<id>report</id>
+									<phase>test</phase>
+									<goals>
+										<goal>report</goal>
+									</goals>
+									<configuration>
+										<sourceSets>
+											<sourceSet>
+												<directory>${project.build.sourceDirectory}</directory>
+											</sourceSet>
+										</sourceSets>
+									</configuration>
+								</execution>
+							</executions>
+						</plugin>
+					</plugins>
+				</pluginManagement>
+			</build>
+		</profile>
+	</profiles>
 </project>

Modified: modules/servlet/trunk/pom.xml
===================================================================
--- modules/servlet/trunk/pom.xml	2010-05-18 17:41:18 UTC (rev 12751)
+++ modules/servlet/trunk/pom.xml	2010-05-18 18:20:45 UTC (rev 12752)
@@ -54,6 +54,7 @@
 		<arquillian.version>1.0.0-SNAPSHOT</arquillian.version>
 		<weld.api.version>1.0-SP1</weld.api.version>
 		<weldx.version>1.0.0-SNAPSHOT</weldx.version>
+		<slf4j.version>1.5.10</slf4j.version>
 	</properties>
 
 	<dependencies>
@@ -64,7 +65,7 @@
 			<artifactId>weld-core</artifactId>
 			<version>1.0.1-Final</version>
 			<scope>provided</scope>
-         <optional>true</optional>
+			<optional>true</optional>
 		</dependency>
 
 		<!-- Environment Dependencies -->
@@ -91,6 +92,12 @@
 			<version>${weldx.version}</version>
 			<scope>provided</scope>
 		</dependency>
+		<dependency>
+			<groupId>org.slf4j</groupId>
+			<artifactId>slf4j-api</artifactId>
+			<version>${slf4j.version}</version>
+			<scope>provided</scope>
+		</dependency>
 
 		<!-- Test Dependencies -->
 		<dependency>



More information about the seam-commits mailing list