> I'll do a sample project.

Done

>> If you pull a new update-dev build of m2e you'll notice that we have the
>> problem reporting integrated now. With latest build you can go down to the
>> "Maven" menu and at the bottom you'll see the "Report Issue..." option. You
>> can put in the summary, description, and select the project you want to
>> report on and it will all get bundled up and automatically submitted to our
>> issue tracking system. Run your project so that it fails and then report the
>> issue and I will have all the information I need. I'll be blogging about
>> this feature later. It's very handy!
>
> Latest update-dev build of m2e allready loaded and used :)
>
> Great feature, I'll make a try at it

I tried but it failed with 'Error gathering data'. Did the reporting
tool use non HTTP ports ?

BTW, I attached the simple pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";>
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.mycorp</groupId>
  <artifactId>sampleant</artifactId>
  <name>sampleant</name>
  <version>1.0.0-SNAPSHOT</version>
  <description>A Sample to show Ant problem with maven 3.0</description>

  <build>

    <plugins>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-antrun-plugin</artifactId>
        <executions>
          <execution>
            <id>grab-system-infos</id>
            <phase>generate-resources</phase>
            <goals>
              <goal>run</goal>
            </goals>
            <configuration>
              <tasks>
                <mkdir dir="${project.build.directory}" />
                <tstamp>
                  <format property="last.updated" pattern="yyyy-MM-dd hh:mm:ss" />
                </tstamp>
                <echo file="${basedir}/target/filter.properties">
                  build.time=${last.updated}${line.separator}os.infos=${os.name} ${os.version}${line.separator}user.infos=${user.name}${line.separator}java.infos=JDK ${java.vendor} ${java.runtime.version}
                </echo>
              </tasks>
            </configuration>
          </execution>
        </executions>
      </plugin>
 
    </plugins>

    <filters>
      <filter>${basedir}/target/filter.properties</filter>
    </filters>

    <resources>
      <resource>
        <directory>src/main/resources</directory>
        <filtering>true</filtering>
      </resource>
    </resources>

  </build>

</project>
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org

Reply via email to