You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Amélie Deltour (JIRA)" <ji...@codehaus.org> on 2008/10/27 10:20:51 UTC

[jira] Created: (MNG-3803) System properties not working any more with Maven 2.1

System properties not working any more with Maven 2.1
-----------------------------------------------------

                 Key: MNG-3803
                 URL: http://jira.codehaus.org/browse/MNG-3803
             Project: Maven 2
          Issue Type: Bug
            Reporter: Amélie Deltour
            Priority: Minor


Passing system properties to surefire-plugin used to work fine with Maven 2.0.9:

      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <systemProperties>
            <property>
              <name>my.property</name>
              <value>my.value</value>
            </property>
          </systemProperties>
        </configuration>
      </plugin>

Now I use Maven 2.1-SNAPSHOT as Embedder launched with m2eclipse.
The properties are not defined any more.

In the logs with Maven 2.0.9 in debug mode I see:
[DEBUG] Setting system property [my.property]=[my.value]
This line is not present in the logs with Maven 2.1.

This compatibility issue is quite annoying...

-- 
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: (MNG-3803) [regression] System properties not working any more

Posted by "Jason van Zyl (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-3803?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jason van Zyl updated MNG-3803:
-------------------------------

    Fix Version/s:     (was: 3.0-alpha-3)
                   3.0-alpha-4

> [regression] System properties not working any more
> ---------------------------------------------------
>
>                 Key: MNG-3803
>                 URL: http://jira.codehaus.org/browse/MNG-3803
>             Project: Maven 2
>          Issue Type: Bug
>    Affects Versions: 3.0-alpha-1
>            Reporter: Amélie Deltour
>            Priority: Minor
>             Fix For: 3.0-alpha-4
>
>
> Passing system properties to surefire-plugin used to work fine with Maven 2.0.9:
> {code:xml}
> <plugin>
>   <artifactId>maven-surefire-plugin</artifactId>
>   <configuration>
>     <systemProperties>
>       <property>
>         <name>my.property</name>
>         <value>my.value</value>
>       </property>
>     </systemProperties>
>   </configuration>
> </plugin>
> {code}
> Now I use Maven 2.1-SNAPSHOT as Embedder launched with m2eclipse.
> The properties are not defined any more.
> In the logs with Maven 2.0.9 in debug mode I see:
> [DEBUG] Setting system property [my.property]=[my.value]
> This line is not present in the logs with Maven 2.1.
> This compatibility issue is quite annoying...

-- 
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: (MNG-3803) [regression] System properties not working any more

Posted by "Shane Isbell (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-3803?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Shane Isbell closed MNG-3803.
-----------------------------

    Resolution: Fixed

> [regression] System properties not working any more
> ---------------------------------------------------
>
>                 Key: MNG-3803
>                 URL: http://jira.codehaus.org/browse/MNG-3803
>             Project: Maven 2
>          Issue Type: Bug
>    Affects Versions: 3.0-alpha-1
>            Reporter: Amélie Deltour
>            Assignee: Shane Isbell
>            Priority: Minor
>             Fix For: 3.0-alpha-3
>
>
> Passing system properties to surefire-plugin used to work fine with Maven 2.0.9:
> {code:xml}
> <plugin>
>   <artifactId>maven-surefire-plugin</artifactId>
>   <configuration>
>     <systemProperties>
>       <property>
>         <name>my.property</name>
>         <value>my.value</value>
>       </property>
>     </systemProperties>
>   </configuration>
> </plugin>
> {code}
> Now I use Maven 2.1-SNAPSHOT as Embedder launched with m2eclipse.
> The properties are not defined any more.
> In the logs with Maven 2.0.9 in debug mode I see:
> [DEBUG] Setting system property [my.property]=[my.value]
> This line is not present in the logs with Maven 2.1.
> This compatibility issue is quite annoying...

-- 
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: (MNG-3803) [regression] System properties not working any more

Posted by "Benjamin Bentmann (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-3803?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Benjamin Bentmann updated MNG-3803:
-----------------------------------

    Description: 
Passing system properties to surefire-plugin used to work fine with Maven 2.0.9:
{code:xml}
<plugin>
  <artifactId>maven-surefire-plugin</artifactId>
  <configuration>
    <systemProperties>
      <property>
        <name>my.property</name>
        <value>my.value</value>
      </property>
    </systemProperties>
  </configuration>
</plugin>
{code}
Now I use Maven 2.1-SNAPSHOT as Embedder launched with m2eclipse.
The properties are not defined any more.

In the logs with Maven 2.0.9 in debug mode I see:
[DEBUG] Setting system property [my.property]=[my.value]
This line is not present in the logs with Maven 2.1.

