logo       

[picocontainer-scm] [picocontainer] [3162] java/picocontainer/trunk: Update: msg#00070

java.picocontainer.cvs

Subject: [picocontainer-scm] [picocontainer] [3162] java/picocontainer/trunk: Updated dependencies.

Revision
3162
Author
mauro
Date
2006-12-27 08:27:31 -0600 (Wed, 27 Dec 2006)

Log Message

Updated dependencies.

Modified Paths

Diff

Modified: java/picocontainer/trunk/container/pom.xml (3161 => 3162)

--- java/picocontainer/trunk/container/pom.xml	2006-12-27 13:31:41 UTC (rev 3161)
+++ java/picocontainer/trunk/container/pom.xml	2006-12-27 14:27:31 UTC (rev 3162)
@@ -9,9 +9,4 @@
 	<artifactId>picocontainer</artifactId>
 	<name>PicoContainer Core</name>
 	<packaging>jar</packaging>
-	<scm>
-		<connection>scm:svn:https://svn.codehaus.org/picocontainer/java/picocontainer/trunk/container</connection>
-		<developerConnection>scm:svn:https://svn.codehaus.org/picocontainer/java/picocontainer/trunk/container</developerConnection>
-		<url>https://svn.codehaus.org/picocontainer/java/picocontainer/trunk/container</url>
-	</scm>
 </project>

Modified: java/picocontainer/trunk/gems/pom.xml (3161 => 3162)

--- java/picocontainer/trunk/gems/pom.xml	2006-12-27 13:31:41 UTC (rev 3161)
+++ java/picocontainer/trunk/gems/pom.xml	2006-12-27 14:27:31 UTC (rev 3162)
@@ -9,41 +9,43 @@
 	<artifactId>picocontainer-gems</artifactId>
 	<name>PicoContainer Gems</name>
 	<packaging>jar</packaging>
-	<scm>
-		<connection>scm:svn:https://svn.codehaus.org/picocontainer/java/picocontainer/trunk/gems</connection>
-		<developerConnection>scm:svn:https://svn.codehaus.org/picocontainer/java/picocontainer/trunk/gems</developerConnection>
-		<url>https://svn.codehaus.org/picocontainer/java/picocontainer/trunk/gems</url>
-	</scm>
 	<dependencies>
 		<dependency>
 			<groupId>${pom.groupId}</groupId>
 			<artifactId>picocontainer</artifactId>
 		</dependency>
-		<dependency>
-			<groupId>${pom.groupId}</groupId>
-			<artifactId>picocontainer-tck</artifactId>
-		</dependency>
 		<!-- For proxy -->
 		<dependency>
 			<groupId>proxytoys</groupId>
 			<artifactId>proxytoys</artifactId>
+            <optional>true</optional>
 		</dependency>
 		<dependency>
 			<groupId>cglib</groupId>
 			<artifactId>cglib-nodep</artifactId>
+            <optional>true</optional>
 		</dependency>
 		<!-- For monitors -->
 		<dependency>
 			<groupId>commons-logging</groupId>
 			<artifactId>commons-logging</artifactId>
+            <scope>provided</scope>
 		</dependency>
 		<dependency>
 			<groupId>log4j</groupId>
 			<artifactId>log4j</artifactId>
+            <scope>provided</scope>
 		</dependency>
 		<dependency>
 			<groupId>prefuse</groupId>
 			<artifactId>prefuse</artifactId>
+            <optional>true</optional>
 		</dependency>
+        <!-- For test -->
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>picocontainer-tck</artifactId>
+            <scope>test</scope>
+        </dependency>        
 	</dependencies>
 </project>

Modified: java/picocontainer/trunk/pom.xml (3161 => 3162)

--- java/picocontainer/trunk/pom.xml	2006-12-27 13:31:41 UTC (rev 3161)
+++ java/picocontainer/trunk/pom.xml	2006-12-27 14:27:31 UTC (rev 3162)
@@ -1,352 +1,370 @@
 <?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.picocontainer</groupId>
