Revision
4093
Author mauro
Date 2007-12-11 16:51:47 -0600 (Tue, 11 Dec 2007)
Log Message
[maven-release-plugin] copy for tag nanocontainer-1.1.2
Added Paths
Removed Paths
Diff
Copied: java/1.x/nanocontainer/tags/nanocontainer-1.1.2 (from rev 4091, java/1.x/nanocontainer/trunk) ( => )
Deleted: java/1.x/nanocontainer/tags/nanocontainer-1.1.2/booter/pom.xml
===================================================================
--- java/1.x/nanocontainer/trunk/booter/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/tags/nanocontainer-1.1.2/booter/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
@@ -1,190 +0,0 @@
-<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.nanocontainer</groupId>
- <artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
- </parent>
- <artifactId>nanocontainer-booter</artifactId>
- <name>NanoContainer Booter</name>
- <packaging>jar</packaging>
- <dependencies>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer</artifactId>
- </dependency>
- <dependency>
- <groupId>commons-cli</groupId>
- <artifactId>commons-cli</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-groovy</artifactId>
- <scope>integration-test</scope>
- </dependency>
- <dependency>
- <groupId>org.codehaus.groovy</groupId>
- <artifactId>groovy-all</artifactId>
- <version>1.1-rc-2</version>
- <scope>integration-test</scope>
- </dependency>
- <dependency>
- <groupId>qdox</groupId>
- <artifactId>qdox</artifactId>
- <version>1.6.1</version>
- <scope>integration-test</scope>
- </dependency>
- </dependencies>
- <pluginRepositories>
- <pluginRepository>
- <id>apache-plugin-snapshots-repository</id>
- <name>Apache Plugin Snapshots Repository</name>
- <url>http://people.apache.org/repo/m2-snapshot-repository</url>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- </pluginRepository>
- </pluginRepositories>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
- <manifest>
- <mainClass>
- org.nanocontainer.booter.NanoContainerBooter
- </mainClass>
- </manifest>
- </archive>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-dependency-plugin</artifactId>
- <executions>
- <execution>
- <id>copy-lib-common</id>
- <phase>integration-test</phase>
- <goals>
- <goal>copy</goal>
- </goals>
- <configuration>
- <artifactItems>
- <artifactItem>
- <groupId>org.picocontainer</groupId>
- <artifactId>picocontainer</artifactId>
- </artifactItem>
- <artifactItem>
- <groupId>commons-cli</groupId>
- <artifactId>commons-cli</artifactId>
- </artifactItem>
- </artifactItems>
- <outputDirectory>
- ${project.build.directory}/booter/lib/common
- </outputDirectory>
- <overWriteReleases>true</overWriteReleases>
- <overWriteSnapshots>
- true
- </overWriteSnapshots>
- </configuration>
- </execution>
- <execution>
- <id>copy-lib-hidden</id>
- <phase>integration-test</phase>
- <goals>
- <goal>copy</goal>
- </goals>
- <configuration>
- <artifactItems>
- <artifactItem>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer</artifactId>
- </artifactItem>
- <artifactItem>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-groovy</artifactId>
- </artifactItem>
- <artifactItem>
- <groupId>org.codehaus.groovy</groupId>
- <artifactId>groovy-all</artifactId>
- </artifactItem>
- </artifactItems>
- <outputDirectory>
- ${project.build.directory}/booter/lib/hidden
- </outputDirectory>
- <overWriteReleases>true</overWriteReleases>
- <overWriteSnapshots>
- true
- </overWriteSnapshots>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <execution>
- <phase>integration-test</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <tasks>
- <!-- Create test components -->
- <mkdir dir="${project.build.directory}/test-comps" />
-
- <jar jarfile="${project.build.directory}/test-comps/api.jar">
- <fileset dir="${project.build.directory}/test-classes/">
- <include name="**/Bear.class" />
- <include name="**/Honey.class" />
- </fileset>
- </jar>
- <jar jarfile="${project.build.directory}/test-comps/bearimpl.jar">
- <fileset dir="${project.build.directory}/test-classes/">
- <include name="**/BrownBear.class" />
- </fileset>
- </jar>
-
- <jar jarfile="${project.build.directory}/test-comps/honeyimpl.jar">
- <fileset dir="${project.build.directory}/test-classes/">
- <include name="**/BeeHiveHoney.class" />
- </fileset>
- </jar>
-
- <!-- Copy to booter bin dist -->
- <copy todir="${project.build.directory}/booter">
- <fileset dir="src/bin">
- <include name="booter.policy" />
- <include name="nanocontainer.*" />
- </fileset>
- <fileset dir="src/test">
- <include name="composition.*" />
- </fileset>
- <filterset>
- <filter token="VER" value="${pom.version}" />
- </filterset>
- </copy>
- <copy todir="${project.build.directory}/booter/lib">
- <fileset dir="${project.build.directory}">
- <include name="${pom.artifactId}-${pom.version}.jar" />
- </fileset>
- </copy>
-
- <!-- Copy to booter/test-comps -->
- <copy todir="${project.build.directory}/booter/test-comps">
- <fileset dir="${project.build.directory}/test-comps">
- <include name="*.jar" />
- </fileset>
- </copy>
- </tasks>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-</project>
\ No newline at end of file
Copied: java/1.x/nanocontainer/tags/nanocontainer-1.1.2/booter/pom.xml (from rev 4092, java/1.x/nanocontainer/trunk/booter/pom.xml) (0 => 4093)
--- java/1.x/nanocontainer/tags/nanocontainer-1.1.2/booter/pom.xml (rev 0)
+++ java/1.x/nanocontainer/tags/nanocontainer-1.1.2/booter/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
@@ -0,0 +1,190 @@
+<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.nanocontainer</groupId>
+ <artifactId>nanocontainer-parent</artifactId>
+ <version>1.1.2</version>
+ </parent>
+ <artifactId>nanocontainer-booter</artifactId>
+ <name>NanoContainer Booter</name>
+ <packaging>jar</packaging>
+ <dependencies>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-cli</groupId>
+ <artifactId>commons-cli</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-groovy</artifactId>
+ <scope>integration-test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.codehaus.groovy</groupId>
+ <artifactId>groovy-all</artifactId>
+ <version>1.1-rc-2</version>
+ <scope>integration-test</scope>
+ </dependency>
+ <dependency>
+ <groupId>qdox</groupId>
+ <artifactId>qdox</artifactId>
+ <version>1.6.1</version>
+ <scope>integration-test</scope>
+ </dependency>
+ </dependencies>
+ <pluginRepositories>
+ <pluginRepository>
+ <id>apache-plugin-snapshots-repository</id>
+ <name>Apache Plugin Snapshots Repository</name>
+ <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ </pluginRepository>
+ </pluginRepositories>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifest>
+ <mainClass>
+ org.nanocontainer.booter.NanoContainerBooter
+ </mainClass>
+ </manifest>
+ </archive>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>copy-lib-common</id>
+ <phase>integration-test</phase>
+ <goals>
+ <goal>copy</goal>
+ </goals>
+ <configuration>
+ <artifactItems>
+ <artifactItem>
+ <groupId>org.picocontainer</groupId>
+ <artifactId>picocontainer</artifactId>
+ </artifactItem>
+ <artifactItem>
+ <groupId>commons-cli</groupId>
+ <artifactId>commons-cli</artifactId>
+ </artifactItem>
+ </artifactItems>
+ <outputDirectory>
+ ${project.build.directory}/booter/lib/common
+ </outputDirectory>
+ <overWriteReleases>true</overWriteReleases>
+ <overWriteSnapshots>
+ true
+ </overWriteSnapshots>
+ </configuration>
+ </execution>
+ <execution>
+ <id>copy-lib-hidden</id>
+ <phase>integration-test</phase>
+ <goals>
+ <goal>copy</goal>
+ </goals>
+ <configuration>
+ <artifactItems>
+ <artifactItem>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer</artifactId>
+ </artifactItem>
+ <artifactItem>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-groovy</artifactId>
+ </artifactItem>
+ <artifactItem>
+ <groupId>org.codehaus.groovy</groupId>
+ <artifactId>groovy-all</artifactId>
+ </artifactItem>
+ </artifactItems>
+ <outputDirectory>
+ ${project.build.directory}/booter/lib/hidden
+ </outputDirectory>
+ <overWriteReleases>true</overWriteReleases>
+ <overWriteSnapshots>
+ true
+ </overWriteSnapshots>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>integration-test</phase>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ <configuration>
+ <tasks>
+ <!-- Create test components -->
+ <mkdir dir="${project.build.directory}/test-comps" />
+
+ <jar jarfile="${project.build.directory}/test-comps/api.jar">
+ <fileset dir="${project.build.directory}/test-classes/">
+ <include name="**/Bear.class" />
+ <include name="**/Honey.class" />
+ </fileset>
+ </jar>
+ <jar jarfile="${project.build.directory}/test-comps/bearimpl.jar">
+ <fileset dir="${project.build.directory}/test-classes/">
+ <include name="**/BrownBear.class" />
+ </fileset>
+ </jar>
+
+ <jar jarfile="${project.build.directory}/test-comps/honeyimpl.jar">
+ <fileset dir="${project.build.directory}/test-classes/">
+ <include name="**/BeeHiveHoney.class" />
+ </fileset>
+ </jar>
+
+ <!-- Copy to booter bin dist -->
+ <copy todir="${project.build.directory}/booter">
+ <fileset dir="src/bin">
+ <include name="booter.policy" />
+ <include name="nanocontainer.*" />
+ </fileset>
+ <fileset dir="src/test">
+ <include name="composition.*" />
+ </fileset>
+ <filterset>
+ <filter token="VER" value="${pom.version}" />
+ </filterset>
+ </copy>
+ <copy todir="${project.build.directory}/booter/lib">
+ <fileset dir="${project.build.directory}">
+ <include name="${pom.artifactId}-${pom.version}.jar" />
+ </fileset>
+ </copy>
+
+ <!-- Copy to booter/test-comps -->
+ <copy todir="${project.build.directory}/booter/test-comps">
+ <fileset dir="${project.build.directory}/test-comps">
+ <include name="*.jar" />
+ </fileset>
+ </copy>
+ </tasks>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
\ No newline at end of file
Deleted: java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container/pom.xml (4091 => 4093)
--- java/1.x/nanocontainer/trunk/container/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
@@ -1,49 +0,0 @@
-<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.nanocontainer</groupId>
- <artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
- </parent>
- <artifactId>nanocontainer</artifactId>
- <name>NanoContainer Core</name>
- <packaging>jar</packaging>
-
- <dependencies>
- <dependency>
- <groupId>org.picocontainer</groupId>
- <artifactId>picocontainer</artifactId>
- </dependency>
- <!-- optional dependencies -->
- <dependency>
- <groupId>commons-cli</groupId>
- <artifactId>commons-cli</artifactId>
- <version>1.0</version>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>com.thoughtworks.xstream</groupId>
- <artifactId>xstream</artifactId>
- <version>1.2.1</version>
- <exclusions>
- <exclusion>
- <groupId>xpp3</groupId>
- <artifactId>xpp3_min</artifactId>
- </exclusion>
- </exclusions>
- <optional>true</optional>
- </dependency>
- <!-- test scoped dependencies -->
- <dependency>
- <groupId>org.picocontainer</groupId>
- <artifactId>picocontainer-gems</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-testmodel</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
-
-</project>
\ No newline at end of file
Copied: java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container/pom.xml (from rev 4092, java/1.x/nanocontainer/trunk/container/pom.xml) (0 => 4093)
--- java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container/pom.xml (rev 0)
+++ java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
@@ -0,0 +1,49 @@
+<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.nanocontainer</groupId>
+ <artifactId>nanocontainer-parent</artifactId>
+ <version>1.1.2</version>
+ </parent>
+ <artifactId>nanocontainer</artifactId>
+ <name>NanoContainer Core</name>
+ <packaging>jar</packaging>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.picocontainer</groupId>
+ <artifactId>picocontainer</artifactId>
+ </dependency>
+ <!-- optional dependencies -->
+ <dependency>
+ <groupId>commons-cli</groupId>
+ <artifactId>commons-cli</artifactId>
+ <version>1.0</version>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>com.thoughtworks.xstream</groupId>
+ <artifactId>xstream</artifactId>
+ <version>1.2.1</version>
+ <exclusions>
+ <exclusion>
+ <groupId>xpp3</groupId>
+ <artifactId>xpp3_min</artifactId>
+ </exclusion>
+ </exclusions>
+ <optional>true</optional>
+ </dependency>
+ <!-- test scoped dependencies -->
+ <dependency>
+ <groupId>org.picocontainer</groupId>
+ <artifactId>picocontainer-gems</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-testmodel</artifactId>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+</project>
\ No newline at end of file
Deleted: java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-aop/pom.xml (4091 => 4093)
--- java/1.x/nanocontainer/trunk/container-aop/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-aop/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
@@ -1,49 +0,0 @@
-<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.nanocontainer</groupId>
- <artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
- </parent>
- <artifactId>nanocontainer-aop</artifactId>
- <name>NanoContainer AOP</name>
- <packaging>jar</packaging>
- <dependencies>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer</artifactId>
- </dependency>
- <dependency>
- <groupId>aopalliance</groupId>
- <artifactId>aopalliance</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>dynaop</groupId>
- <artifactId>dynaop</artifactId>
- <version>1.0-beta</version>
- </dependency>
- <dependency>
- <groupId>cglib</groupId>
- <artifactId>cglib-asm</artifactId>
- <version>1.0</version>
- <exclusions>
- <exclusion>
- <groupId>cglib</groupId>
- <artifactId>cglib</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>oro</groupId>
- <artifactId>oro</artifactId>
- <version>2.0.8</version>
- </dependency>
- <!-- test scoped dependencies -->
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-testmodel</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
-</project>
\ No newline at end of file
Copied: java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-aop/pom.xml (from rev 4092, java/1.x/nanocontainer/trunk/container-aop/pom.xml) (0 => 4093)
--- java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-aop/pom.xml (rev 0)
+++ java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-aop/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
@@ -0,0 +1,49 @@
+<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.nanocontainer</groupId>
+ <artifactId>nanocontainer-parent</artifactId>
+ <version>1.1.2</version>
+ </parent>
+ <artifactId>nanocontainer-aop</artifactId>
+ <name>NanoContainer AOP</name>
+ <packaging>jar</packaging>
+ <dependencies>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>aopalliance</groupId>
+ <artifactId>aopalliance</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>dynaop</groupId>
+ <artifactId>dynaop</artifactId>
+ <version>1.0-beta</version>
+ </dependency>
+ <dependency>
+ <groupId>cglib</groupId>
+ <artifactId>cglib-asm</artifactId>
+ <version>1.0</version>
+ <exclusions>
+ <exclusion>
+ <groupId>cglib</groupId>
+ <artifactId>cglib</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>oro</groupId>
+ <artifactId>oro</artifactId>
+ <version>2.0.8</version>
+ </dependency>
+ <!-- test scoped dependencies -->
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-testmodel</artifactId>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+</project>
\ No newline at end of file
Deleted: java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-bsh/pom.xml (4091 => 4093)
--- java/1.x/nanocontainer/trunk/container-bsh/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-bsh/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
@@ -1,42 +0,0 @@
-<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.nanocontainer</groupId>
- <artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
- </parent>
- <artifactId>nanocontainer-bsh</artifactId>
- <name>NanoContainer bsh</name>
- <packaging>jar</packaging>
- <dependencies>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer</artifactId>
- </dependency>
- <dependency>
- <groupId>org.beanshell</groupId>
- <artifactId>bsh</artifactId>
- <version>2.0b4</version>
- <exclusions>
- <exclusion>
- <groupId>tonic</groupId>
- <artifactId>jarjar</artifactId>
- </exclusion>
- <exclusion>
- <groupId>mockobjects</groupId>
- <artifactId>mockobjects</artifactId>
- </exclusion>
- <exclusion>
- <groupId>classworlds</groupId>
- <artifactId>classworlds</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- test scoped dependencies -->
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-tck</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
-</project>
\ No newline at end of file
Copied: java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-bsh/pom.xml (from rev 4092, java/1.x/nanocontainer/trunk/container-bsh/pom.xml) (0 => 4093)
--- java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-bsh/pom.xml (rev 0)
+++ java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-bsh/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
@@ -0,0 +1,42 @@
+<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.nanocontainer</groupId>
+ <artifactId>nanocontainer-parent</artifactId>
+ <version>1.1.2</version>
+ </parent>
+ <artifactId>nanocontainer-bsh</artifactId>
+ <name>NanoContainer bsh</name>
+ <packaging>jar</packaging>
+ <dependencies>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.beanshell</groupId>
+ <artifactId>bsh</artifactId>
+ <version>2.0b4</version>
+ <exclusions>
+ <exclusion>
+ <groupId>tonic</groupId>
+ <artifactId>jarjar</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>mockobjects</groupId>
+ <artifactId>mockobjects</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>classworlds</groupId>
+ <artifactId>classworlds</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <!-- test scoped dependencies -->
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-tck</artifactId>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+</project>
\ No newline at end of file
Deleted: java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-groovy/pom.xml (4091 => 4093)
--- java/1.x/nanocontainer/trunk/container-groovy/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-groovy/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
@@ -1,38 +0,0 @@
-<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.nanocontainer</groupId>
- <artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
- </parent>
- <artifactId>nanocontainer-groovy</artifactId>
- <name>NanoContainer Groovy</name>
- <packaging>jar</packaging>
- <dependencies>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer</artifactId>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-aop</artifactId>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.codehaus.groovy</groupId>
- <artifactId>groovy-all-minimal</artifactId>
- <version>1.5.0</version>
- </dependency>
- <!-- test scoped dependencies -->
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-tck</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-testmodel</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
-</project>
\ No newline at end of file
Copied: java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-groovy/pom.xml (from rev 4092, java/1.x/nanocontainer/trunk/container-groovy/pom.xml) (0 => 4093)
--- java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-groovy/pom.xml (rev 0)
+++ java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-groovy/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
@@ -0,0 +1,38 @@
+<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.nanocontainer</groupId>
+ <artifactId>nanocontainer-parent</artifactId>
+ <version>1.1.2</version>
+ </parent>
+ <artifactId>nanocontainer-groovy</artifactId>
+ <name>NanoContainer Groovy</name>
+ <packaging>jar</packaging>
+ <dependencies>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-aop</artifactId>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>org.codehaus.groovy</groupId>
+ <artifactId>groovy-all-minimal</artifactId>
+ <version>1.5.0</version>
+ </dependency>
+ <!-- test scoped dependencies -->
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-tck</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-testmodel</artifactId>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+</project>
\ No newline at end of file
Deleted: java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-jruby/pom.xml (4091 => 4093)
--- java/1.x/nanocontainer/trunk/container-jruby/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-jruby/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
@@ -1,33 +0,0 @@
-<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.nanocontainer</groupId>
- <artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
- </parent>
- <artifactId>nanocontainer-jruby</artifactId>
- <name>NanoContainer JRuby</name>
- <packaging>jar</packaging>
- <dependencies>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer</artifactId>
- </dependency>
- <dependency>
- <groupId>org.jruby</groupId>
- <artifactId>jruby</artifactId>
- <version>1.0</version>
- </dependency>
- <!-- test scoped dependencies -->
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-tck</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-testmodel</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
-</project>
\ No newline at end of file
Copied: java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-jruby/pom.xml (from rev 4092, java/1.x/nanocontainer/trunk/container-jruby/pom.xml) (0 => 4093)
--- java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-jruby/pom.xml (rev 0)
+++ java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-jruby/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
@@ -0,0 +1,33 @@
+<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.nanocontainer</groupId>
+ <artifactId>nanocontainer-parent</artifactId>
+ <version>1.1.2</version>
+ </parent>
+ <artifactId>nanocontainer-jruby</artifactId>
+ <name>NanoContainer JRuby</name>
+ <packaging>jar</packaging>
+ <dependencies>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.jruby</groupId>
+ <artifactId>jruby</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <!-- test scoped dependencies -->
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-tck</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-testmodel</artifactId>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+</project>
\ No newline at end of file
Deleted: java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-jython/pom.xml (4091 => 4093)
--- java/1.x/nanocontainer/trunk/container-jython/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-jython/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
@@ -1,50 +0,0 @@
-<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.nanocontainer</groupId>
- <artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
- </parent>
- <artifactId>nanocontainer-jython</artifactId>
- <name>NanoContainer Jython</name>
- <packaging>jar</packaging>
- <dependencies>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer</artifactId>
- </dependency>
- <dependency>
- <groupId>org.python</groupId>
- <artifactId>jython</artifactId>
- <version>2.2-beta1</version>
- </dependency>
- <!-- test scoped dependencies -->
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-tck</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-testmodel</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <inherited>true</inherited>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <!-- FIXME: works when run in IDE but not via mvn -->
- <excludes>
- <exclude>
- org/nanocontainer/script/jython/JythonContainerBuilderTestCase.java
- </exclude>
- </excludes>
- </configuration>
- </plugin>
- </plugins>
- </build>
-</project>
\ No newline at end of file
Copied: java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-jython/pom.xml (from rev 4092, java/1.x/nanocontainer/trunk/container-jython/pom.xml) (0 => 4093)
--- java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-jython/pom.xml (rev 0)
+++ java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-jython/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
@@ -0,0 +1,50 @@
+<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.nanocontainer</groupId>
+ <artifactId>nanocontainer-parent</artifactId>
+ <version>1.1.2</version>
+ </parent>
+ <artifactId>nanocontainer-jython</artifactId>
+ <name>NanoContainer Jython</name>
+ <packaging>jar</packaging>
+ <dependencies>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.python</groupId>
+ <artifactId>jython</artifactId>
+ <version>2.2-beta1</version>
+ </dependency>
+ <!-- test scoped dependencies -->
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-tck</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-testmodel</artifactId>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <inherited>true</inherited>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <!-- FIXME: works when run in IDE but not via mvn -->
+ <excludes>
+ <exclude>
+ org/nanocontainer/script/jython/JythonContainerBuilderTestCase.java
+ </exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
\ No newline at end of file
Deleted: java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-rhino/pom.xml (4091 => 4093)
--- java/1.x/nanocontainer/trunk/container-rhino/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-rhino/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
@@ -1,33 +0,0 @@
-<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.nanocontainer</groupId>
- <artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
- </parent>
- <artifactId>nanocontainer-rhino</artifactId>
- <name>NanoContainer Rhino</name>
- <packaging>jar</packaging>
- <dependencies>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer</artifactId>
- </dependency>
- <dependency>
- <groupId>rhino</groupId>
- <artifactId>js</artifactId>
- <version>1.5R4.1</version>
- </dependency>
- <!-- test scoped dependencies -->
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-tck</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-testmodel</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
-</project>
\ No newline at end of file
Copied: java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-rhino/pom.xml (from rev 4092, java/1.x/nanocontainer/trunk/container-rhino/pom.xml) (0 => 4093)
--- java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-rhino/pom.xml (rev 0)
+++ java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-rhino/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
@@ -0,0 +1,33 @@
+<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.nanocontainer</groupId>
+ <artifactId>nanocontainer-parent</artifactId>
+ <version>1.1.2</version>
+ </parent>
+ <artifactId>nanocontainer-rhino</artifactId>
+ <name>NanoContainer Rhino</name>
+ <packaging>jar</packaging>
+ <dependencies>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>rhino</groupId>
+ <artifactId>js</artifactId>
+ <version>1.5R4.1</version>
+ </dependency>
+ <!-- test scoped dependencies -->
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-tck</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-testmodel</artifactId>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+</project>
\ No newline at end of file
Deleted: java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-tck/pom.xml (4091 => 4093)
--- java/1.x/nanocontainer/trunk/container-tck/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-tck/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
@@ -1,45 +0,0 @@
-<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.nanocontainer</groupId>
- <artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
- </parent>
- <artifactId>nanocontainer-tck</artifactId>
- <name>NanoContainer TCK</name>
- <packaging>jar</packaging>
- <dependencies>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer</artifactId>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>jmock</groupId>
- <artifactId>jmock</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/nanocontainer/TestHelper.java</include>
- <include>org/nanocontainer/script/*.java</include>
- </includes>
- <source>1.4</source>
- <target>1.4</target>
- <encoding>UTF-8</encoding>
- </configuration>
- </plugin>
- </plugins>
- </build>
-</project>
\ No newline at end of file
Copied: java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-tck/pom.xml (from rev 4092, java/1.x/nanocontainer/trunk/container-tck/pom.xml) (0 => 4093)
--- java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-tck/pom.xml (rev 0)
+++ java/1.x/nanocontainer/tags/nanocontainer-1.1.2/container-tck/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
@@ -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>
+ <parent>
+ <groupId>org.nanocontainer</groupId>
+ <artifactId>nanocontainer-parent</artifactId>
+ <version>1.1.2</version>
+ </parent>
+ <artifactId>nanocontainer-tck</artifactId>
+ <name>NanoContainer TCK</name>
+ <packaging>jar</packaging>
+ <dependencies>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>jmock</groupId>
+ <artifactId>jmock</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/nanocontainer/TestHelper.java</include>
+ <include>org/nanocontainer/script/*.java</include>
+ </includes>
+ <source>1.4</source>
+ <target>1.4</target>
+ <encoding>UTF-8</encoding>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
\ No newline at end of file
Deleted: java/1.x/nanocontainer/tags/nanocontainer-1.1.2/deployer/pom.xml (4091 => 4093)
--- java/1.x/nanocontainer/trunk/deployer/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/tags/nanocontainer-1.1.2/deployer/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
@@ -1,77 +0,0 @@
-<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.nanocontainer</groupId>
- <artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
- </parent>
- <artifactId>nanocontainer-deployer</artifactId>
- <name>NanoContainer Deployer</name>
- <packaging>jar</packaging>
- <dependencies>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-groovy</artifactId>
- </dependency>
- <dependency>
- <groupId>commons-vfs</groupId>
- <artifactId>commons-vfs</artifactId>
- <version>1.0</version>
- </dependency>
- <!-- Test scoped dependencies -->
- <dependency>
- <groupId>commons-logging</groupId>
- <artifactId>commons-logging</artifactId>
- <version>1.0.4</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <execution>
- <phase>test-compile</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <tasks>
- <!-- Create test components -->
- <mkdir dir="${project.build.directory}/test-jars/" />
- <jar jarfile="${project.build.directory}/test-jars/successful-deploy.jar">
- <fileset dir="${project.build.directory}/test-classes/">
- <include name="foo/**" />
- </fileset>
- <fileset dir="${project.build.directory}/test-classes/successful-deploy" />
- </jar>
-
- <jar jarfile="${project.build.directory}/test-jars/badscript-deploy.jar">
- <fileset dir="${project.build.directory}/test-classes/">
- <include name="foo/**" />
- </fileset>
- <fileset dir="${project.build.directory}/test-classes/badscript-deploy" />
- </jar>
-
- <jar jarfile="${project.build.directory}/test-jars/malformed-deploy.jar">
- <fileset dir="${project.build.directory}/test-classes/">
- <include name="foo/**" />
- </fileset>
- <fileset dir="${project.build.directory}/test-classes/malformed-deploy" />
- </jar>
-
- <copy todir="${project.build.directory}/deployer/apps">
- <fileset dir="${project.build.directory}/test-jars">
- <include name="*.jar" />
- </fileset>
- </copy>
- </tasks>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-</project>
\ No newline at end of file
Copied: java/1.x/nanocontainer/tags/nanocontainer-1.1.2/deployer/pom.xml (from rev 4092, java/1.x/nanocontainer/trunk/deployer/pom.xml) (0 => 4093)
--- java/1.x/nanocontainer/tags/nanocontainer-1.1.2/deployer/pom.xml (rev 0)
+++ java/1.x/nanocontainer/tags/nanocontainer-1.1.2/deployer/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
@@ -0,0 +1,77 @@
+<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.nanocontainer</groupId>
+ <artifactId>nanocontainer-parent</artifactId>
+ <version>1.1.2</version>
+ </parent>
+ <artifactId>nanocontainer-deployer</artifactId>
+ <name>NanoContainer Deployer</name>
+ <packaging>jar</packaging>
+ <dependencies>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-groovy</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-vfs</groupId>
+ <artifactId>commons-vfs</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <!-- Test scoped dependencies -->
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ <version>1.0.4</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>test-compile</phase>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ <configuration>
+ <tasks>
+ <!-- Create test components -->
+ <mkdir dir="${project.build.directory}/test-jars/" />
+ <jar jarfile="${project.build.directory}/test-jars/successful-deploy.jar">
+ <fileset dir="${project.build.directory}/test-classes/">
+ <include name="foo/**" />
+ </fileset>
+ <fileset dir="${project.build.directory}/test-classes/successful-deploy" />
+ </jar>
+
+ <jar jarfile="${project.build.directory}/test-jars/badscript-deploy.jar">
+ <fileset dir="${project.build.directory}/test-classes/">
+ <include name="foo/**" />
+ </fileset>
+ <fileset dir="${project.build.directory}/test-classes/badscript-deploy" />
+ </jar>
+
+ <jar jarfile="${project.build.directory}/test-jars/malformed-deploy.jar">
+ <fileset dir="${project.build.directory}/test-classes/">
+ <include name="foo/**" />
+ </fileset>
+ <fileset dir="${project.build.directory}/test-classes/malformed-deploy" />
+ </jar>
+
+ <copy todir="${project.build.directory}/deployer/apps">
+ <fileset dir="${project.build.directory}/test-jars">
+ <include name="*.jar" />
+ </fileset>
+ </copy>
+ </tasks>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
\ No newline at end of file
Deleted: java/1.x/nanocontainer/tags/nanocontainer-1.1.2/distribution/pom.xml (4091 => 4093)
--- java/1.x/nanocontainer/trunk/distribution/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/tags/nanocontainer-1.1.2/distribution/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
@@ -1,242 +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>
- <parent>
- <groupId>org.nanocontainer</groupId>
- <artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
- </parent>
- <artifactId>nanocontainer-distribution</artifactId>
- <packaging>pom</packaging>
- <name>NanoContainer Distribution</name>
- <dependencies>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer</artifactId>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-aop</artifactId>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-bsh</artifactId>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-groovy</artifactId>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-jruby</artifactId>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-jython</artifactId>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-rhino</artifactId>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-tck</artifactId>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-booter</artifactId>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-deployer</artifactId>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-webcontainer</artifactId>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-dependency-plugin</artifactId>
- <version>2.0-alpha-4</version>
- <executions>
- <execution>
- <id>unpack</id>
- <phase>generate-resources</phase>
- <goals>
- <goal>unpack</goal>
- </goals>
- <configuration>
- <overWriteReleases>false</overWriteReleases>
- <overWriteSnapshots>
- true
- </overWriteSnapshots>
- <artifactItems>
- <artifactItem>
- <groupId>${pom.groupId}</groupId>
- <artifactId>
- nanocontainer
- </artifactId>
- <classifier>javadoc</classifier>
- <outputDirectory>
- ${project.build.directory}/javadoc/core
- </outputDirectory>
- </artifactItem>
- <artifactItem>
- <groupId>${pom.groupId}</groupId>
- <artifactId>
- nanocontainer-aop
- </artifactId>
- <classifier>javadoc</classifier>
- <outputDirectory>
- ${project.build.directory}/javadoc/aop
- </outputDirectory>
- </artifactItem>
- <artifactItem>
- <groupId>${pom.groupId}</groupId>
- <artifactId>
- nanocontainer-bsh
- </artifactId>
- <classifier>javadoc</classifier>
- <outputDirectory>
- ${project.build.directory}/javadoc/bsh
- </outputDirectory>
- </artifactItem>
- <artifactItem>
- <groupId>${pom.groupId}</groupId>
- <artifactId>
- nanocontainer-groovy
- </artifactId>
- <classifier>javadoc</classifier>
- <outputDirectory>
- ${project.build.directory}/javadoc/groovy
- </outputDirectory>
- </artifactItem>
- <artifactItem>
- <groupId>${pom.groupId}</groupId>
- <artifactId>
- nanocontainer-jruby
- </artifactId>
- <classifier>javadoc</classifier>
- <outputDirectory>
- ${project.build.directory}/javadoc/jruby
- </outputDirectory>
- </artifactItem>
- <artifactItem>
- <groupId>${pom.groupId}</groupId>
- <artifactId>
- nanocontainer-jython
- </artifactId>
- <classifier>javadoc</classifier>
- <outputDirectory>
- ${project.build.directory}/javadoc/jython
- </outputDirectory>
- </artifactItem>
- <artifactItem>
- <groupId>${pom.groupId}</groupId>
- <artifactId>
- nanocontainer-rhino
- </artifactId>
- <classifier>javadoc</classifier>
- <outputDirectory>
- ${project.build.directory}/javadoc/rhino
- </outputDirectory>
- </artifactItem>
- <artifactItem>
- <groupId>${pom.groupId}</groupId>
- <artifactId>
- nanocontainer-tck
- </artifactId>
- <classifier>javadoc</classifier>
- <outputDirectory>
- ${project.build.directory}/javadoc/tck
- </outputDirectory>
- </artifactItem>
- <artifactItem>
- <groupId>${pom.groupId}</groupId>
- <artifactId>
- nanocontainer-booter
- </artifactId>
- <classifier>javadoc</classifier>
- <outputDirectory>
- ${project.build.directory}/javadoc/booter
- </outputDirectory>
- </artifactItem>
- <artifactItem>
- <groupId>${pom.groupId}</groupId>
- <artifactId>
- nanocontainer-deployer
- </artifactId>
- <classifier>javadoc</classifier>
- <outputDirectory>
- ${project.build.directory}/javadoc/deployer
- </outputDirectory>
- </artifactItem>
- <artifactItem>
- <groupId>${pom.groupId}</groupId>
- <artifactId>
- nanocontainer-webcontainer
- </artifactId>
- <classifier>javadoc</classifier>
- <outputDirectory>
- ${project.build.directory}/javadoc/webcontainer
- </outputDirectory>
- </artifactItem>
- </artifactItems>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <version>2.1</version>
- <executions>
- <execution>
- <id>bin</id>
- <phase>install</phase>
- <goals>
- <goal>single</goal>
- </goals>
- <configuration>
- <descriptors>
- <descriptor>
- ${basedir}/src/assembly/assembly-bin.xml
- </descriptor>
- </descriptors>
- <finalName>
- nanocontainer-${pom.version}
- </finalName>
- <workDirectory>
- target/assembly/bin
- </workDirectory>
- </configuration>
- </execution>
- <execution>
- <id>src</id>
- <phase>install</phase>
- <goals>
- <goal>assembly</goal>
- </goals>
- <configuration>
- <descriptors>
- <descriptor>
- ${basedir}/src/assembly/assembly-src.xml
- </descriptor>
- </descriptors>
- <finalName>
- nanocontainer-${pom.version}
- </finalName>
- <workDirectory>
- target/assembly/src
- </workDirectory>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-
-</project>
Copied: java/1.x/nanocontainer/tags/nanocontainer-1.1.2/distribution/pom.xml (from rev 4092, java/1.x/nanocontainer/trunk/distribution/pom.xml) (0 => 4093)
--- java/1.x/nanocontainer/tags/nanocontainer-1.1.2/distribution/pom.xml (rev 0)
+++ java/1.x/nanocontainer/tags/nanocontainer-1.1.2/distribution/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
@@ -0,0 +1,239 @@
+<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.nanocontainer</groupId>
+ <artifactId>nanocontainer-parent</artifactId>
+ <version>1.1.2</version>
+ </parent>
+ <artifactId>nanocontainer-distribution</artifactId>
+ <packaging>pom</packaging>
+ <name>NanoContainer Distribution</name>
+ <dependencies>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-aop</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-bsh</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-groovy</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-jruby</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-jython</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-rhino</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-tck</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-booter</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-deployer</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-webcontainer</artifactId>
+ </dependency>
+ </dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <version>2.0-alpha-4</version>
+ <executions>
+ <execution>
+ <id>unpack</id>
+ <phase>generate-resources</phase>
+ <goals>
+ <goal>unpack</goal>
+ </goals>
+ <configuration>
+ <overWriteReleases>false</overWriteReleases>
+ <overWriteSnapshots>
+ true
+ </overWriteSnapshots>
+ <artifactItems>
+ <artifactItem>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>
+ nanocontainer
+ </artifactId>
+ <classifier>javadoc</classifier>
+ <outputDirectory>
+ ${project.build.directory}/javadoc/core
+ </outputDirectory>
+ </artifactItem>
+ <artifactItem>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>
+ nanocontainer-aop
+ </artifactId>
+ <classifier>javadoc</classifier>
+ <outputDirectory>
+ ${project.build.directory}/javadoc/aop
+ </outputDirectory>
+ </artifactItem>
+ <artifactItem>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>
+ nanocontainer-bsh
+ </artifactId>
+ <classifier>javadoc</classifier>
+ <outputDirectory>
+ ${project.build.directory}/javadoc/bsh
+ </outputDirectory>
+ </artifactItem>
+ <artifactItem>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>
+ nanocontainer-groovy
+ </artifactId>
+ <classifier>javadoc</classifier>
+ <outputDirectory>
+ ${project.build.directory}/javadoc/groovy
+ </outputDirectory>
+ </artifactItem>
+ <artifactItem>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>
+ nanocontainer-jruby
+ </artifactId>
+ <classifier>javadoc</classifier>
+ <outputDirectory>
+ ${project.build.directory}/javadoc/jruby
+ </outputDirectory>
+ </artifactItem>
+ <artifactItem>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>
+ nanocontainer-jython
+ </artifactId>
+ <classifier>javadoc</classifier>
+ <outputDirectory>
+ ${project.build.directory}/javadoc/jython
+ </outputDirectory>
+ </artifactItem>
+ <artifactItem>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>
+ nanocontainer-rhino
+ </artifactId>
+ <classifier>javadoc</classifier>
+ <outputDirectory>
+ ${project.build.directory}/javadoc/rhino
+ </outputDirectory>
+ </artifactItem>
+ <artifactItem>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>
+ nanocontainer-tck
+ </artifactId>
+ <classifier>javadoc</classifier>
+ <outputDirectory>
+ ${project.build.directory}/javadoc/tck
+ </outputDirectory>
+ </artifactItem>
+ <artifactItem>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>
+ nanocontainer-booter
+ </artifactId>
+ <classifier>javadoc</classifier>
+ <outputDirectory>
+ ${project.build.directory}/javadoc/booter
+ </outputDirectory>
+ </artifactItem>
+ <artifactItem>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>
+ nanocontainer-deployer
+ </artifactId>
+ <classifier>javadoc</classifier>
+ <outputDirectory>
+ ${project.build.directory}/javadoc/deployer
+ </outputDirectory>
+ </artifactItem>
+ <artifactItem>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>
+ nanocontainer-webcontainer
+ </artifactId>
+ <classifier>javadoc</classifier>
+ <outputDirectory>
+ ${project.build.directory}/javadoc/webcontainer
+ </outputDirectory>
+ </artifactItem>
+ </artifactItems>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <version>2.1</version>
+ <executions>
+ <execution>
+ <id>bin</id>
+ <phase>install</phase>
+ <goals>
+ <goal>single</goal>
+ </goals>
+ <configuration>
+ <descriptors>
+ <descriptor>
+ ${basedir}/src/assembly/assembly-bin.xml
+ </descriptor>
+ </descriptors>
+ <finalName>
+ nanocontainer-${pom.version}
+ </finalName>
+ <workDirectory>
+ target/assembly/bin
+ </workDirectory>
+ </configuration>
+ </execution>
+ <execution>
+ <id>src</id>
+ <phase>install</phase>
+ <goals>
+ <goal>assembly</goal>
+ </goals>
+ <configuration>
+ <descriptors>
+ <descriptor>
+ ${basedir}/src/assembly/assembly-src.xml
+ </descriptor>
+ </descriptors>
+ <finalName>
+ nanocontainer-${pom.version}
+ </finalName>
+ <workDirectory>
+ target/assembly/src
+ </workDirectory>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>
\ No newline at end of file
Deleted: java/1.x/nanocontainer/tags/nanocontainer-1.1.2/pom.xml (4091 => 4093)
--- java/1.x/nanocontainer/trunk/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/tags/nanocontainer-1.1.2/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
@@ -1,443 +0,0 @@
-<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.nanocontainer</groupId>
- <artifactId>nanocontainer-parent</artifactId>
- <name>NanoContainer Parent</name>
- <version>1.2-SNAPSHOT</version>
- <packaging>pom</packaging>
- <url>http://www.nanocontainer.org</url>
-
- <modules>
- <module>testmodel</module>
- <module>container</module>
- <module>container-tck</module>
- <module>container-aop</module>
- <module>container-bsh</module>
- <module>container-groovy</module>
- <module>container-jruby</module>
- <module>container-jython</module>
- <module>container-rhino</module>
- <module>booter</module>
- <module>deployer</module>
- <module>webcontainer</module>
- <module>distribution</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/NANO</url>
- </issueManagement>
-
- <licenses>
- <license>
- <url>
- https://svn.codehaus.org/picocontainer/java/1.x/nanocontainer/trunk/LICENSE.txt
- </url>
- <distribution>repo</distribution>
- </license>
- </licenses>
-
- <scm>
- <connection>
- scm:svn:https://svn.codehaus.org/picocontainer/java/1.x/nanocontainer/trunk/
- </connection>
- <developerConnection>
- scm:svn:https://svn.codehaus.org/picocontainer/java/1.x/nanocontainer/trunk/
- </developerConnection>
- <url>
- http://fisheye.codehaus.org/browse/picocontainer/java/1.x/nanocontainer/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>
- <id>jetty-release-repository</id>
- <name>Jetty Release Repository</name>
- <url>http://jetty.mortbay.org/maven2/release</url>
- </repository>
-
- </repositories>
-
- <pluginRepositories>
- <pluginRepository>
- <id>codehaus-plugin-snapshots-repository</id>
- <name>Codehaus Plugin Snapshots Repository</name>
- <url>http://snapshots.repository.codehaus.org</url>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- </pluginRepository>
- </pluginRepositories>
-
- <distributionManagement>
- <repository>
- <id>codehaus.org</id>
- <name>Codehaus NanoContainer Repository</name>
- <url>
- dav:https://dav.codehaus.org/repository/nanocontainer/
- </url>
- </repository>
- <snapshotRepository>
- <id>codehaus.org</id>
- <name>Codehaus NanoContainer Snapshots Repository</name>
- <url>
- dav:https://dav.codehaus.org/snapshots.repository/nanocontainer/
- </url>
- </snapshotRepository>
- <site>
- <id>codehaus.org</id>
- <url>dav:https://dav.codehaus.org/nanocontainer/</url>
- </site>
- </distributionManagement>
-
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.picocontainer</groupId>
- <artifactId>picocontainer</artifactId>
- <version>1.3</version>
- </dependency>
- <dependency>
- <groupId>org.picocontainer</groupId>
- <artifactId>picocontainer-gems</artifactId>
- <version>1.3</version>
- </dependency>
- <dependency>
- <groupId>org.picocontainer</groupId>
- <artifactId>picocontainer-tck</artifactId>
- <version>1.3</version>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer</artifactId>
- <version>1.2-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-tck</artifactId>
- <version>1.2-SNAPSHOT</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-testmodel</artifactId>
- <version>1.2-SNAPSHOT</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-booter</artifactId>
- <version>1.2-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-deployer</artifactId>
- <version>1.2-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-webcontainer</artifactId>
- <version>1.2-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-aop</artifactId>
- <version>1.2-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-bsh</artifactId>
- <version>1.2-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-groovy</artifactId>
- <version>1.2-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-jruby</artifactId>
- <version>1.2-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-jython</artifactId>
- <version>1.2-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-rhino</artifactId>
- <version>1.2-SNAPSHOT</version>
- </dependency>
- <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.2.0</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>proxytoys</groupId>
- <artifactId>proxytoys</artifactId>
- <version>0.2.1</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <dependencies>
- <!-- test scoped dependencies -->
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- </dependency>
- <dependency>
- <groupId>jmock</groupId>
- <artifactId>jmock</artifactId>
- </dependency>
- <dependency>
- <groupId>org.picocontainer</groupId>
- <artifactId>picocontainer-tck</artifactId>
- </dependency>
- <dependency>
- <groupId>proxytoys</groupId>
- <artifactId>proxytoys</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.4</source>
- <target>1.4</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-jar-plugin</artifactId>
- <version>2.1</version>
- </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>
- </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>
- <workingDirectory>${basedir}</workingDirectory>
- <useFile>false</useFile>
- <systemProperties>
- <property>
- <name>test.src.dir</name>
- <value>${basedir}/src/test</value>
- </property>
- <property>
- <name>java.awt.headless</name>
- <value>true</value>
- </property>
- <property>
- <name>testcomp.jar</name>
- <value>
- ${basedir}/../container/src/test-comp/TestComp.jar
- </value>
- </property>
- </systemProperties>
- <excludes>
- <exclude>**/Abstract*Test.java</exclude>
- <exclude>**/Abstract*TestCase.java</exclude>
- </excludes>
- <includes>
- <include>**/*Test.java</include>
- <include>**/*TestCase.java</include>
- </includes>
- </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>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-release-plugin</artifactId>
- <version>2.0-beta-7</version>
- <configuration>
- <autoVersionSubmodules>true</autoVersionSubmodules>
- <preparationGoals>clean install</preparationGoals>
- <tagBase>
- https://svn.codehaus.org/picocontainer/java/1.x/nanocontainer/tags/
- </tagBase>
- </configuration>
- </plugin>
- </plugins>
- <extensions>
- <extension>
- <groupId>org.apache.maven.wagon</groupId>
- <artifactId>wagon-ssh-external</artifactId>
- <version>1.0-beta-2</version>
- </extension>
- <extension>
- <groupId>org.apache.maven.wagon</groupId>
- <artifactId>wagon-webdav</artifactId>
- <version>1.0-beta-2</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>
Copied: java/1.x/nanocontainer/tags/nanocontainer-1.1.2/pom.xml (from rev 4092, java/1.x/nanocontainer/trunk/pom.xml) (0 => 4093)
--- java/1.x/nanocontainer/tags/nanocontainer-1.1.2/pom.xml (rev 0)
+++ java/1.x/nanocontainer/tags/nanocontainer-1.1.2/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
@@ -0,0 +1,435 @@
+<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.nanocontainer</groupId>
+ <artifactId>nanocontainer-parent</artifactId>
+ <name>NanoContainer Parent</name>
+ <version>1.1.2</version>
+ <packaging>pom</packaging>
+ <url>http://www.nanocontainer.org</url>
+
+ <modules>
+ <module>testmodel</module>
+ <module>container</module>
+ <module>container-tck</module>
+ <module>container-aop</module>
+ <module>container-bsh</module>
+ <module>container-groovy</module>
+ <module>container-jruby</module>
+ <module>container-jython</module>
+ <module>container-rhino</module>
+ <module>booter</module>
+ <module>deployer</module>
+ <module>webcontainer</module>
+ <module>distribution</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/NANO</url>
+ </issueManagement>
+
+ <licenses>
+ <license>
+ <url>
+ https://svn.codehaus.org/picocontainer/java/1.x/nanocontainer/trunk/LICENSE.txt
+ </url>
+ <distribution>repo</distribution>
+ </license>
+ </licenses>
+
+ <scm>
+ <connection>scm:svn:https://svn.codehaus.org/picocontainer/java/1.x/nanocontainer/tags/nanocontainer-1.1.2</connection>
+ <developerConnection>scm:svn:https://svn.codehaus.org/picocontainer/java/1.x/nanocontainer/tags/nanocontainer-1.1.2</developerConnection>
+ <url>http://fisheye.codehaus.org/browse/picocontainer/java/1.x/nanocontainer/tags/nanocontainer-1.1.2</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>
+ <id>jetty-release-repository</id>
+ <name>Jetty Release Repository</name>
+ <url>http://jetty.mortbay.org/maven2/release</url>
+ </repository>
+
+ </repositories>
+
+ <pluginRepositories>
+ <pluginRepository>
+ <id>codehaus-plugin-snapshots-repository</id>
+ <name>Codehaus Plugin Snapshots Repository</name>
+ <url>http://snapshots.repository.codehaus.org</url>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ </pluginRepository>
+ </pluginRepositories>
+
+ <distributionManagement>
+ <repository>
+ <id>codehaus.org</id>
+ <name>Codehaus NanoContainer Repository</name>
+ <url>
+ dav:https://dav.codehaus.org/repository/nanocontainer/
+ </url>
+ </repository>
+ <snapshotRepository>
+ <id>codehaus.org</id>
+ <name>Codehaus NanoContainer Snapshots Repository</name>
+ <url>
+ dav:https://dav.codehaus.org/snapshots.repository/nanocontainer/
+ </url>
+ </snapshotRepository>
+ <site>
+ <id>codehaus.org</id>
+ <url>dav:https://dav.codehaus.org/nanocontainer/</url>
+ </site>
+ </distributionManagement>
+
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>org.picocontainer</groupId>
+ <artifactId>picocontainer</artifactId>
+ <version>1.3</version>
+ </dependency>
+ <dependency>
+ <groupId>org.picocontainer</groupId>
+ <artifactId>picocontainer-gems</artifactId>
+ <version>1.3</version>
+ </dependency>
+ <dependency>
+ <groupId>org.picocontainer</groupId>
+ <artifactId>picocontainer-tck</artifactId>
+ <version>1.3</version>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer</artifactId>
+ <version>1.1.2</version>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-tck</artifactId>
+ <version>1.1.2</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-testmodel</artifactId>
+ <version>1.1.2</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-booter</artifactId>
+ <version>1.1.2</version>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-deployer</artifactId>
+ <version>1.1.2</version>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-webcontainer</artifactId>
+ <version>1.1.2</version>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-aop</artifactId>
+ <version>1.1.2</version>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-bsh</artifactId>
+ <version>1.1.2</version>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-groovy</artifactId>
+ <version>1.1.2</version>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-jruby</artifactId>
+ <version>1.1.2</version>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-jython</artifactId>
+ <version>1.1.2</version>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-rhino</artifactId>
+ <version>1.1.2</version>
+ </dependency>
+ <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.2.0</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>proxytoys</groupId>
+ <artifactId>proxytoys</artifactId>
+ <version>0.2.1</version>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+ <dependencies>
+ <!-- test scoped dependencies -->
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>jmock</groupId>
+ <artifactId>jmock</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.picocontainer</groupId>
+ <artifactId>picocontainer-tck</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>proxytoys</groupId>
+ <artifactId>proxytoys</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.4</source>
+ <target>1.4</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-jar-plugin</artifactId>
+ <version>2.1</version>
+ </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>
+ </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>
+ <workingDirectory>${basedir}</workingDirectory>
+ <useFile>false</useFile>
+ <systemProperties>
+ <property>
+ <name>test.src.dir</name>
+ <value>${basedir}/src/test</value>
+ </property>
+ <property>
+ <name>java.awt.headless</name>
+ <value>true</value>
+ </property>
+ <property>
+ <name>testcomp.jar</name>
+ <value>
+ ${basedir}/../container/src/test-comp/TestComp.jar
+ </value>
+ </property>
+ </systemProperties>
+ <excludes>
+ <exclude>**/Abstract*Test.java</exclude>
+ <exclude>**/Abstract*TestCase.java</exclude>
+ </excludes>
+ <includes>
+ <include>**/*Test.java</include>
+ <include>**/*TestCase.java</include>
+ </includes>
+ </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>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-release-plugin</artifactId>
+ <version>2.0-beta-7</version>
+ <configuration>
+ <autoVersionSubmodules>true</autoVersionSubmodules>
+ <preparationGoals>clean install</preparationGoals>
+ <tagBase>
+ https://svn.codehaus.org/picocontainer/java/1.x/nanocontainer/tags/
+ </tagBase>
+ </configuration>
+ </plugin>
+ </plugins>
+ <extensions>
+ <extension>
+ <groupId>org.apache.maven.wagon</groupId>
+ <artifactId>wagon-ssh-external</artifactId>
+ <version>1.0-beta-2</version>
+ </extension>
+ <extension>
+ <groupId>org.apache.maven.wagon</groupId>
+ <artifactId>wagon-webdav</artifactId>
+ <version>1.0-beta-2</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>
\ No newline at end of file
Deleted: java/1.x/nanocontainer/tags/nanocontainer-1.1.2/testmodel/pom.xml (4091 => 4093)
--- java/1.x/nanocontainer/trunk/testmodel/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/tags/nanocontainer-1.1.2/testmodel/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
@@ -1,26 +0,0 @@
-<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.nanocontainer</groupId>
- <artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
- </parent>
- <artifactId>nanocontainer-testmodel</artifactId>
- <name>NanoContainer Test Model</name>
- <dependencies>
- <dependency>
- <groupId>org.picocontainer</groupId>
- <artifactId>picocontainer</artifactId>
- </dependency>
- <dependency>
- <groupId>org.picocontainer</groupId>
- <artifactId>picocontainer-tck</artifactId>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>compile</scope>
- </dependency>
- </dependencies>
-</project>
\ No newline at end of file
Copied: java/1.x/nanocontainer/tags/nanocontainer-1.1.2/testmodel/pom.xml (from rev 4092, java/1.x/nanocontainer/trunk/testmodel/pom.xml) (0 => 4093)
--- java/1.x/nanocontainer/tags/nanocontainer-1.1.2/testmodel/pom.xml (rev 0)
+++ java/1.x/nanocontainer/tags/nanocontainer-1.1.2/testmodel/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
@@ -0,0 +1,26 @@
+<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.nanocontainer</groupId>
+ <artifactId>nanocontainer-parent</artifactId>
+ <version>1.1.2</version>
+ </parent>
+ <artifactId>nanocontainer-testmodel</artifactId>
+ <name>NanoContainer Test Model</name>
+ <dependencies>
+ <dependency>
+ <groupId>org.picocontainer</groupId>
+ <artifactId>picocontainer</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.picocontainer</groupId>
+ <artifactId>picocontainer-tck</artifactId>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>compile</scope>
+ </dependency>
+ </dependencies>
+</project>
\ No newline at end of file
Deleted: java/1.x/nanocontainer/tags/nanocontainer-1.1.2/webcontainer/pom.xml (4091 => 4093)
--- java/1.x/nanocontainer/trunk/webcontainer/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/tags/nanocontainer-1.1.2/webcontainer/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
@@ -1,84 +0,0 @@
-<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.nanocontainer</groupId>
- <artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
- </parent>
- <artifactId>nanocontainer-webcontainer</artifactId>
- <name>NanoContainer WebContainer</name>
- <packaging>jar</packaging>
- <dependencies>
- <dependency>
- <groupId>org.nanocontainer</groupId>
- <artifactId>nanocontainer</artifactId>
- </dependency>
- <dependency>
- <groupId>org.nanocontainer</groupId>
- <artifactId>nanocontainer-groovy</artifactId>
- </dependency>
- <!-- test scoped dependencies -->
- <dependency>
- <groupId>org.picocontainer</groupId>
- <artifactId>picocontainer-gems</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-tck</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>nanocontainer-testmodel</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>servlet-api-2.5</artifactId>
- <version>6.1.3</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>jsp-2.1</artifactId>
- <version>6.1.3</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>jsp-api-2.1</artifactId>
- <version>6.1.3</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.eclipse.jdt</groupId>
- <artifactId>core</artifactId>
- <version>3.1.1</version>
- </dependency>
- <dependency>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>jetty</artifactId>
- <version>6.1.3</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>jetty-util</artifactId>
- <version>6.1.3</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>commons-logging</groupId>
- <artifactId>commons-logging</artifactId>
- <version>1.0.4</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>commons-el</groupId>
- <artifactId>commons-el</artifactId>
- <version>1.0</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
-</project>
\ No newline at end of file
Copied: java/1.x/nanocontainer/tags/nanocontainer-1.1.2/webcontainer/pom.xml (from rev 4092, java/1.x/nanocontainer/trunk/webcontainer/pom.xml) (0 => 4093)
--- java/1.x/nanocontainer/tags/nanocontainer-1.1.2/webcontainer/pom.xml (rev 0)
+++ java/1.x/nanocontainer/tags/nanocontainer-1.1.2/webcontainer/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
@@ -0,0 +1,84 @@
+<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.nanocontainer</groupId>
+ <artifactId>nanocontainer-parent</artifactId>
+ <version>1.1.2</version>
+ </parent>
+ <artifactId>nanocontainer-webcontainer</artifactId>
+ <name>NanoContainer WebContainer</name>
+ <packaging>jar</packaging>
+ <dependencies>
+ <dependency>
+ <groupId>org.nanocontainer</groupId>
+ <artifactId>nanocontainer</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.nanocontainer</groupId>
+ <artifactId>nanocontainer-groovy</artifactId>
+ </dependency>
+ <!-- test scoped dependencies -->
+ <dependency>
+ <groupId>org.picocontainer</groupId>
+ <artifactId>picocontainer-gems</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-tck</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>nanocontainer-testmodel</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.mortbay.jetty</groupId>
+ <artifactId>servlet-api-2.5</artifactId>
+ <version>6.1.3</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.mortbay.jetty</groupId>
+ <artifactId>jsp-2.1</artifactId>
+ <version>6.1.3</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.mortbay.jetty</groupId>
+ <artifactId>jsp-api-2.1</artifactId>
+ <version>6.1.3</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.jdt</groupId>
+ <artifactId>core</artifactId>
+ <version>3.1.1</version>
+ </dependency>
+ <dependency>
+ <groupId>org.mortbay.jetty</groupId>
+ <artifactId>jetty</artifactId>
+ <version>6.1.3</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.mortbay.jetty</groupId>
+ <artifactId>jetty-util</artifactId>
+ <version>6.1.3</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ <version>1.0.4</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>commons-el</groupId>
+ <artifactId>commons-el</artifactId>
+ <version>1.0</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+</project>
\ No newline at end of file
To unsubscribe from this list please visit:
http://xircles.codehaus.org/manage_email
Thread at a glance:
Previous Message by Date:
click to view message preview
[picocontainer-scm] [4092] java/1.x/nanocontainer/trunk: [maven-release-plugin] prepare release nanocontainer-1.1.2
Revision 4092
Author mauro
Date 2007-12-11 16:51:33 -0600 (Tue, 11 Dec 2007)
Log Message
[maven-release-plugin] prepare release nanocontainer-1.1.2
Modified Paths
java/1.x/nanocontainer/trunk/booter/pom.xml
java/1.x/nanocontainer/trunk/container/pom.xml
java/1.x/nanocontainer/trunk/container-aop/pom.xml
java/1.x/nanocontainer/trunk/container-bsh/pom.xml
java/1.x/nanocontainer/trunk/container-groovy/pom.xml
java/1.x/nanocontainer/trunk/container-jruby/pom.xml
java/1.x/nanocontainer/trunk/container-jython/pom.xml
java/1.x/nanocontainer/trunk/container-rhino/pom.xml
java/1.x/nanocontainer/trunk/container-tck/pom.xml
java/1.x/nanocontainer/trunk/deployer/pom.xml
java/1.x/nanocontainer/trunk/distribution/pom.xml
java/1.x/nanocontainer/trunk/pom.xml
java/1.x/nanocontainer/trunk/testmodel/pom.xml
java/1.x/nanocontainer/trunk/webcontainer/pom.xml
Diff
Modified: java/1.x/nanocontainer/trunk/booter/pom.xml (4091 => 4092)
--- java/1.x/nanocontainer/trunk/booter/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/trunk/booter/pom.xml 2007-12-11 22:51:33 UTC (rev 4092)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</parent>
<artifactId>nanocontainer-booter</artifactId>
<name>NanoContainer Booter</name>
Modified: java/1.x/nanocontainer/trunk/container/pom.xml (4091 => 4092)
--- java/1.x/nanocontainer/trunk/container/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/trunk/container/pom.xml 2007-12-11 22:51:33 UTC (rev 4092)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</parent>
<artifactId>nanocontainer</artifactId>
<name>NanoContainer Core</name>
Modified: java/1.x/nanocontainer/trunk/container-aop/pom.xml (4091 => 4092)
--- java/1.x/nanocontainer/trunk/container-aop/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/trunk/container-aop/pom.xml 2007-12-11 22:51:33 UTC (rev 4092)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</parent>
<artifactId>nanocontainer-aop</artifactId>
<name>NanoContainer AOP</name>
Modified: java/1.x/nanocontainer/trunk/container-bsh/pom.xml (4091 => 4092)
--- java/1.x/nanocontainer/trunk/container-bsh/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/trunk/container-bsh/pom.xml 2007-12-11 22:51:33 UTC (rev 4092)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</parent>
<artifactId>nanocontainer-bsh</artifactId>
<name>NanoContainer bsh</name>
Modified: java/1.x/nanocontainer/trunk/container-groovy/pom.xml (4091 => 4092)
--- java/1.x/nanocontainer/trunk/container-groovy/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/trunk/container-groovy/pom.xml 2007-12-11 22:51:33 UTC (rev 4092)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</parent>
<artifactId>nanocontainer-groovy</artifactId>
<name>NanoContainer Groovy</name>
Modified: java/1.x/nanocontainer/trunk/container-jruby/pom.xml (4091 => 4092)
--- java/1.x/nanocontainer/trunk/container-jruby/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/trunk/container-jruby/pom.xml 2007-12-11 22:51:33 UTC (rev 4092)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</parent>
<artifactId>nanocontainer-jruby</artifactId>
<name>NanoContainer JRuby</name>
Modified: java/1.x/nanocontainer/trunk/container-jython/pom.xml (4091 => 4092)
--- java/1.x/nanocontainer/trunk/container-jython/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/trunk/container-jython/pom.xml 2007-12-11 22:51:33 UTC (rev 4092)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</parent>
<artifactId>nanocontainer-jython</artifactId>
<name>NanoContainer Jython</name>
Modified: java/1.x/nanocontainer/trunk/container-rhino/pom.xml (4091 => 4092)
--- java/1.x/nanocontainer/trunk/container-rhino/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/trunk/container-rhino/pom.xml 2007-12-11 22:51:33 UTC (rev 4092)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</parent>
<artifactId>nanocontainer-rhino</artifactId>
<name>NanoContainer Rhino</name>
Modified: java/1.x/nanocontainer/trunk/container-tck/pom.xml (4091 => 4092)
--- java/1.x/nanocontainer/trunk/container-tck/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/trunk/container-tck/pom.xml 2007-12-11 22:51:33 UTC (rev 4092)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</parent>
<artifactId>nanocontainer-tck</artifactId>
<name>NanoContainer TCK</name>
Modified: java/1.x/nanocontainer/trunk/deployer/pom.xml (4091 => 4092)
--- java/1.x/nanocontainer/trunk/deployer/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/trunk/deployer/pom.xml 2007-12-11 22:51:33 UTC (rev 4092)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</parent>
<artifactId>nanocontainer-deployer</artifactId>
<name>NanoContainer Deployer</name>
Modified: java/1.x/nanocontainer/trunk/distribution/pom.xml (4091 => 4092)
--- java/1.x/nanocontainer/trunk/distribution/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/trunk/distribution/pom.xml 2007-12-11 22:51:33 UTC (rev 4092)
@@ -1,12 +1,9 @@
-<?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">
+<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.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</parent>
<artifactId>nanocontainer-distribution</artifactId>
<packaging>pom</packaging>
@@ -239,4 +236,4 @@
</plugins>
</build>
-</project>
+</project>
\ No newline at end of file
Modified: java/1.x/nanocontainer/trunk/pom.xml (4091 => 4092)
--- java/1.x/nanocontainer/trunk/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/trunk/pom.xml 2007-12-11 22:51:33 UTC (rev 4092)
@@ -1,11 +1,9 @@
-<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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
<name>NanoContainer Parent</name>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
<packaging>pom</packaging>
<url>http://www.nanocontainer.org</url>
@@ -49,15 +47,9 @@
</licenses>
<scm>
- <connection>
- scm:svn:https://svn.codehaus.org/picocontainer/java/1.x/nanocontainer/trunk/
- </connection>
- <developerConnection>
- scm:svn:https://svn.codehaus.org/picocontainer/java/1.x/nanocontainer/trunk/
- </developerConnection>
- <url>
- http://fisheye.codehaus.org/browse/picocontainer/java/1.x/nanocontainer/trunk/
- </url>
+ <connection>scm:svn:https://svn.codehaus.org/picocontainer/java/1.x/nanocontainer/tags/nanocontainer-1.1.2</connection>
+ <developerConnection>scm:svn:https://svn.codehaus.org/picocontainer/java/1.x/nanocontainer/tags/nanocontainer-1.1.2</developerConnection>
+ <url>http://fisheye.codehaus.org/browse/picocontainer/java/1.x/nanocontainer/tags/nanocontainer-1.1.2</url>
</scm>
<repositories>
@@ -140,64 +132,64 @@
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-tck</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-testmodel</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-booter</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-deployer</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-webcontainer</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-aop</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-bsh</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-groovy</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-jruby</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-jython</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-rhino</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</dependency>
<dependency>
<groupId>junit</groupId>
@@ -440,4 +432,4 @@
</profile>
</profiles>
-</project>
+</project>
\ No newline at end of file
Modified: java/1.x/nanocontainer/trunk/testmodel/pom.xml (4091 => 4092)
--- java/1.x/nanocontainer/trunk/testmodel/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/trunk/testmodel/pom.xml 2007-12-11 22:51:33 UTC (rev 4092)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</parent>
<artifactId>nanocontainer-testmodel</artifactId>
<name>NanoContainer Test Model</name>
Modified: java/1.x/nanocontainer/trunk/webcontainer/pom.xml (4091 => 4092)
--- java/1.x/nanocontainer/trunk/webcontainer/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/trunk/webcontainer/pom.xml 2007-12-11 22:51:33 UTC (rev 4092)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</parent>
<artifactId>nanocontainer-webcontainer</artifactId>
<name>NanoContainer WebContainer</name>
To unsubscribe from this list please visit:
http://xircles.codehaus.org/manage_email
Next Message by Date:
click to view message preview
[picocontainer-scm] [4094] java/1.x/nanocontainer/trunk: [maven-release-plugin] prepare for next development iteration
Revision 4094
Author mauro
Date 2007-12-11 16:51:58 -0600 (Tue, 11 Dec 2007)
Log Message
[maven-release-plugin] prepare for next development iteration
Modified Paths
java/1.x/nanocontainer/trunk/booter/pom.xml
java/1.x/nanocontainer/trunk/container/pom.xml
java/1.x/nanocontainer/trunk/container-aop/pom.xml
java/1.x/nanocontainer/trunk/container-bsh/pom.xml
java/1.x/nanocontainer/trunk/container-groovy/pom.xml
java/1.x/nanocontainer/trunk/container-jruby/pom.xml
java/1.x/nanocontainer/trunk/container-jython/pom.xml
java/1.x/nanocontainer/trunk/container-rhino/pom.xml
java/1.x/nanocontainer/trunk/container-tck/pom.xml
java/1.x/nanocontainer/trunk/deployer/pom.xml
java/1.x/nanocontainer/trunk/distribution/pom.xml
java/1.x/nanocontainer/trunk/pom.xml
java/1.x/nanocontainer/trunk/testmodel/pom.xml
java/1.x/nanocontainer/trunk/webcontainer/pom.xml
Diff
Modified: java/1.x/nanocontainer/trunk/booter/pom.xml (4093 => 4094)
--- java/1.x/nanocontainer/trunk/booter/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
+++ java/1.x/nanocontainer/trunk/booter/pom.xml 2007-12-11 22:51:58 UTC (rev 4094)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</parent>
<artifactId>nanocontainer-booter</artifactId>
<name>NanoContainer Booter</name>
Modified: java/1.x/nanocontainer/trunk/container/pom.xml (4093 => 4094)
--- java/1.x/nanocontainer/trunk/container/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
+++ java/1.x/nanocontainer/trunk/container/pom.xml 2007-12-11 22:51:58 UTC (rev 4094)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</parent>
<artifactId>nanocontainer</artifactId>
<name>NanoContainer Core</name>
Modified: java/1.x/nanocontainer/trunk/container-aop/pom.xml (4093 => 4094)
--- java/1.x/nanocontainer/trunk/container-aop/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
+++ java/1.x/nanocontainer/trunk/container-aop/pom.xml 2007-12-11 22:51:58 UTC (rev 4094)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</parent>
<artifactId>nanocontainer-aop</artifactId>
<name>NanoContainer AOP</name>
Modified: java/1.x/nanocontainer/trunk/container-bsh/pom.xml (4093 => 4094)
--- java/1.x/nanocontainer/trunk/container-bsh/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
+++ java/1.x/nanocontainer/trunk/container-bsh/pom.xml 2007-12-11 22:51:58 UTC (rev 4094)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</parent>
<artifactId>nanocontainer-bsh</artifactId>
<name>NanoContainer bsh</name>
Modified: java/1.x/nanocontainer/trunk/container-groovy/pom.xml (4093 => 4094)
--- java/1.x/nanocontainer/trunk/container-groovy/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
+++ java/1.x/nanocontainer/trunk/container-groovy/pom.xml 2007-12-11 22:51:58 UTC (rev 4094)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</parent>
<artifactId>nanocontainer-groovy</artifactId>
<name>NanoContainer Groovy</name>
Modified: java/1.x/nanocontainer/trunk/container-jruby/pom.xml (4093 => 4094)
--- java/1.x/nanocontainer/trunk/container-jruby/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
+++ java/1.x/nanocontainer/trunk/container-jruby/pom.xml 2007-12-11 22:51:58 UTC (rev 4094)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</parent>
<artifactId>nanocontainer-jruby</artifactId>
<name>NanoContainer JRuby</name>
Modified: java/1.x/nanocontainer/trunk/container-jython/pom.xml (4093 => 4094)
--- java/1.x/nanocontainer/trunk/container-jython/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
+++ java/1.x/nanocontainer/trunk/container-jython/pom.xml 2007-12-11 22:51:58 UTC (rev 4094)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</parent>
<artifactId>nanocontainer-jython</artifactId>
<name>NanoContainer Jython</name>
Modified: java/1.x/nanocontainer/trunk/container-rhino/pom.xml (4093 => 4094)
--- java/1.x/nanocontainer/trunk/container-rhino/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
+++ java/1.x/nanocontainer/trunk/container-rhino/pom.xml 2007-12-11 22:51:58 UTC (rev 4094)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</parent>
<artifactId>nanocontainer-rhino</artifactId>
<name>NanoContainer Rhino</name>
Modified: java/1.x/nanocontainer/trunk/container-tck/pom.xml (4093 => 4094)
--- java/1.x/nanocontainer/trunk/container-tck/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
+++ java/1.x/nanocontainer/trunk/container-tck/pom.xml 2007-12-11 22:51:58 UTC (rev 4094)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</parent>
<artifactId>nanocontainer-tck</artifactId>
<name>NanoContainer TCK</name>
Modified: java/1.x/nanocontainer/trunk/deployer/pom.xml (4093 => 4094)
--- java/1.x/nanocontainer/trunk/deployer/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
+++ java/1.x/nanocontainer/trunk/deployer/pom.xml 2007-12-11 22:51:58 UTC (rev 4094)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</parent>
<artifactId>nanocontainer-deployer</artifactId>
<name>NanoContainer Deployer</name>
Modified: java/1.x/nanocontainer/trunk/distribution/pom.xml (4093 => 4094)
--- java/1.x/nanocontainer/trunk/distribution/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
+++ java/1.x/nanocontainer/trunk/distribution/pom.xml 2007-12-11 22:51:58 UTC (rev 4094)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</parent>
<artifactId>nanocontainer-distribution</artifactId>
<packaging>pom</packaging>
Modified: java/1.x/nanocontainer/trunk/pom.xml (4093 => 4094)
--- java/1.x/nanocontainer/trunk/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
+++ java/1.x/nanocontainer/trunk/pom.xml 2007-12-11 22:51:58 UTC (rev 4094)
@@ -3,7 +3,7 @@
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
<name>NanoContainer Parent</name>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
<packaging>pom</packaging>
<url>http://www.nanocontainer.org</url>
@@ -47,9 +47,9 @@
</licenses>
<scm>
- <connection>scm:svn:https://svn.codehaus.org/picocontainer/java/1.x/nanocontainer/tags/nanocontainer-1.1.2</connection>
- <developerConnection>scm:svn:https://svn.codehaus.org/picocontainer/java/1.x/nanocontainer/tags/nanocontainer-1.1.2</developerConnection>
- <url>http://fisheye.codehaus.org/browse/picocontainer/java/1.x/nanocontainer/tags/nanocontainer-1.1.2</url>
+ <connection>scm:svn:https://svn.codehaus.org/picocontainer/java/1.x/nanocontainer/trunk/</connection>
+ <developerConnection>scm:svn:https://svn.codehaus.org/picocontainer/java/1.x/nanocontainer/trunk/</developerConnection>
+ <url>http://fisheye.codehaus.org/browse/picocontainer/java/1.x/nanocontainer/trunk/</url>
</scm>
<repositories>
@@ -132,64 +132,64 @@
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-tck</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-testmodel</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-booter</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-deployer</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-webcontainer</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-aop</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-bsh</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-groovy</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-jruby</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-jython</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-rhino</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: java/1.x/nanocontainer/trunk/testmodel/pom.xml (4093 => 4094)
--- java/1.x/nanocontainer/trunk/testmodel/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
+++ java/1.x/nanocontainer/trunk/testmodel/pom.xml 2007-12-11 22:51:58 UTC (rev 4094)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</parent>
<artifactId>nanocontainer-testmodel</artifactId>
<name>NanoContainer Test Model</name>
Modified: java/1.x/nanocontainer/trunk/webcontainer/pom.xml (4093 => 4094)
--- java/1.x/nanocontainer/trunk/webcontainer/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
+++ java/1.x/nanocontainer/trunk/webcontainer/pom.xml 2007-12-11 22:51:58 UTC (rev 4094)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</parent>
<artifactId>nanocontainer-webcontainer</artifactId>
<name>NanoContainer WebContainer</name>
To unsubscribe from this list please visit:
http://xircles.codehaus.org/manage_email
Previous Message by Thread:
click to view message preview
[picocontainer-scm] [4092] java/1.x/nanocontainer/trunk: [maven-release-plugin] prepare release nanocontainer-1.1.2
Revision 4092
Author mauro
Date 2007-12-11 16:51:33 -0600 (Tue, 11 Dec 2007)
Log Message
[maven-release-plugin] prepare release nanocontainer-1.1.2
Modified Paths
java/1.x/nanocontainer/trunk/booter/pom.xml
java/1.x/nanocontainer/trunk/container/pom.xml
java/1.x/nanocontainer/trunk/container-aop/pom.xml
java/1.x/nanocontainer/trunk/container-bsh/pom.xml
java/1.x/nanocontainer/trunk/container-groovy/pom.xml
java/1.x/nanocontainer/trunk/container-jruby/pom.xml
java/1.x/nanocontainer/trunk/container-jython/pom.xml
java/1.x/nanocontainer/trunk/container-rhino/pom.xml
java/1.x/nanocontainer/trunk/container-tck/pom.xml
java/1.x/nanocontainer/trunk/deployer/pom.xml
java/1.x/nanocontainer/trunk/distribution/pom.xml
java/1.x/nanocontainer/trunk/pom.xml
java/1.x/nanocontainer/trunk/testmodel/pom.xml
java/1.x/nanocontainer/trunk/webcontainer/pom.xml
Diff
Modified: java/1.x/nanocontainer/trunk/booter/pom.xml (4091 => 4092)
--- java/1.x/nanocontainer/trunk/booter/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/trunk/booter/pom.xml 2007-12-11 22:51:33 UTC (rev 4092)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</parent>
<artifactId>nanocontainer-booter</artifactId>
<name>NanoContainer Booter</name>
Modified: java/1.x/nanocontainer/trunk/container/pom.xml (4091 => 4092)
--- java/1.x/nanocontainer/trunk/container/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/trunk/container/pom.xml 2007-12-11 22:51:33 UTC (rev 4092)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</parent>
<artifactId>nanocontainer</artifactId>
<name>NanoContainer Core</name>
Modified: java/1.x/nanocontainer/trunk/container-aop/pom.xml (4091 => 4092)
--- java/1.x/nanocontainer/trunk/container-aop/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/trunk/container-aop/pom.xml 2007-12-11 22:51:33 UTC (rev 4092)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</parent>
<artifactId>nanocontainer-aop</artifactId>
<name>NanoContainer AOP</name>
Modified: java/1.x/nanocontainer/trunk/container-bsh/pom.xml (4091 => 4092)
--- java/1.x/nanocontainer/trunk/container-bsh/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/trunk/container-bsh/pom.xml 2007-12-11 22:51:33 UTC (rev 4092)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</parent>
<artifactId>nanocontainer-bsh</artifactId>
<name>NanoContainer bsh</name>
Modified: java/1.x/nanocontainer/trunk/container-groovy/pom.xml (4091 => 4092)
--- java/1.x/nanocontainer/trunk/container-groovy/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/trunk/container-groovy/pom.xml 2007-12-11 22:51:33 UTC (rev 4092)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</parent>
<artifactId>nanocontainer-groovy</artifactId>
<name>NanoContainer Groovy</name>
Modified: java/1.x/nanocontainer/trunk/container-jruby/pom.xml (4091 => 4092)
--- java/1.x/nanocontainer/trunk/container-jruby/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/trunk/container-jruby/pom.xml 2007-12-11 22:51:33 UTC (rev 4092)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</parent>
<artifactId>nanocontainer-jruby</artifactId>
<name>NanoContainer JRuby</name>
Modified: java/1.x/nanocontainer/trunk/container-jython/pom.xml (4091 => 4092)
--- java/1.x/nanocontainer/trunk/container-jython/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/trunk/container-jython/pom.xml 2007-12-11 22:51:33 UTC (rev 4092)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</parent>
<artifactId>nanocontainer-jython</artifactId>
<name>NanoContainer Jython</name>
Modified: java/1.x/nanocontainer/trunk/container-rhino/pom.xml (4091 => 4092)
--- java/1.x/nanocontainer/trunk/container-rhino/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/trunk/container-rhino/pom.xml 2007-12-11 22:51:33 UTC (rev 4092)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</parent>
<artifactId>nanocontainer-rhino</artifactId>
<name>NanoContainer Rhino</name>
Modified: java/1.x/nanocontainer/trunk/container-tck/pom.xml (4091 => 4092)
--- java/1.x/nanocontainer/trunk/container-tck/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/trunk/container-tck/pom.xml 2007-12-11 22:51:33 UTC (rev 4092)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</parent>
<artifactId>nanocontainer-tck</artifactId>
<name>NanoContainer TCK</name>
Modified: java/1.x/nanocontainer/trunk/deployer/pom.xml (4091 => 4092)
--- java/1.x/nanocontainer/trunk/deployer/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/trunk/deployer/pom.xml 2007-12-11 22:51:33 UTC (rev 4092)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</parent>
<artifactId>nanocontainer-deployer</artifactId>
<name>NanoContainer Deployer</name>
Modified: java/1.x/nanocontainer/trunk/distribution/pom.xml (4091 => 4092)
--- java/1.x/nanocontainer/trunk/distribution/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/trunk/distribution/pom.xml 2007-12-11 22:51:33 UTC (rev 4092)
@@ -1,12 +1,9 @@
-<?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">
+<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.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</parent>
<artifactId>nanocontainer-distribution</artifactId>
<packaging>pom</packaging>
@@ -239,4 +236,4 @@
</plugins>
</build>
-</project>
+</project>
\ No newline at end of file
Modified: java/1.x/nanocontainer/trunk/pom.xml (4091 => 4092)
--- java/1.x/nanocontainer/trunk/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/trunk/pom.xml 2007-12-11 22:51:33 UTC (rev 4092)
@@ -1,11 +1,9 @@
-<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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
<name>NanoContainer Parent</name>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
<packaging>pom</packaging>
<url>http://www.nanocontainer.org</url>
@@ -49,15 +47,9 @@
</licenses>
<scm>
- <connection>
- scm:svn:https://svn.codehaus.org/picocontainer/java/1.x/nanocontainer/trunk/
- </connection>
- <developerConnection>
- scm:svn:https://svn.codehaus.org/picocontainer/java/1.x/nanocontainer/trunk/
- </developerConnection>
- <url>
- http://fisheye.codehaus.org/browse/picocontainer/java/1.x/nanocontainer/trunk/
- </url>
+ <connection>scm:svn:https://svn.codehaus.org/picocontainer/java/1.x/nanocontainer/tags/nanocontainer-1.1.2</connection>
+ <developerConnection>scm:svn:https://svn.codehaus.org/picocontainer/java/1.x/nanocontainer/tags/nanocontainer-1.1.2</developerConnection>
+ <url>http://fisheye.codehaus.org/browse/picocontainer/java/1.x/nanocontainer/tags/nanocontainer-1.1.2</url>
</scm>
<repositories>
@@ -140,64 +132,64 @@
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-tck</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-testmodel</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-booter</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-deployer</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-webcontainer</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-aop</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-bsh</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-groovy</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-jruby</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-jython</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-rhino</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</dependency>
<dependency>
<groupId>junit</groupId>
@@ -440,4 +432,4 @@
</profile>
</profiles>
-</project>
+</project>
\ No newline at end of file
Modified: java/1.x/nanocontainer/trunk/testmodel/pom.xml (4091 => 4092)
--- java/1.x/nanocontainer/trunk/testmodel/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/trunk/testmodel/pom.xml 2007-12-11 22:51:33 UTC (rev 4092)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</parent>
<artifactId>nanocontainer-testmodel</artifactId>
<name>NanoContainer Test Model</name>
Modified: java/1.x/nanocontainer/trunk/webcontainer/pom.xml (4091 => 4092)
--- java/1.x/nanocontainer/trunk/webcontainer/pom.xml 2007-12-11 15:52:55 UTC (rev 4091)
+++ java/1.x/nanocontainer/trunk/webcontainer/pom.xml 2007-12-11 22:51:33 UTC (rev 4092)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.2-SNAPSHOT</version>
+ <version>1.1.2</version>
</parent>
<artifactId>nanocontainer-webcontainer</artifactId>
<name>NanoContainer WebContainer</name>
To unsubscribe from this list please visit:
http://xircles.codehaus.org/manage_email
Next Message by Thread:
click to view message preview
[picocontainer-scm] [4094] java/1.x/nanocontainer/trunk: [maven-release-plugin] prepare for next development iteration
Revision 4094
Author mauro
Date 2007-12-11 16:51:58 -0600 (Tue, 11 Dec 2007)
Log Message
[maven-release-plugin] prepare for next development iteration
Modified Paths
java/1.x/nanocontainer/trunk/booter/pom.xml
java/1.x/nanocontainer/trunk/container/pom.xml
java/1.x/nanocontainer/trunk/container-aop/pom.xml
java/1.x/nanocontainer/trunk/container-bsh/pom.xml
java/1.x/nanocontainer/trunk/container-groovy/pom.xml
java/1.x/nanocontainer/trunk/container-jruby/pom.xml
java/1.x/nanocontainer/trunk/container-jython/pom.xml
java/1.x/nanocontainer/trunk/container-rhino/pom.xml
java/1.x/nanocontainer/trunk/container-tck/pom.xml
java/1.x/nanocontainer/trunk/deployer/pom.xml
java/1.x/nanocontainer/trunk/distribution/pom.xml
java/1.x/nanocontainer/trunk/pom.xml
java/1.x/nanocontainer/trunk/testmodel/pom.xml
java/1.x/nanocontainer/trunk/webcontainer/pom.xml
Diff
Modified: java/1.x/nanocontainer/trunk/booter/pom.xml (4093 => 4094)
--- java/1.x/nanocontainer/trunk/booter/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
+++ java/1.x/nanocontainer/trunk/booter/pom.xml 2007-12-11 22:51:58 UTC (rev 4094)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</parent>
<artifactId>nanocontainer-booter</artifactId>
<name>NanoContainer Booter</name>
Modified: java/1.x/nanocontainer/trunk/container/pom.xml (4093 => 4094)
--- java/1.x/nanocontainer/trunk/container/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
+++ java/1.x/nanocontainer/trunk/container/pom.xml 2007-12-11 22:51:58 UTC (rev 4094)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</parent>
<artifactId>nanocontainer</artifactId>
<name>NanoContainer Core</name>
Modified: java/1.x/nanocontainer/trunk/container-aop/pom.xml (4093 => 4094)
--- java/1.x/nanocontainer/trunk/container-aop/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
+++ java/1.x/nanocontainer/trunk/container-aop/pom.xml 2007-12-11 22:51:58 UTC (rev 4094)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</parent>
<artifactId>nanocontainer-aop</artifactId>
<name>NanoContainer AOP</name>
Modified: java/1.x/nanocontainer/trunk/container-bsh/pom.xml (4093 => 4094)
--- java/1.x/nanocontainer/trunk/container-bsh/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
+++ java/1.x/nanocontainer/trunk/container-bsh/pom.xml 2007-12-11 22:51:58 UTC (rev 4094)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</parent>
<artifactId>nanocontainer-bsh</artifactId>
<name>NanoContainer bsh</name>
Modified: java/1.x/nanocontainer/trunk/container-groovy/pom.xml (4093 => 4094)
--- java/1.x/nanocontainer/trunk/container-groovy/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
+++ java/1.x/nanocontainer/trunk/container-groovy/pom.xml 2007-12-11 22:51:58 UTC (rev 4094)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</parent>
<artifactId>nanocontainer-groovy</artifactId>
<name>NanoContainer Groovy</name>
Modified: java/1.x/nanocontainer/trunk/container-jruby/pom.xml (4093 => 4094)
--- java/1.x/nanocontainer/trunk/container-jruby/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
+++ java/1.x/nanocontainer/trunk/container-jruby/pom.xml 2007-12-11 22:51:58 UTC (rev 4094)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</parent>
<artifactId>nanocontainer-jruby</artifactId>
<name>NanoContainer JRuby</name>
Modified: java/1.x/nanocontainer/trunk/container-jython/pom.xml (4093 => 4094)
--- java/1.x/nanocontainer/trunk/container-jython/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
+++ java/1.x/nanocontainer/trunk/container-jython/pom.xml 2007-12-11 22:51:58 UTC (rev 4094)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</parent>
<artifactId>nanocontainer-jython</artifactId>
<name>NanoContainer Jython</name>
Modified: java/1.x/nanocontainer/trunk/container-rhino/pom.xml (4093 => 4094)
--- java/1.x/nanocontainer/trunk/container-rhino/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
+++ java/1.x/nanocontainer/trunk/container-rhino/pom.xml 2007-12-11 22:51:58 UTC (rev 4094)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</parent>
<artifactId>nanocontainer-rhino</artifactId>
<name>NanoContainer Rhino</name>
Modified: java/1.x/nanocontainer/trunk/container-tck/pom.xml (4093 => 4094)
--- java/1.x/nanocontainer/trunk/container-tck/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
+++ java/1.x/nanocontainer/trunk/container-tck/pom.xml 2007-12-11 22:51:58 UTC (rev 4094)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</parent>
<artifactId>nanocontainer-tck</artifactId>
<name>NanoContainer TCK</name>
Modified: java/1.x/nanocontainer/trunk/deployer/pom.xml (4093 => 4094)
--- java/1.x/nanocontainer/trunk/deployer/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
+++ java/1.x/nanocontainer/trunk/deployer/pom.xml 2007-12-11 22:51:58 UTC (rev 4094)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</parent>
<artifactId>nanocontainer-deployer</artifactId>
<name>NanoContainer Deployer</name>
Modified: java/1.x/nanocontainer/trunk/distribution/pom.xml (4093 => 4094)
--- java/1.x/nanocontainer/trunk/distribution/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
+++ java/1.x/nanocontainer/trunk/distribution/pom.xml 2007-12-11 22:51:58 UTC (rev 4094)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</parent>
<artifactId>nanocontainer-distribution</artifactId>
<packaging>pom</packaging>
Modified: java/1.x/nanocontainer/trunk/pom.xml (4093 => 4094)
--- java/1.x/nanocontainer/trunk/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
+++ java/1.x/nanocontainer/trunk/pom.xml 2007-12-11 22:51:58 UTC (rev 4094)
@@ -3,7 +3,7 @@
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
<name>NanoContainer Parent</name>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
<packaging>pom</packaging>
<url>http://www.nanocontainer.org</url>
@@ -47,9 +47,9 @@
</licenses>
<scm>
- <connection>scm:svn:https://svn.codehaus.org/picocontainer/java/1.x/nanocontainer/tags/nanocontainer-1.1.2</connection>
- <developerConnection>scm:svn:https://svn.codehaus.org/picocontainer/java/1.x/nanocontainer/tags/nanocontainer-1.1.2</developerConnection>
- <url>http://fisheye.codehaus.org/browse/picocontainer/java/1.x/nanocontainer/tags/nanocontainer-1.1.2</url>
+ <connection>scm:svn:https://svn.codehaus.org/picocontainer/java/1.x/nanocontainer/trunk/</connection>
+ <developerConnection>scm:svn:https://svn.codehaus.org/picocontainer/java/1.x/nanocontainer/trunk/</developerConnection>
+ <url>http://fisheye.codehaus.org/browse/picocontainer/java/1.x/nanocontainer/trunk/</url>
</scm>
<repositories>
@@ -132,64 +132,64 @@
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-tck</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-testmodel</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-booter</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-deployer</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-webcontainer</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-aop</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-bsh</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-groovy</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-jruby</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-jython</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>nanocontainer-rhino</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: java/1.x/nanocontainer/trunk/testmodel/pom.xml (4093 => 4094)
--- java/1.x/nanocontainer/trunk/testmodel/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
+++ java/1.x/nanocontainer/trunk/testmodel/pom.xml 2007-12-11 22:51:58 UTC (rev 4094)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</parent>
<artifactId>nanocontainer-testmodel</artifactId>
<name>NanoContainer Test Model</name>
Modified: java/1.x/nanocontainer/trunk/webcontainer/pom.xml (4093 => 4094)
--- java/1.x/nanocontainer/trunk/webcontainer/pom.xml 2007-12-11 22:51:47 UTC (rev 4093)
+++ java/1.x/nanocontainer/trunk/webcontainer/pom.xml 2007-12-11 22:51:58 UTC (rev 4094)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.nanocontainer</groupId>
<artifactId>nanocontainer-parent</artifactId>
- <version>1.1.2</version>
+ <version>1.2-SNAPSHOT</version>
</parent>
<artifactId>nanocontainer-webcontainer</artifactId>
<name>NanoContainer WebContainer</name>
To unsubscribe from this list please visit:
http://xircles.codehaus.org/manage_email