Author: nicolas Date: Fri Feb 6 07:50:53 2009 New Revision: 741464 URL: http://svn.apache.org/viewvc?rev=741464&view=rev Log: rename "core" module to commons-monitoring-core to avoid conflict with earlier snapshots
Modified: commons/sandbox/monitoring/branches/modules/core/pom.xml commons/sandbox/monitoring/branches/modules/instrumentation/pom.xml commons/sandbox/monitoring/branches/modules/reporting/pom.xml commons/sandbox/monitoring/branches/modules/spring/pom.xml Modified: commons/sandbox/monitoring/branches/modules/core/pom.xml URL: http://svn.apache.org/viewvc/commons/sandbox/monitoring/branches/modules/core/pom.xml?rev=741464&r1=741463&r2=741464&view=diff ============================================================================== --- commons/sandbox/monitoring/branches/modules/core/pom.xml (original) +++ commons/sandbox/monitoring/branches/modules/core/pom.xml Fri Feb 6 07:50:53 2009 @@ -24,7 +24,7 @@ <artifactId>commons-monitoring-parent</artifactId> <version>1.0-SNAPSHOT</version> </parent> - <artifactId>commons-monitoring</artifactId> + <artifactId>commons-monitoring-core</artifactId> <packaging>jar</packaging> <name>Commons Monitoring (Sandbox) core package</name> <dependencies> Modified: commons/sandbox/monitoring/branches/modules/instrumentation/pom.xml URL: http://svn.apache.org/viewvc/commons/sandbox/monitoring/branches/modules/instrumentation/pom.xml?rev=741464&r1=741463&r2=741464&view=diff ============================================================================== --- commons/sandbox/monitoring/branches/modules/instrumentation/pom.xml (original) +++ commons/sandbox/monitoring/branches/modules/instrumentation/pom.xml Fri Feb 6 07:50:53 2009 @@ -9,29 +9,29 @@ <artifactId>commons-monitoring-instrumentation</artifactId> <version>1.0-SNAPSHOT</version> <dependencies> - <dependency> - <groupId>org.apache.commons.monitoring</groupId> - <artifactId>commons-monitoring</artifactId> - <version>1.0-SNAPSHOT</version> - </dependency> - <dependency> - <groupId>org.apache.commons</groupId> - <artifactId>commons-proxy</artifactId> - <version>1.0</version> - <optional>true</optional> - </dependency> - <dependency> - <groupId>aopalliance</groupId> - <artifactId>aopalliance</artifactId> - <version>1.0</version> - <optional>true</optional> - </dependency> - <dependency> - <groupId>javax.servlet</groupId> - <artifactId>servlet-api</artifactId> - <version>2.3</version> - <scope>provided</scope> - <optional>true</optional> - </dependency> + <dependency> + <groupId>org.apache.commons.monitoring</groupId> + <artifactId>commons-monitoring-core</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-proxy</artifactId> + <version>1.0</version> + <optional>true</optional> + </dependency> + <dependency> + <groupId>aopalliance</groupId> + <artifactId>aopalliance</artifactId> + <version>1.0</version> + <optional>true</optional> + </dependency> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + <version>2.3</version> + <scope>provided</scope> + <optional>true</optional> + </dependency> </dependencies> </project> \ No newline at end of file Modified: commons/sandbox/monitoring/branches/modules/reporting/pom.xml URL: http://svn.apache.org/viewvc/commons/sandbox/monitoring/branches/modules/reporting/pom.xml?rev=741464&r1=741463&r2=741464&view=diff ============================================================================== --- commons/sandbox/monitoring/branches/modules/reporting/pom.xml (original) +++ commons/sandbox/monitoring/branches/modules/reporting/pom.xml Fri Feb 6 07:50:53 2009 @@ -7,16 +7,16 @@ <modelVersion>4.0.0</modelVersion> <artifactId>commons-monitoring-reporting</artifactId> <dependencies> - <dependency> - <groupId>org.apache.commons.monitoring</groupId> - <artifactId>commons-monitoring</artifactId> - <version>${project.version}</version> - </dependency> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>4.5</version> - <scope>test</scope> - </dependency> + <dependency> + <groupId>org.apache.commons.monitoring</groupId> + <artifactId>commons-monitoring-core</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.5</version> + <scope>test</scope> + </dependency> </dependencies> </project> \ No newline at end of file Modified: commons/sandbox/monitoring/branches/modules/spring/pom.xml URL: http://svn.apache.org/viewvc/commons/sandbox/monitoring/branches/modules/spring/pom.xml?rev=741464&r1=741463&r2=741464&view=diff ============================================================================== --- commons/sandbox/monitoring/branches/modules/spring/pom.xml (original) +++ commons/sandbox/monitoring/branches/modules/spring/pom.xml Fri Feb 6 07:50:53 2009 @@ -7,40 +7,44 @@ <modelVersion>4.0.0</modelVersion> <groupId>org.apache.commons.monitoring</groupId> <artifactId>commons-monitoring-spring</artifactId> - <version>1.0-SNAPSHOT</version> <dependencies> - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-context</artifactId> - <version>2.5.5</version> - </dependency> - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-beans</artifactId> - <version>2.5.5</version> - </dependency> - <dependency> - <groupId>org.apache.commons.monitoring</groupId> - <artifactId>commons-monitoring-instrumentation</artifactId> - <version>1.0-SNAPSHOT</version> - </dependency> - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-aop</artifactId> - <version>2.5.5</version> - </dependency> - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-web</artifactId> - <version>2.5.5</version> - <optional>true</optional> - </dependency> - <dependency> - <groupId>javax.servlet</groupId> - <artifactId>servlet-api</artifactId> - <version>2.3</version> - <scope>provided</scope> - <optional>true</optional> - </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-context</artifactId> + <version>2.5.5</version> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-beans</artifactId> + <version>2.5.5</version> + </dependency> + <dependency> + <groupId>org.apache.commons.monitoring</groupId> + <artifactId>commons-monitoring-core</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.commons.monitoring</groupId> + <artifactId>commons-monitoring-instrumentation</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-aop</artifactId> + <version>2.5.5</version> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-web</artifactId> + <version>2.5.5</version> + <optional>true</optional> + </dependency> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + <version>2.3</version> + <scope>provided</scope> + <optional>true</optional> + </dependency> </dependencies> </project> \ No newline at end of file