Author: carnold
Date: Tue Apr 24 12:29:01 2007
New Revision: 532048
URL: http://svn.apache.org/viewvc?view=rev&rev=532048
Log:
Bug 42189: Add site source, build.xml, pom tweaks
Added:
logging/sandbox/juli-to-log4j-bridge/build.xml
- copied, changed from r532045, logging/sandbox/log4j/component/build.xml
logging/sandbox/juli-to-log4j-bridge/src/changes/
- copied from r532026, logging/sandbox/log4j/component/src/changes/
logging/sandbox/juli-to-log4j-bridge/src/main/resources/LICENSE
- copied unchanged from r532025,
logging/sandbox/juli-to-log4j-bridge/LICENSE
logging/sandbox/juli-to-log4j-bridge/src/main/resources/NOTICE
- copied unchanged from r532025,
logging/sandbox/juli-to-log4j-bridge/NOTICE
logging/sandbox/juli-to-log4j-bridge/src/site/
- copied from r532026, logging/sandbox/log4j/component/src/site/
Modified:
logging/sandbox/juli-to-log4j-bridge/pom.xml
Copied: logging/sandbox/juli-to-log4j-bridge/build.xml (from r532045,
logging/sandbox/log4j/component/build.xml)
URL:
http://svn.apache.org/viewvc/logging/sandbox/juli-to-log4j-bridge/build.xml?view=diff&rev=532048&p1=logging/sandbox/log4j/component/build.xml&r1=532045&p2=logging/sandbox/juli-to-log4j-bridge/build.xml&r2=532048
==============================================================================
--- logging/sandbox/log4j/component/build.xml (original)
+++ logging/sandbox/juli-to-log4j-bridge/build.xml Tue Apr 24 12:29:01 2007
@@ -27,8 +27,8 @@
<property file="build.properties"/>
<!-- project details -->
- <property name="project.name" value="apache-log4j-component"/>
- <property name="project.title" value="Component"/>
+ <property name="project.name" value="apache-log4j-bridge"/>
+ <property name="project.title" value="Apache java.util.logging Bridge
Companion for log4j 1.2"/>
<property name="project.version" value="0.1-SNAPSHOT"/>
<property name="project.jar"
value="${project.name}-${project.version}.jar"/>
@@ -116,8 +116,4 @@
<formatter type="plain" usefile="false"/>
</junit>
</target>
-
- <!-- This target is executed by Gump. -->
- <target name="gump" depends="test"/>
-
</project>
Modified: logging/sandbox/juli-to-log4j-bridge/pom.xml
URL:
http://svn.apache.org/viewvc/logging/sandbox/juli-to-log4j-bridge/pom.xml?view=diff&rev=532048&r1=532047&r2=532048
==============================================================================
--- logging/sandbox/juli-to-log4j-bridge/pom.xml (original)
+++ logging/sandbox/juli-to-log4j-bridge/pom.xml Tue Apr 24 12:29:01 2007
@@ -8,7 +8,13 @@
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
- <version>1.2.15</version>
+ <version>1.2.14</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
</dependency>
</dependencies>
@@ -18,6 +24,10 @@
<system>Bugzilla</system>
<url>http://issues.apache.org/bugzilla</url>
</issueManagement>
+ <ciManagement>
+ <system>Gump</system>
+
<url>http://vmgump.apache.org/gump/public/logging-log4j-bridge/logging-log4j-bridge/index.html</url>
+ </ciManagement>
<inceptionYear>2007</inceptionYear>
<mailingLists>
<mailingList>
@@ -90,12 +100,72 @@
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
- <version>1.2.12</version>
+ <version>1.2.14</version>
</dependency>
</dependencies>
</plugin>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.3</source>
+ <target>1.3</target>
+ </configuration>
+ </plugin>
+ <!-- clean stray cobertura.ser -->
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>cobertura-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>clean</id>
+ <goals>
+ <goal>clean</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
-
+ <reporting>
+ <plugins>
+ <plugin>
+ <artifactId>maven-checkstyle-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <artifactId>maven-pmd-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-project-info-reports-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>jxr-maven-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>cobertura-maven-plugin</artifactId>
+ <!-- version 2.1 was flawed and reports 100% coverage -->
+ <version>2.0</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-changes-plugin</artifactId>
+ <reportSets>
+ <reportSet>
+ <reports>
+ <report>changes-report</report>
+ </reports>
+ </reportSet>
+ </reportSets>
+ <configuration>
+
<issueLinkTemplate>%URL%/show_bug.cgi?id=%ISSUE%</issueLinkTemplate>
+ </configuration>
+ </plugin>
+ </plugins>
+ </reporting>
</project>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]