You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ah...@apache.org on 2006/11/21 00:22:54 UTC

svn commit: r477397 - /maven/maven-1/plugins/trunk/linkcheck/project.properties

Author: aheritier
Date: Mon Nov 20 15:22:52 2006
New Revision: 477397

URL: http://svn.apache.org/viewvc?view=rev&rev=477397
Log:
plugin properties aren't loaded from unit tests

Modified:
    maven/maven-1/plugins/trunk/linkcheck/project.properties

Modified: maven/maven-1/plugins/trunk/linkcheck/project.properties
URL: http://svn.apache.org/viewvc/maven/maven-1/plugins/trunk/linkcheck/project.properties?view=diff&rev=477397&r1=477396&r2=477397
==============================================================================
--- maven/maven-1/plugins/trunk/linkcheck/project.properties (original)
+++ maven/maven-1/plugins/trunk/linkcheck/project.properties Mon Nov 20 15:22:52 2006
@@ -23,15 +23,32 @@
 maven.jar.override=on
 maven.jar.maven = ${maven.home}/lib/maven.jar
 
+# Those properties aren't loaded from plugin.properties in JUnit tests
+maven.linkcheck.cache=${maven.build.dir}/linkcheck/linkcheck.cache
+maven.linkcheck.failonerror=false
+maven.linkcheck.exclude=${pom.repository.url}
+maven.linkcheck.proxy.host=${maven.proxy.host}
+maven.linkcheck.proxy.port=${maven.proxy.port}
+maven.linkcheck.proxy.username=${maven.proxy.username}
+maven.linkcheck.proxy.password=${maven.proxy.password}
+maven.linkcheck.proxy.ntlm.host=${maven.proxy.ntlm.host}
+maven.linkcheck.proxy.ntlm.domain=${maven.proxy.ntlm.domain}
+maven.linkcheck.method=head
+
+# Logs Level ?
+log4j.logger.org.apache.maven.plugin.linkcheck=INFO
+
 # Properties required for the unit tests
 maven.junit.sysproperties = \
-  maven.linkcheck.method \
+  maven.linkcheck.cache \
+  maven.linkcheck.failonerror \
+  maven.linkcheck.exclude \
   maven.linkcheck.proxy.host \
   maven.linkcheck.proxy.port \
   maven.linkcheck.proxy.username \
   maven.linkcheck.proxy.password \
   maven.linkcheck.proxy.ntlm.host \
   maven.linkcheck.proxy.ntlm.domain \
-  maven.mode.online
-
-log4j.logger.org.apache.maven.plugin.linkcheck=INFO
\ No newline at end of file
+  maven.linkcheck.method \
+  maven.mode.online \
+  log4j.logger.org.apache.maven.plugin.linkcheck