-	<artifactId>picocontainer-parent</artifactId>
-	<name>PicoContainer Parent</name>
-	<version>1.3-SNAPSHOT</version>
-	<packaging>pom</packaging>
-	<url>http://www.picocontainer.org</url>
-	<modules>
-		<module>container</module>
-		<module>tck</module>
-		<module>gems</module>
-	</modules>
-	<organization>
-		<name>Codehaus</name>
-		<url>http://codehaus.org/</url>
-	</organization>
-	<inceptionYear>2003</inceptionYear>
-	<description><![CDATA[Please refer to the <a href="" website</a> for documentation.]]></description>
-	<issueManagement>
-		<system>JIRA</system>
-		<url>http://jira.codehaus.org/browse/PICO</url>
-	</issueManagement>
-	<licenses>
-		<license>
-			<url>https://svn.codehaus.org/picocontainer/java/picocontainer/trunk/LICENSE.txt</url>
-			<distribution>repo</distribution>
-		</license>
-	</licenses>
-	<scm>
-		<connection>scm:svn:https://svn.codehaus.org/picocontainer/java/picocontainer/trunk</connection>
-		<developerConnection>scm:svn:https://svn.codehaus.org/picocontainer/java/picocontainer/trunk</developerConnection>
-		<url>https://svn.codehaus.org/picocontainer/java/picocontainer/trunk</url>
-	</scm>
-	<repositories>
-		<repository>
-			<id>codehaus-repository</id>
-			<name>Codehaus Repository</name>
-			<url>http://repository.codehaus.org</url>
-		</repository>
-		<repository>
-			<id>codehaus-snapshots-repository</id>
-			<name>Codehaus Snapshots Repository</name>
-			<url>http://snapshots.repository.codehaus.org</url>
-		</repository>
-		<repository>
-			<id>codehaus-dist-repository</id>
-			<name>Codehaus Dist Repository</name>
-			<url>http://dist.codehaus.org</url>
-			<layout>legacy</layout>
-			<snapshots>
-				<enabled>true</enabled>
-			</snapshots>
-		</repository>
-		<repository>
-			<layout>legacy</layout>
-			<id>astrogrid.org-repository</id>
-			<name>Astrogrid Repository</name>
-			<url>http://www.astrogrid.org/maven</url>
-		</repository>
-	</repositories>
-	<pluginRepositories>
-		<pluginRepository>
-			<id>codehaus-plugin-snapshots-repository</id>
-			<name>Codehaus Plugin Snapshots Repository</name>
-			<url>http://snapshots.maven.codehaus.org/maven2/</url>
-			<snapshots>
-				<enabled>true</enabled>
-			</snapshots>
-		</pluginRepository>
-	</pluginRepositories>
-	<distributionManagement>
-		<repository>
-			<id>codehaus-picocontainer-repository</id>
-			<name>Codehaus PicoContainer Repository</name>
-			<url>dav:https://dav.codehaus.org/repository/picocontainer/</url>
-		</repository>
-		<snapshotRepository>
-			<id>codehaus-picocontainer-snapshot-repository</id>
-			<name>Codehaus PicoContainer Snapshot Repository</name>
-			<url>dav:https://dav.codehaus.org/snapshots.repository/picocontainer/</url>
-		</snapshotRepository>
-		<site>
-			<id>picocontainer-site</id>
-			<url>dav:https://dav.codehaus.org/picocontainer/</url>
-		</site>
-	</distributionManagement>
-	<dependencyManagement>
-		<dependencies>
-			<dependency>
-				<groupId>${pom.groupId}</groupId>
-				<artifactId>picocontainer</artifactId>
-				<version>${pom.version}</version>
-			</dependency>
-			<dependency>
-				<groupId>${pom.groupId}</groupId>
-				<artifactId>picocontainer-tck</artifactId>
-				<version>${pom.version}</version>
-				<scope>test</scope>
-			</dependency>
-			<!-- For proxy -->
-			<dependency>
-				<groupId>proxytoys</groupId>
-				<artifactId>proxytoys</artifactId>
-				<version>0.2.1</version>
-				<optional>true</optional>				
-			</dependency>
-			<dependency>
-				<groupId>cglib</groupId>
-				<artifactId>cglib-nodep</artifactId>
-				<version>2.1_3</version>
-				<optional>true</optional>				
-			</dependency>
-			<!-- For monitors -->
-			<dependency>
-				<groupId>commons-logging</groupId>
-				<artifactId>commons-logging</artifactId>
-				<version>1.0.4</version>
-				<exclusions>
-					<exclusion>
-						<groupId>avalon-framework</groupId>
-						<artifactId>avalon-framework</artifactId>
-					</exclusion>
-				</exclusions>
-				<scope>provided</scope>
-			</dependency>
-			<dependency>
-				<groupId>log4j</groupId>
-				<artifactId>log4j</artifactId>
-				<version>1.2.8</version>
-				<scope>provided</scope>
-				<optional>true</optional>
-			</dependency>
-			<!-- test time only -->
-			<dependency>
-				<groupId>junit</groupId>
-				<artifactId>junit</artifactId>
-				<version>3.8.1</version>
-				<scope>test</scope>
-			</dependency>
-			<dependency>
-				<groupId>jmock</groupId>
-				<artifactId>jmock</artifactId>
-				<version>1.0.1</version>
-				<scope>test</scope>
-			</dependency>
-			<dependency>
-				<groupId>xstream</groupId>
-				<artifactId>xstream</artifactId>
-				<version>1.1.2</version>
-				<scope>test</scope>
-			</dependency>
-			<dependency>
-				<groupId>xpp3</groupId>
-				<artifactId>xpp3</artifactId>
-				<version>1.1.3.4-RC8</version>
-				<scope>test</scope>
-			</dependency>
-			<dependency>
-				<groupId>prefuse</groupId>
-				<artifactId>prefuse</artifactId>
-				<version>2006.07.15</version>
-				<scope>provided</scope>
-				<optional>true</optional>
-			</dependency>
-		</dependencies>
-	</dependencyManagement>
-	<dependencies>
-		<!-- test time only -->
-		<dependency>
-			<groupId>junit</groupId>
-			<artifactId>junit</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>jmock</groupId>
-			<artifactId>jmock</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>xstream</groupId>
-			<artifactId>xstream</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>xpp3</groupId>
-			<artifactId>xpp3</artifactId>
-		</dependency>
-	</dependencies>
-	<build>
-		<sourceDirectory>src/java</sourceDirectory>
-		<testSourceDirectory>src/test</testSourceDirectory>
-		<resources>
-			<resource>
-				<directory>src/java</directory>
-				<excludes>
-					<exclude>**/*.java</exclude>
-				</excludes>
-			</resource>
-		</resources>
-		<testResources>
-			<testResource>
-				<directory>src/test</directory>
-				<excludes>
-					<exclude>**/*.java</exclude>
-				</excludes>
-			</testResource>
-		</testResources>
-		<plugins>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-compiler-plugin</artifactId>
-				<configuration>
-					<source>1.3</source>
-					<target>1.3</target>
-					<encoding>UTF-8</encoding>
-					<optimize>false</optimize>
-					<debug>true</debug>
-					<showDeprecation>true</showDeprecation>
-				</configuration>
-			</plugin>
-			<plugin>
-				<inherited>true</inherited>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-source-plugin</artifactId>
-				<executions>
-					<execution>
-						<id>attach-sources</id>
-						<goals>
-							<goal>jar</goal>
-						</goals>
-					</execution>
-				</executions>
-			</plugin>
-			<plugin>
-				<inherited>true</inherited>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-javadoc-plugin</artifactId>
-				<executions>
-					<execution>
-						<id>attach-javadocs</id>
-						<goals>
-							<goal>jar</goal>
-						</goals>
-					</execution>
-				</executions>
-				<configuration>
-					<links>
-						<link>http://java.sun.com/j2se/1.4.2/docs/api/</link>
-						<link>http://proxytoys.codehaus.org/apidocs/</link>
-						<link>http://jakarta.apache.org/commons/logging/commons-logging-1.0.4/docs/apidocs/</link>
-					</links>
-					<stylesheet>maven</stylesheet>
-					<header><![CDATA[<img class="logo" src=""
-					<linksource>true</linksource>
-				</configuration>
-			</plugin>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-surefire-plugin</artifactId>
-				<version>2.2</version>
-				<configuration>
-					<forkMode>once</forkMode>
-					<printSummary>true</printSummary>
-					<useFile>true</useFile>
-					<systemProperties>
-						<property>
-							<name>test.src.dir</name>
-							<value>${basedir}/src/test</value>
-						</property>
-						<property>
-							<name>java.awt.headless</name>
-							<value>true</value>
-						</property>
-					</systemProperties>
-				</configuration>
-			</plugin>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-clover-plugin</artifactId>
-				<configuration>
-					<licenseLocation>${user.home}/licenses/clover.license</licenseLocation>
-					<jdk>1.5</jdk>
-				</configuration>
-			</plugin>
-			<plugin>
-				<groupId>org.codehaus.mojo</groupId>
-				<artifactId>cobertura-maven-plugin</artifactId>
-				<version>2.0</version>
-				<executions>
-					<execution>
-						<goals>
-							<goal>clean</goal>
-						</goals>
-					</execution>
-				</executions>
-			</plugin>
-		</plugins>
-		<extensions>
-			<extension>
-				<groupId>org.apache.maven.wagon</groupId>
-				<artifactId>wagon-ssh-external</artifactId>
-				<version>1.0-beta-1</version>
-			</extension>
-			<extension>
-				<groupId>org.apache.maven.wagon</groupId>
-				<artifactId>wagon-webdav</artifactId>
-				<version>1.0-beta-1</version>
-			</extension>
-		</extensions>
-	</build>
-	<reporting>
-		<plugins>
-			<plugin>
-				<inherited>true</inherited>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-javadoc-plugin</artifactId>
-				<reportSets>
-					<reportSet>
-						<reports>
-							<report>javadoc</report>
-						</reports>
-					</reportSet>
-				</reportSets>
-			</plugin>
-			<plugin>
-				<groupId>org.codehaus.mojo</groupId>
-				<artifactId>cobertura-maven-plugin</artifactId>
-			</plugin>
-		</plugins>
-	</reporting>
-	<profiles>
-		<profile>
-			<id>release-profile</id>
-			<activation>
-				<property>
-					<name>release-mode</name>
-				</property>
-			</activation>
-			<build>
-				<plugins>
-					<plugin>
-						<groupId>org.apache.maven.plugins</groupId>
-						<artifactId>maven-compiler-plugin</artifactId>
-						<configuration>
-							<optimize>true</optimize>
-							<debug>false</debug>
-						</configuration>
-					</plugin>
-				</plugins>
-			</build>
-		</profile>
-	</profiles>
+<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.picocontainer</groupId>
+    <artifactId>picocontainer-parent</artifactId>
+    <name>PicoContainer Parent</name>
+    <version>1.3-SNAPSHOT</version>
+    <packaging>pom</packaging>
+    <url>http://www.picocontainer.org</url>
+    <modules>
+        <module>container</module>
+        <module>tck</module>
+        <module>gems</module>
+    </modules>
+    <organization>
+        <name>Codehaus</name>
+        <url>http://codehaus.org/</url>
+    </organization>
+    <inceptionYear>2003</inceptionYear>
+    <description>
+        <![CDATA[Please refer to the <a href="" website</a> for documentation.]]>
+    </description>
+    <issueManagement>
+        <system>JIRA</system>
+        <url>http://jira.codehaus.org/browse/PICO</url>
+    </issueManagement>
+    <licenses>
+        <license>
+            <url>
+                https://svn.codehaus.org/picocontainer/java/picocontainer/trunk/LICENSE.txt
+            </url>
+            <distribution>repo</distribution>
+        </license>
+    </licenses>
+    <scm>
+        <connection>
+            scm:svn:https://svn.codehaus.org/picocontainer/java/picocontainer/trunk
+        </connection>
+        <developerConnection>
+            scm:svn:https://svn.codehaus.org/picocontainer/java/picocontainer/trunk
+        </developerConnection>
+        <url>
+            https://svn.codehaus.org/picocontainer/java/picocontainer/trunk
+        </url>
+    </scm>
+    <repositories>
+        <repository>
+            <id>codehaus-repository</id>
+            <name>Codehaus Repository</name>
+            <url>http://repository.codehaus.org</url>
+        </repository>
+        <repository>
+            <id>codehaus-snapshots-repository</id>
+            <name>Codehaus Snapshots Repository</name>
+            <url>http://snapshots.repository.codehaus.org</url>
+        </repository>
+        <repository>
+            <id>codehaus-dist-repository</id>
+            <name>Codehaus Dist Repository</name>
+            <url>http://dist.codehaus.org</url>
+            <layout>legacy</layout>
+            <snapshots>
+                <enabled>true</enabled>
+            </snapshots>
+        </repository>
+        <repository>
+            <layout>legacy</layout>
+            <id>astrogrid.org-repository</id>
+            <name>Astrogrid Repository</name>
+            <url>http://www.astrogrid.org/maven</url>
+        </repository>
+    </repositories>
+    <pluginRepositories>
+        <pluginRepository>
+            <id>codehaus-plugin-snapshots-repository</id>
+            <name>Codehaus Plugin Snapshots Repository</name>
+            <url>http://snapshots.maven.codehaus.org/maven2/</url>
+            <snapshots>
+                <enabled>true</enabled>
+            </snapshots>
+        </pluginRepository>
+    </pluginRepositories>
+    <distributionManagement>
+        <repository>
+            <id>codehaus-picocontainer-repository</id>
+            <name>Codehaus PicoContainer Repository</name>
+            <url>
+                dav:https://dav.codehaus.org/repository/picocontainer/
+            </url>
+        </repository>
+        <snapshotRepository>
+            <id>codehaus-picocontainer-snapshot-repository</id>
+            <name>Codehaus PicoContainer Snapshot Repository</name>
+            <url>
+                dav:https://dav.codehaus.org/snapshots.repository/picocontainer/
+            </url>
+        </snapshotRepository>
+        <site>
+            <id>picocontainer-site</id>
+            <url>dav:https://dav.codehaus.org/picocontainer/</url>
+        </site>
+    </distributionManagement>
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>${pom.groupId}</groupId>
+                <artifactId>picocontainer</artifactId>
+                <version>${pom.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${pom.groupId}</groupId>
+                <artifactId>picocontainer-tck</artifactId>
+                <version>${pom.version}</version>
+            </dependency>
+            <!-- For proxy -->
+            <dependency>
+                <groupId>proxytoys</groupId>
+                <artifactId>proxytoys</artifactId>
+                <version>0.2.1</version>
+            </dependency>
+            <dependency>
+                <groupId>cglib</groupId>
+                <artifactId>cglib-nodep</artifactId>
+                <version>2.1_3</version>
+            </dependency>
+            <!-- For monitors -->
+            <dependency>
+                <groupId>commons-logging</groupId>
+                <artifactId>commons-logging</artifactId>
+                <version>1.0.4</version>
+                <exclusions>
+                    <exclusion>
+                        <groupId>avalon-framework</groupId>
+                        <artifactId>avalon-framework</artifactId>
+                    </exclusion>
+                </exclusions>
+            </dependency>
+            <dependency>
+                <groupId>log4j</groupId>
+                <artifactId>log4j</artifactId>
+                <version>1.2.8</version>
+            </dependency>
+            <dependency>
+                <groupId>prefuse</groupId>
+                <artifactId>prefuse</artifactId>
+                <version>2006.07.15</version>
+            </dependency>
+            <!-- For test -->
+            <dependency>
+                <groupId>junit</groupId>
+                <artifactId>junit</artifactId>
+                <version>3.8.1</version>
+            </dependency>
+            <dependency>
+                <groupId>jmock</groupId>
+                <artifactId>jmock</artifactId>
+                <version>1.0.1</version>
+            </dependency>
+            <dependency>
+                <groupId>com.thoughtworks.xstream</groupId>
+                <artifactId>xstream</artifactId>
+                <version>1.2.1</version>
+            </dependency>
+            <dependency>
+                <groupId>xpp3</groupId>
+                <artifactId>xpp3_min</artifactId>
+                <version>1.1.3.4.O</version>
+            </dependency>            
+        </dependencies>
+    </dependencyManagement>
+    <dependencies>
+        <!-- test scoped -->
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>jmock</groupId>
+            <artifactId>jmock</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>com.thoughtworks.xstream</groupId>
+            <artifactId>xstream</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>xpp3</groupId>
+            <artifactId>xpp3_min</artifactId>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+    <build>
+        <sourceDirectory>src/java</sourceDirectory>
+        <testSourceDirectory>src/test</testSourceDirectory>
+        <resources>
+            <resource>
+                <directory>src/java</directory>
+                <excludes>
+                    <exclude>**/*.java</exclude>
+                </excludes>
+            </resource>
+        </resources>
+        <testResources>
+            <testResource>
+                <directory>src/test</directory>
+                <excludes>
+                    <exclude>**/*.java</exclude>
+                </excludes>
+            </testResource>
+        </testResources>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <source>1.3</source>
+                    <target>1.3</target>
+                    <encoding>UTF-8</encoding>
+                    <optimize>false</optimize>
+                    <debug>true</debug>
+                    <showDeprecation>true</showDeprecation>
+                </configuration>
+            </plugin>
+            <plugin>
+                <inherited>true</inherited>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-source-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>attach-sources</id>
+                        <goals>
+                            <goal>jar</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <inherited>true</inherited>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>attach-javadocs</id>
+                        <goals>
+                            <goal>jar</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <links>
+                        <link>
+                            http://java.sun.com/j2se/1.4.2/docs/api/
+                        </link>
+                        <link>
+                            http://proxytoys.codehaus.org/apidocs/
+                        </link>
+                        <link>
+                            http://jakarta.apache.org/commons/logging/commons-logging-1.0.4/docs/apidocs/
+                        </link>
+                    </links>
+                    <stylesheet>maven</stylesheet>
+                    <header>
+                        <![CDATA[<img class="logo" src=""
+                    </header>
+                    <linksource>true</linksource>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <version>2.2</version>
+                <configuration>
+                    <forkMode>once</forkMode>
+                    <printSummary>true</printSummary>
+                    <useFile>true</useFile>
+                    <systemProperties>
+                        <property>
+                            <name>test.src.dir</name>
+                            <value>${basedir}/src/test</value>
+                        </property>
+                        <property>
+                            <name>java.awt.headless</name>
+                            <value>true</value>
+                        </property>
+                    </systemProperties>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-clover-plugin</artifactId>
+                <configuration>
+                    <licenseLocation>
+                        ${user.home}/licenses/clover.license
+                    </licenseLocation>
+                    <jdk>1.5</jdk>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>cobertura-maven-plugin</artifactId>
+                <version>2.0</version>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>clean</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+        <extensions>
+            <extension>
+                <groupId>org.apache.maven.wagon</groupId>
+                <artifactId>wagon-ssh-external</artifactId>
+                <version>1.0-beta-1</version>
+            </extension>
+            <extension>
+                <groupId>org.apache.maven.wagon</groupId>
+                <artifactId>wagon-webdav</artifactId>
+                <version>1.0-beta-1</version>
+            </extension>
+        </extensions>
+    </build>
+    <reporting>
+        <plugins>
+            <plugin>
+                <inherited>true</inherited>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <reportSets>
+                    <reportSet>
+                        <reports>
+                            <report>javadoc</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>cobertura-maven-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </reporting>
+    <profiles>
+        <profile>
+            <id>release-profile</id>
+            <activation>
+                <property>
+                    <name>release-mode</name>
+                </property>
+            </activation>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-compiler-plugin</artifactId>
+                        <configuration>
+                            <optimize>true</optimize>
+                            <debug>false</debug>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
 </project>

Modified: java/picocontainer/trunk/tck/pom.xml (3161 => 3162)

--- java/picocontainer/trunk/tck/pom.xml	2006-12-27 13:31:41 UTC (rev 3161)
+++ java/picocontainer/trunk/tck/pom.xml	2006-12-27 14:27:31 UTC (rev 3162)
@@ -1,62 +1,62 @@
 <?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.picocontainer</groupId>
-		<artifactId>picocontainer-parent</artifactId>
-		<version>1.3-SNAPSHOT</version>
-	</parent>
-	<artifactId>picocontainer-tck</artifactId>
-	<name>PicoContainer TCK</name>
-	<packaging>jar</packaging>
-	<scm>
-		<connection>scm:svn:https://svn.codehaus.org/picocontainer/java/picocontainer/trunk/tck</connection>
-		<developerConnection>scm:svn:https://svn.codehaus.org/picocontainer/java/picocontainer/trunk/tck</developerConnection>
-		<url>https://svn.codehaus.org/picocontainer/java/picocontainer/trunk/tck</url>
-	</scm>
-	<dependencies>
-		<dependency>
-			<groupId>${pom.groupId}</groupId>
-			<artifactId>picocontainer</artifactId>
-			<version>${pom.version}</version>
-		</dependency>
-		<dependency>
-			<groupId>junit</groupId>
-			<artifactId>junit</artifactId>
-			<scope>compile</scope>
-		</dependency>
-		<dependency>
-			<groupId>jmock</groupId>
-			<artifactId>jmock</artifactId>
-			<scope>compile</scope>
-		</dependency>
-		<dependency>
-			<groupId>xstream</groupId>
-			<artifactId>xstream</artifactId>
-			<scope>compile</scope>
-		</dependency>
-		<dependency>
-			<groupId>xpp3</groupId>
-			<artifactId>xpp3</artifactId>
-			<scope>compile</scope>
-		</dependency>
-	</dependencies>
-	<build>
-		<sourceDirectory>../container/src/test</sourceDirectory>
-		<plugins>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-compiler-plugin</artifactId>
-				<configuration>
-					<includes>
-						<include>org/picocontainer/tck/**/*.java</include>
-						<include>org/picocontainer/testmodel/**/*.java</include>
-					</includes>
-					<source>1.3</source>
-					<target>1.3</target>
-					<encoding>UTF-8</encoding>
-				</configuration>
-			</plugin>
-		</plugins>
-	</build>
+<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.picocontainer</groupId>
+        <artifactId>picocontainer-parent</artifactId>
+        <version>1.3-SNAPSHOT</version>
+    </parent>
+    <artifactId>picocontainer-tck</artifactId>
+    <name>PicoContainer TCK</name>
+    <packaging>jar</packaging>
+    <dependencies>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>picocontainer</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>jmock</groupId>
+            <artifactId>jmock</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>com.thoughtworks.xstream</groupId>
+            <artifactId>xstream</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>xpp3</groupId>
+            <artifactId>xpp3_min</artifactId>
+            <scope>compile</scope>
+        </dependency>
+    </dependencies>
+    <build>
+        <sourceDirectory>../container/src/test</sourceDirectory>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <includes>
+                        <include>
+                            org/picocontainer/tck/**/*.java
+                        </include>
+                        <include>
+                            org/picocontainer/testmodel/**/*.java
+                        </include>
+                    </includes>
+                    <source>1.3</source>
+                    <target>1.3</target>
+                    <encoding>UTF-8</encoding>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
 </project>


To unsubscribe from this list please visit:

http://xircles.codehaus.org/manage_email

<Prev in Thread] Current Thread [Next in Thread>
Google Custom Search

News | FAQ | advertise