Author: mickael_istria
Date: 2012-10-09 10:37:22 -0400 (Tue, 09 Oct 2012)
New Revision: 44379
Removed:
trunk/build/emma/
Modified:
trunk/build/parent/pom.xml
Log:
Remove emma-related stuff.
Modified: trunk/build/parent/pom.xml
===================================================================
--- trunk/build/parent/pom.xml 2012-10-09 14:25:07 UTC (rev 44378)
+++ trunk/build/parent/pom.xml 2012-10-09 14:37:22 UTC (rev 44379)
@@ -724,143 +724,6 @@
</profile>
<profile>
- <id>coverage</id>
- <activation>
- <property>
- <name>coverage</name>
- </property>
- </activation>
- <properties>
- <emma.session.out.file>${project.build.directory}/emma/coverage.es</emma.session.out.file>
- <emma.instrument.bundles />
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>org.eclipse.tycho</groupId>
- <artifactId>tycho-surefire-plugin</artifactId>
- <version>${tychoVersion}</version>
- <configuration>
- <systemProperties combine.children="append">
- <emma.session.out.file>${emma.session.out.file}</emma.session.out.file>
- <emma.filter>${coverage.filter}</emma.filter>
- <eclemma.instrument.bundles>${emma.instrument.bundles}</eclemma.instrument.bundles>
- </systemProperties>
- <frameworkExtensions>
- <frameworkExtension>
- <groupId>org.eclemma.runtime.equinox</groupId>
- <artifactId>org.eclemma.runtime.equinox</artifactId>
- <version>1.1.0.200908261008</version>
- </frameworkExtension>
- </frameworkExtensions>
- <application>org.eclipse.ui.ide.workbench</application>
- <dependencies>
- <dependency>
- <type>p2-installable-unit</type>
- <artifactId>org.eclipse.platform.ide</artifactId>
- <version>0.0.0</version>
- </dependency>
- </dependencies>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-antrun-plugin</artifactId>
- <version>${maven.antrun.plugin.version}</version>
- <dependencies>
- <dependency>
- <groupId>emma</groupId>
- <artifactId>emma_ant</artifactId>
- <version>2.0.5312</version>
- </dependency>
- <dependency>
- <groupId>emma</groupId>
- <artifactId>emma</artifactId>
- <version>2.0.5312</version>
- </dependency>
- <dependency>
- <groupId>ant-contrib</groupId>
- <artifactId>ant-contrib</artifactId>
- <version>1.0b3</version>
- <exclusions>
- <exclusion>
- <groupId>ant</groupId>
- <artifactId>ant</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- </dependencies>
- <executions>
- <execution>
- <id>emma-report</id>
- <phase>post-integration-test</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <tasks>
- <taskdef resource="emma_ant.properties" />
- <taskdef resource="net/sf/antcontrib/antlib.xml" />
- <if>
- <available file="${project.build.directory}/emma"
- type="dir" />
- <then>
- <echo>Process emma report...</echo>
- <for list="${emma.instrument.bundles}"
param="bundle">
- <sequential>
- <property name="@{bundle}-classes"
- location="${project.build.directory}/../../../plugins/@{bundle}"
/>
- <if>
- <available file="${@{bundle}-classes}" type="dir"
/>
- <then>
- <echo>Generating coverage metadata for
${@{bundle}-classes}</echo>
- <emma enabled="true">
- <instr
metadatafile="${project.build.directory}/emma/(a){bundle}-coverage.em"
- mode="copy"
outdir="${project.build.directory}/instrumented-classes/@{bundle}">
- <instrpath>
- <dirset dir="${@{bundle}-classes}">
- <include name="target/*classes"/>
- </dirset>
- </instrpath>
- </instr>
- </emma>
- </then>
- <else>
- <echo>Skipping coverage metadata generation for
${@{bundle}-classes}</echo>
- </else>
- </if>
- </sequential>
- </for>
- <emma enabled="true">
- <report>
- <infileset dir="${project.build.directory}/emma"
- includes="*.es,*.em" />
- <txt outfile="${project.build.directory}/emma/coverage.txt"
/>
- <xml outfile="${project.build.directory}/emma/coverage.xml"
/>
- <html outfile="${project.build.directory}/emma/coverage.html"
/>
- </report>
- </emma>
- <if>
- <available file="${project.build.directory}/emma/coverage.txt"
type="file" />
- <then>
- <loadfile property="emma.txt"
srcFile="${project.build.directory}/emma/coverage.txt"
failonerror="false" />
- <echo>${emma.txt}</echo>
- </then>
- <else>
- <echo>No coverage report found </echo>
- </else>
- </if>
- </then>
- </if>
- </tasks>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
Show replies by date