This compatibility issue is quite annoying...

  was:
Passing system properties to surefire-plugin used to work fine with Maven 2.0.9:

      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <systemProperties>
            <property>
              <name>my.property</name>
              <value>my.value</value>
            </property>
          </systemProperties>
        </configuration>
      </plugin>

Now I use Maven 2.1-SNAPSHOT as Embedder launched with m2eclipse.
The properties are not defined any more.

In the logs with Maven 2.0.9 in debug mode I see:
[DEBUG] Setting system property [my.property]=[my.value]
This line is not present in the logs with Maven 2.1.

This compatibility issue is quite annoying...


> [regression] System properties not working any more
> ---------------------------------------------------
>
>                 Key: MNG-3803
>                 URL: http://jira.codehaus.org/browse/MNG-3803
>             Project: Maven 2
>          Issue Type: Bug
>    Affects Versions: 3.0-alpha-1
>            Reporter: Amélie Deltour
>            Priority: Minor
>             Fix For: 3.0-alpha-3
>
>
> Passing system properties to surefire-plugin used to work fine with Maven 2.0.9:
> {code:xml}
> <plugin>
>   <artifactId>maven-surefire-plugin</artifactId>
>   <configuration>
>     <systemProperties>
>       <property>
>         <name>my.property</name>
>         <value>my.value</value>
>       </property>
>     </systemProperties>
>   </configuration>
> </plugin>
> {code}
> Now I use Maven 2.1-SNAPSHOT as Embedder launched with m2eclipse.
> The properties are not defined any more.
> In the logs with Maven 2.0.9 in debug mode I see:
> [DEBUG] Setting system property [my.property]=[my.value]
> This line is not present in the logs with Maven 2.1.
> This compatibility issue is quite annoying...

-- 
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: (MNG-3803) [regression] System properties not working any more

Posted by "Shane Isbell (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-3803?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Shane Isbell updated MNG-3803:
------------------------------

    Fix Version/s:     (was: 3.0-alpha-4)
                   3.0-alpha-3

> [regression] System properties not working any more
> ---------------------------------------------------
>
>                 Key: MNG-3803
>                 URL: http://jira.codehaus.org/browse/MNG-3803
>             Project: Maven 2
>          Issue Type: Bug
>    Affects Versions: 3.0-alpha-1
>            Reporter: Amélie Deltour
>            Assignee: Shane Isbell
>            Priority: Minor
>             Fix For: 3.0-alpha-3
>
>
> Passing system properties to surefire-plugin used to work fine with Maven 2.0.9:
> {code:xml}
> <plugin>
>   <artifactId>maven-surefire-plugin</artifactId>
>   <configuration>
>     <systemProperties>
>       <property>
>         <name>my.property</name>
>         <value>my.value</value>
>       </property>
>     </systemProperties>
>   </configuration>
> </plugin>
> {code}
> Now I use Maven 2.1-SNAPSHOT as Embedder launched with m2eclipse.
> The properties are not defined any more.
> In the logs with Maven 2.0.9 in debug mode I see:
> [DEBUG] Setting system property [my.property]=[my.value]
> This line is not present in the logs with Maven 2.1.
> This compatibility issue is quite annoying...

-- 
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: (MNG-3803) [regression] System properties not working any more

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

Brett Porter updated MNG-3803:
------------------------------

    Affects Version/s: 3.0-alpha-1
        Fix Version/s: 3.0-alpha-3
              Summary: [regression] System properties not working any more  (was: System properties not working any more with Maven 2.1)

> [regression] System properties not working any more
> ---------------------------------------------------
>
>                 Key: MNG-3803
>                 URL: http://jira.codehaus.org/browse/MNG-3803
>             Project: Maven 2
>          Issue Type: Bug
>    Affects Versions: 3.0-alpha-1
>            Reporter: Amélie Deltour
>            Priority: Minor
>             Fix For: 3.0-alpha-3
>
>
> Passing system properties to surefire-plugin used to work fine with Maven 2.0.9:
>       <plugin>
>         <artifactId>maven-surefire-plugin</artifactId>
>         <configuration>
>           <systemProperties>
>             <property>
>               <name>my.property</name>
>               <value>my.value</value>
>             </property>
>           </systemProperties>
>         </configuration>
>       </plugin>
> Now I use Maven 2.1-SNAPSHOT as Embedder launched with m2eclipse.
> The properties are not defined any more.
> In the logs with Maven 2.0.9 in debug mode I see:
> [DEBUG] Setting system property [my.property]=[my.value]
> This line is not present in the logs with Maven 2.1.
> This compatibility issue is quite annoying...

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