You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Randy Watler (JIRA)" <ji...@codehaus.org> on 2006/05/16 16:31:41 UTC

[jira] Created: (MSUREFIRE-111) Empty system property value from POM pluginManagement defaulting to the value of another property.

Empty system property value from POM pluginManagement defaulting to the value of another property.
--------------------------------------------------------------------------------------------------

         Key: MSUREFIRE-111
         URL: http://jira.codehaus.org/browse/MSUREFIRE-111
     Project: Maven 2.x Surefire Plugin
        Type: Bug

    Versions: 2.1.3    
 Environment: Maven 2.0.4/Linux
    Reporter: Randy Watler
    Priority: Minor


The "test.empty" system property ends up with the value "defined.value".

                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-surefire-plugin</artifactId>
                    <version>2.1.3</version>
                    <configuration>
                             <property>
                                <name>test.defined</name>
                                <value>defined.value</value>
                            </property>
                            <property>
                                <name>test.empty</name>
                                <value></value>
                            </property>
                    </configuration>
                </plugin>

[DEBUG]   (f) systemProperties = {test.defined=defined.value, test.empty=defined.value}

Here is the workaround, (test.empty ends up with value ""):

                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-surefire-plugin</artifactId>
                    <version>2.1.3</version>
                    <configuration>
                            <property>
                                <name>test.empty</name>
                                <value></value>
                            </property>
                             <property>
                                <name>test.defined</name>
                                <value>defined.value</value>
                            </property>
                    </configuration>
                </plugin>

[DEBUG]   (f) systemProperties = {test.defined=defined.value, test.empty=}


-- 
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


[jira] Moved: (SUREFIRE-124) Empty system property value from POM pluginManagement defaulting to the value of another property.

Posted by "Brett Porter (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/SUREFIRE-124?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Brett Porter moved MSUREFIRE-111 to SUREFIRE-124:
-------------------------------------------------

    Affects Version/s:     (was: 1.5.3 (2.1.3 plugin))
                       2.0 (2.2 plugin)
        Fix Version/s:     (was: 2.3)
                       2.3
                  Key: SUREFIRE-124  (was: MSUREFIRE-111)
              Project: Maven Surefire  (was: Maven 2.x Surefire Plugin)

> Empty system property value from POM pluginManagement defaulting to the value of another property.
> --------------------------------------------------------------------------------------------------
>
>                 Key: SUREFIRE-124
>                 URL: http://jira.codehaus.org/browse/SUREFIRE-124
>             Project: Maven Surefire
>          Issue Type: Bug
>    Affects Versions: 2.0 (2.2 plugin)
>         Environment: Maven 2.0.4/Linux
>            Reporter: Randy Watler
>            Priority: Minor
>             Fix For: 2.3
>
>
> The "test.empty" system property ends up with the value "defined.value".
>                 <plugin>
>                     <groupId>org.apache.maven.plugins</groupId>
>                     <artifactId>maven-surefire-plugin</artifactId>
>                     <version>2.1.3</version>
>                     <configuration>
>                              <property>
>                                 <name>test.defined</name>
>                                 <value>defined.value</value>
>                             </property>
>                             <property>
>                                 <name>test.empty</name>
>                                 <value></value>
>                             </property>
>                     </configuration>
>                 </plugin>
> [DEBUG]   (f) systemProperties = {test.defined=defined.value, test.empty=defined.value}
> Here is the workaround, (test.empty ends up with value ""):
>                 <plugin>
>                     <groupId>org.apache.maven.plugins</groupId>
>                     <artifactId>maven-surefire-plugin</artifactId>
>                     <version>2.1.3</version>
>                     <configuration>
>                             <property>
>                                 <name>test.empty</name>
>                                 <value></value>
>                             </property>
>                              <property>
>                                 <name>test.defined</name>
>                                 <value>defined.value</value>
>                             </property>
>                     </configuration>
>                 </plugin>
> [DEBUG]   (f) systemProperties = {test.defined=defined.value, test.empty=}

-- 
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

        

[jira] Updated: (MSUREFIRE-111) Empty system property value from POM pluginManagement defaulting to the value of another property.

Posted by "Brett Porter (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MSUREFIRE-111?page=all ]

