You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Dan Tran (JIRA)" <ji...@codehaus.org> on 2006/03/15 23:30:29 UTC

[jira] Commented: (MSUREFIRE-79) Docs for systemProperties on website are wrong

    [ http://jira.codehaus.org/browse/MSUREFIRE-79?page=comments#action_61152 ] 

Dan Tran commented on MSUREFIRE-79:
-----------------------------------

The site is correct, the current code in svn uses Properties type for systemProperties.  What you proprose is Map type (I like it better that way thou)

> Docs for systemProperties on website are wrong
> ----------------------------------------------
>
>          Key: MSUREFIRE-79
>          URL: http://jira.codehaus.org/browse/MSUREFIRE-79
>      Project: Maven 2.x Surefire Plugin
>         Type: Bug

>     Reporter: Jason Dillon
>     Priority: Critical

>
>
> Site says:
> {code}
> <project>
>   ...
>   <build>
>     ...
>     <plugin>
>       <groupId>org.apache.maven.plugins</groupId>
>       <artifactId>maven-surefire-plugin</artifactId>
>       <configuration>
>         <systemProperties>
>           <property>
>             <name>propertyName</name>
>             <value>propertyValue</value>
>           </property>
>         </systemProperties>
>       </configuration>
>     </plugin>
>     ...
>   </build>
>   ...
> </project>
> {code}
> Should be:
> {code}
> <project>
>   ...
>   <build>
>     ...
>     <plugin>
>       <groupId>org.apache.maven.plugins</groupId>
>       <artifactId>maven-surefire-plugin</artifactId>
>       <configuration>
>         <systemProperties>
>           <propertyName>propertyValue</propertyName>
>         </systemProperties>
>       </configuration>
>     </plugin>
>     ...
>   </build>
>   ...
> </project>
> {code}

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira