Author: skitching Date: Wed Mar 8 16:29:48 2006 New Revision: 384387 URL: http://svn.apache.org/viewcvs?rev=384387&view=rev Log: General tidyups. Add profile in attempt to allow building with alternate JDKs
Modified: jakarta/commons/proper/logging/contrib/simon/jcl2/pom.xml Modified: jakarta/commons/proper/logging/contrib/simon/jcl2/pom.xml URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/logging/contrib/simon/jcl2/pom.xml?rev=384387&r1=384386&r2=384387&view=diff ============================================================================== --- jakarta/commons/proper/logging/contrib/simon/jcl2/pom.xml (original) +++ jakarta/commons/proper/logging/contrib/simon/jcl2/pom.xml Wed Mar 8 16:29:48 2006 @@ -1,10 +1,106 @@ <project> <modelVersion>4.0.0</modelVersion> + <groupId>org.apache.commons.logging</groupId> - <version>0.1-SNAPSHOT</version> <artifactId>commons-logging</artifactId> - <name>Commons Logging</name> <packaging>pom</packaging> + <name>Commons Logging</name> + <version>0.1-SNAPSHOT</version> + + <description> + A thin adapter allowing configurable bridging to other + well known logging systems. + </description> + + <url>http://jakarta.apache.org/commons/logging</url> + + <prerequisites> + <maven>2.0.2</maven> + </prerequisites> + + <issueManagement> + <system>Bugzilla</system> + <url>http://issues.apache.org/bugzilla</url> + </issueManagement> + + <inceptionYear>2001</inceptionYear> + + <mailingLists> + <mailingList> + <name>Commons Dev List</name> + <subscribe>[EMAIL PROTECTED]</subscribe> + <unsubscribe>[EMAIL PROTECTED]</unsubscribe> + <archive>http://mail-archives.apache.org/mod_mbox/jakarta-commons-dev/</archive> + </mailingList> + <mailingList> + <name>Commons User List</name> + <subscribe>[EMAIL PROTECTED]</subscribe> + <unsubscribe>[EMAIL PROTECTED]</unsubscribe> + <archive>http://mail-archives.apache.org/mod_mbox/jakarta-commons-user/</archive> + </mailingList> + </mailingLists> + + <developers> + <developer> + <id>skitching</id> + <name>Simon Kitching</name> + <email>[EMAIL PROTECTED]</email> + <timezone>+12</timezone> + </developer> + </developers> + + <licenses> + <license> + <name>Apache License 2.0</name> + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> + <distribution>repo</distribution> + </license> + </licenses> + + <scm> + <connection>http://svn.apache.org/repos/asf/jakarta/commons/proper/logging/contrib/simon/jcl2/</connection> + <developerConnection>https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/contrib/simon/jcl2/</developerConnection> + <url>http://svn.apache.org/viewcvs/jakarta/commons/proper/logging/contrib/simon/jcl2</url> + </scm> + + <organisation> + <name>Apache Software Foundation</name> + <url>http://www.apache.org</url> + </organisation> + + <profiles> + + <!-- + - If maven is run using + - mvn -Dcompiler.path=/path/to/java1.3 + - then the specified compiler is used to compile all code. + - + - This is needed when building releases intended to run on + - java versions earlier than the one used to run maven (and + - maven requires java1.4 or later). + --> + <profile> + <id>release</id> + <activation> + <property> + <name>compiler.path</name> + </property> + </activation> + <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <executable>${compiler.path}</executable> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> + </profile> + </profiles> <!-- - The subdirectories containing submodules of this project. @@ -27,6 +123,7 @@ <url>http://www.ibiblio.org/pub/packages/maven2</url> </repository> </repositories> + <pluginRepositories> <pluginRepository> <id>Ibiblio</id> @@ -34,23 +131,6 @@ </pluginRepository> </pluginRepositories> - <developers> - <developer> - <id>skitching</id> - <name>Simon Kitching</name> - <email>[EMAIL PROTECTED]</email> - <timezone>+12</timezone> - </developer> - </developers> - - <licenses> - <license> - <name>Apache License 2.0</name> - <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> - <distribution>repo</distribution> - </license> - </licenses> - <reporting> <plugins> <plugin> @@ -62,4 +142,6 @@ </plugin> </plugins> </reporting> + + <!-- distribution management clause goes here --> </project> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]