Brett Porter updated MSUREFIRE-111:
-----------------------------------

    Fix Version/s: 2.3

> Empty system property value from POM pluginManagement defaulting to the value of another property.
> --------------------------------------------------------------------------------------------------
>
>                 Key: MSUREFIRE-111
>                 URL: http://jira.codehaus.org/browse/MSUREFIRE-111
>             Project: Maven 2.x Surefire Plugin
>          Issue Type: Bug
>    Affects Versions: 2.1.3
>         Environment: Maven 2.0.4/Linux
>            Reporter: Randy Watler
>            Priority: Minor
>             Fix For: 2.3
>
>
> The "test.empty" system property ends up with the value "defined.value".
>                 <plugin>
>                     <groupId>org.apache.maven.plugins</groupId>
>                     <artifactId>maven-surefire-plugin</artifactId>
>                     <version>2.1.3</version>
>                     <configuration>
>                              <property>
>                                 <name>test.defined</name>
>                                 <value>defined.value</value>
>                             </property>
>                             <property>
>                                 <name>test.empty</name>
>                                 <value></value>
>                             </property>
>                     </configuration>
>                 </plugin>
> [DEBUG]   (f) systemProperties = {test.defined=defined.value, test.empty=defined.value}
> Here is the workaround, (test.empty ends up with value ""):
>                 <plugin>
>                     <groupId>org.apache.maven.plugins</groupId>
>                     <artifactId>maven-surefire-plugin</artifactId>
>                     <version>2.1.3</version>
>                     <configuration>
>                             <property>
>                                 <name>test.empty</name>
>                                 <value></value>
>                             </property>
>                              <property>
>                                 <name>test.defined</name>
>                                 <value>defined.value</value>
>                             </property>
>                     </configuration>
>                 </plugin>
> [DEBUG]   (f) systemProperties = {test.defined=defined.value, test.empty=}

-- 
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

        

[jira] Updated: (SUREFIRE-124) Empty system property value from POM pluginManagement defaulting to the value of another property.

Posted by "Brett Porter (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/SUREFIRE-124?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Brett Porter updated SUREFIRE-124:
----------------------------------

    Affects Version/s: 1.5.3 (2.1.3 plugin)

> Empty system property value from POM pluginManagement defaulting to the value of another property.
> --------------------------------------------------------------------------------------------------
>
>                 Key: SUREFIRE-124
>                 URL: http://jira.codehaus.org/browse/SUREFIRE-124
>             Project: Maven Surefire
>          Issue Type: Bug
>    Affects Versions: 1.5.3 (2.1.3 plugin), 2.0 (2.2 plugin)
>         Environment: Maven 2.0.4/Linux
>            Reporter: Randy Watler
>            Priority: Minor
>             Fix For: 2.3
>
>
> The "test.empty" system property ends up with the value "defined.value".
>                 <plugin>
>                     <groupId>org.apache.maven.plugins</groupId>
>                     <artifactId>maven-surefire-plugin</artifactId>
>                     <version>2.1.3</version>
>                     <configuration>
>                              <property>
>                                 <name>test.defined</name>
>                                 <value>defined.value</value>
>                             </property>
>                             <property>
>                                 <name>test.empty</name>
>                                 <value></value>
>                             </property>
>                     </configuration>
>                 </plugin>
> [DEBUG]   (f) systemProperties = {test.defined=defined.value, test.empty=defined.value}
> Here is the workaround, (test.empty ends up with value ""):
>                 <plugin>
>                     <groupId>org.apache.maven.plugins</groupId>
>                     <artifactId>maven-surefire-plugin</artifactId>
>                     <version>2.1.3</version>
>                     <configuration>
>                             <property>
>                                 <name>test.empty</name>
>                                 <value></value>
>                             </property>
>                              <property>
>                                 <name>test.defined</name>
>                                 <value>defined.value</value>
>                             </property>
>                     </configuration>
>                 </plugin>
> [DEBUG]   (f) systemProperties = {test.defined=defined.value, test.empty=}

-- 
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

        

[jira] Closed: (SUREFIRE-124) Empty system property value from POM pluginManagement defaulting to the value of another property.

