Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 3 additions & 18 deletions org.moreunit.build/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
<module>../org.moreunit.mock.feature</module>
<module>../org.moreunit.swtbot.test</module>
<module>../org.moreunit.updatesite</module>
<module>../org.moreunit.report</module>
</modules>

<properties>
Expand Down Expand Up @@ -55,8 +56,8 @@
<artifactId>tycho-compiler-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<source>17</source>
<target>17</target>
<source>21</source>
<target>21</target>
</configuration>
</plugin>
<plugin>
Expand Down Expand Up @@ -101,7 +102,6 @@
<showEclipseLog>true</showEclipseLog>
<skipAfterFailureCount>10</skipAfterFailureCount>
<providerHint>junit4</providerHint>
<argLine>${tycho.testArgLine} --add-opens java.base/java.lang=ALL-UNNAMED</argLine>
</configuration>
</plugin>
<plugin>
Expand Down Expand Up @@ -282,9 +282,6 @@
<goals>
<goal>prepare-agent</goal>
</goals>
<configuration>
<propertyName>tycho.testArgLine</propertyName>
</configuration>
</execution>
<execution>
<id>merge-all</id>
Expand All @@ -305,18 +302,6 @@
<destFile>${project.build.directory}/jacoco-all.exec</destFile>
</configuration>
</execution>
<execution>
<id>report-aggregate</id>
<phase>verify</phase>
<goals>
<goal>report-aggregate</goal>
</goals>
<inherited>false</inherited>
<configuration>
<dataFile>${project.build.directory}/jacoco-all.exec</dataFile>
<outputDirectory>${project.build.directory}/site/jacoco-aggregate</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
Expand Down
6 changes: 3 additions & 3 deletions org.moreunit.core.test/.settings/org.eclipse.jdt.core.prefs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=17
org.eclipse.jdt.core.compiler.codegen.targetPlatform=21
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=17
org.eclipse.jdt.core.compiler.compliance=21
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
Expand Down Expand Up @@ -86,7 +86,7 @@ org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
org.eclipse.jdt.core.compiler.release=enabled
org.eclipse.jdt.core.compiler.source=17
org.eclipse.jdt.core.compiler.source=21
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
org.eclipse.jdt.core.formatter.alignment_for_additive_operator=2
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=2
Expand Down
86 changes: 86 additions & 0 deletions org.moreunit.report/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<relativePath>../org.moreunit.build/pom.xml</relativePath>
<groupId>org.moreunit</groupId>
<artifactId>moreunit</artifactId>
<version>3.4.1-SNAPSHOT</version>
</parent>

<artifactId>org.moreunit.report</artifactId>
<packaging>pom</packaging>

<name>${project.artifactId}</name>

<profiles>
<profile>
<id>coverage</id>
<dependencies>
<dependency>
<groupId>org.moreunit</groupId>
<artifactId>org.moreunit.core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.moreunit.plugins</groupId>
<artifactId>org.moreunit</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.moreunit.plugins</groupId>
<artifactId>org.moreunit.mock</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.moreunit</groupId>
<artifactId>org.moreunit.core.test</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.moreunit.plugins</groupId>
<artifactId>org.moreunit.mock.test</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.moreunit.plugins</groupId>
<artifactId>org.moreunit.swtbot.test</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.moreunit.plugins</groupId>
<artifactId>org.moreunit.test</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.moreunit.plugins</groupId>
<artifactId>org.moreunit.mock.it</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
<execution>
<id>report-aggregate</id>
<phase>verify</phase>
<goals>
<goal>report-aggregate</goal>
</goals>
<configuration>
<outputDirectory>${project.basedir}/../org.moreunit.build/target/site/jacoco-aggregate</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>
1 change: 1 addition & 0 deletions org.moreunit.updatesite/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@

<name>${project.artifactId}</name>


</project>
Loading