< prev index next >

core/tests/org.openjdk.jmc.flightrecorder.rules.jdk.test/pom.xml

Print this page

        

*** 36,64 **** <parent> <groupId>org.openjdk.jmc</groupId> <artifactId>missioncontrol.core.tests</artifactId> <version>7.0.0-SNAPSHOT</version> </parent> ! <artifactId>org.openjdk.jmc.flightrecorder.rules.jdk.test</artifactId> ! <packaging>eclipse-test-plugin</packaging> <build> ! <plugins> <plugin> <groupId>org.eclipse.tycho</groupId> <artifactId>target-platform-configuration</artifactId> <version>${tycho-version}</version> <configuration> <dependency-resolution> <extraRequirements> ! <!-- This is required so that we can find the classloader for the rules when running the tests in a Tycho environment. --> <requirement> <type>eclipse-plugin</type> <id>org.openjdk.jmc.flightrecorder.rules.extensionprovider</id> <versionRange>0.0.0</versionRange> </requirement> </extraRequirements> </dependency-resolution> </configuration> </plugin> </plugins> </build> </project> --- 36,125 ---- <parent> <groupId>org.openjdk.jmc</groupId> <artifactId>missioncontrol.core.tests</artifactId> <version>7.0.0-SNAPSHOT</version> </parent> ! <artifactId>flightrecorder.rules.jdk.test</artifactId> ! <dependencies> ! <dependency> ! <groupId>org.openjdk.jmc</groupId> ! <artifactId>flightrecorder.rules.test</artifactId> ! <type>test-jar</type> ! <scope>test</scope> ! <version>${project.version}</version> ! </dependency> ! <dependency> ! <groupId>org.openjdk.jmc</groupId> ! <artifactId>flightrecorder.test</artifactId> ! <type>test-jar</type> ! <scope>test</scope> ! <version>${project.version}</version> ! </dependency> ! <dependency> ! <groupId>org.openjdk.jmc</groupId> ! <artifactId>common.test</artifactId> ! <type>test-jar</type> ! <scope>test</scope> ! <version>${project.version}</version> ! </dependency> ! <dependency> ! <groupId>org.openjdk.jmc</groupId> ! <artifactId>common</artifactId> ! <version>${project.version}</version> ! </dependency> ! <dependency> ! <groupId>org.openjdk.jmc</groupId> ! <artifactId>flightrecorder</artifactId> ! <version>${project.version}</version> ! </dependency> ! <dependency> ! <groupId>org.openjdk.jmc</groupId> ! <artifactId>flightrecorder.rules</artifactId> ! <version>${project.version}</version> ! </dependency> ! <dependency> ! <groupId>org.openjdk.jmc</groupId> ! <artifactId>flightrecorder.rules.jdk</artifactId> ! <version>${project.version}</version> ! </dependency> ! <dependency> ! <groupId>junit</groupId> ! <artifactId>junit</artifactId> ! <scope>test</scope> ! </dependency> ! </dependencies> ! <build> ! <!-- <plugins> <plugin> <groupId>org.eclipse.tycho</groupId> <artifactId>target-platform-configuration</artifactId> <version>${tycho-version}</version> <configuration> <dependency-resolution> <extraRequirements> ! This is required so that we can find the classloader for the rules when running the tests in a Tycho environment. <requirement> <type>eclipse-plugin</type> <id>org.openjdk.jmc.flightrecorder.rules.extensionprovider</id> <versionRange>0.0.0</versionRange> </requirement> </extraRequirements> </dependency-resolution> </configuration> </plugin> + </plugins> --> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>test-jar</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build> </project>
< prev index next >