Posted by "Dan Fabulich (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/SUREFIRE-124?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dan Fabulich closed SUREFIRE-124.
---------------------------------

       Resolution: Cannot Reproduce
    Fix Version/s:     (was: 2.4)

This must have gotten fixed at some point; I can't reproduce it with 2.4 trunk and Maven 2.0.7.

> Empty system property value from POM pluginManagement defaulting to the value of another property.
> --------------------------------------------------------------------------------------------------
>
>                 Key: SUREFIRE-124
>                 URL: http://jira.codehaus.org/browse/SUREFIRE-124
>             Project: Maven Surefire
>          Issue Type: Bug
>    Affects Versions: 1.5.3 (2.1.3 plugin), 2.0 (2.2 plugin)
>         Environment: Maven 2.0.4/Linux
>            Reporter: Randy Watler
>            Priority: Minor
>
> The "test.empty" system property ends up with the value "defined.value".
>                 <plugin>
>                     <groupId>org.apache.maven.plugins</groupId>
>                     <artifactId>maven-surefire-plugin</artifactId>
>                     <version>2.1.3</version>
>                     <configuration>
>                              <property>
>                                 <name>test.defined</name>
>                                 <value>defined.value</value>
>                             </property>
>                             <property>
>                                 <name>test.empty</name>
>                                 <value></value>
>                             </property>
>                     </configuration>
>                 </plugin>
> [DEBUG]   (f) systemProperties = {test.defined=defined.value, test.empty=defined.value}
> Here is the workaround, (test.empty ends up with value ""):
>                 <plugin>
>                     <groupId>org.apache.maven.plugins</groupId>
>                     <artifactId>maven-surefire-plugin</artifactId>
>                     <version>2.1.3</version>
>                     <configuration>
>                             <property>
>                                 <name>test.empty</name>
>                                 <value></value>
>                             </property>
>                              <property>
>                                 <name>test.defined</name>
>                                 <value>defined.value</value>
>                             </property>
>                     </configuration>
>                 </plugin>
> [DEBUG]   (f) systemProperties = {test.defined=defined.value, test.empty=}

-- 
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

        

[jira] Updated: (SUREFIRE-124) Empty system property value from POM pluginManagement defaulting to the value of another property.

Posted by "Brett Porter (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/SUREFIRE-124?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Brett Porter updated SUREFIRE-124:
----------------------------------

    Fix Version/s:     (was: 2.3)
                   2.4

> Empty system property value from POM pluginManagement defaulting to the value of another property.
> --------------------------------------------------------------------------------------------------
>
>                 Key: SUREFIRE-124
>                 URL: http://jira.codehaus.org/browse/SUREFIRE-124
>             Project: Maven Surefire
>          Issue Type: Bug
>    Affects Versions: 1.5.3 (2.1.3 plugin), 2.0 (2.2 plugin)
>         Environment: Maven 2.0.4/Linux
>            Reporter: Randy Watler
>            Priority: Minor
>             Fix For: 2.4
>
>
> The "test.empty" system property ends up with the value "defined.value".
>                 <plugin>
>                     <groupId>org.apache.maven.plugins</groupId>
>                     <artifactId>maven-surefire-plugin</artifactId>
>                     <version>2.1.3</version>
>                     <configuration>
>                              <property>
>                                 <name>test.defined</name>
>                                 <value>defined.value</value>
>                             </property>
>                             <property>
>                                 <name>test.empty</name>
>                                 <value></value>
>                             </property>
>                     </configuration>
>                 </plugin>
> [DEBUG]   (f) systemProperties = {test.defined=defined.value, test.empty=defined.value}
> Here is the workaround, (test.empty ends up with value ""):
>                 <plugin>
>                     <groupId>org.apache.maven.plugins</groupId>
>                     <artifactId>maven-surefire-plugin</artifactId>
>                     <version>2.1.3</version>
>                     <configuration>
>                             <property>
>                                 <name>test.empty</name>
>                                 <value></value>
>                             </property>
>                              <property>
>                                 <name>test.defined</name>
>                                 <value>defined.value</value>
>                             </property>
>                     </configuration>
>                 </plugin>
> [DEBUG]   (f) systemProperties = {test.defined=defined.value, test.empty=}

-- 
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