<?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/maven-v4_0_0.xsd"> <parent> <artifactId>parent</artifactId> <groupId>fi.jumi</groupId> <version>0.1.196</version> <relativePath>../../parent/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>jumi-core</artifactId> <build> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>attach-tests</id> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-test-sources</id> <goals> <goal>test-jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>fi.jumi</groupId> <artifactId>jumi-actors-maven-plugin</artifactId> <executions> <execution> <goals> <goal>generate-event-stubs</goal> </goals> <configuration> <targetPackage>fi.jumi.core.events</targetPackage> <eventInterfaces> <interface>java.lang.Runnable</interface> <interface>java.util.concurrent.Executor</interface> <interface>fi.jumi.actors.workers.WorkerListener</interface> <interface>fi.jumi.core.CommandListener</interface> <interface>fi.jumi.core.Startable</interface> <interface>fi.jumi.core.SuiteListener</interface> <interface>fi.jumi.core.files.TestClassFinderListener</interface> <interface>fi.jumi.core.runners.TestClassListener</interface> </eventInterfaces> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <excludes> <exclude>fi.jumi:jumi-actors</exclude> <exclude>fi.jumi:jumi-api</exclude> </excludes> </artifactSet> <relocations> <relocation> <pattern>org.apache</pattern> <shadedPattern>${shadedPrefix}.org.apache</shadedPattern> </relocation> <relocation> <pattern>org.jboss</pattern> <shadedPattern>${shadedPrefix}.org.jboss</shadedPattern> </relocation> <relocation> <pattern>net.sf.cglib</pattern> <shadedPattern>${shadedPrefix}.net.sf.cglib</shadedPattern> </relocation> </relocations> <filters> <filter> <artifact>commons-io:commons-io</artifact> <excludes> <exclude>META-INF/**</exclude> </excludes> </filter> <filter> <artifact>io.netty:netty</artifact> <excludes> <exclude>META-INF/**</exclude> </excludes> </filter> <filter> <artifact>cglib:cglib-nodep</artifact> <excludes> <exclude>META-INF/**</exclude> <exclude>*</exclude> </excludes> </filter> </filters> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>coverage-report</id> <build> <plugins> <plugin> <groupId>org.pitest</groupId> <artifactId>pitest-maven</artifactId> <configuration> <excludedClasses> <pattern>fi.jumi.core.events.*</pattern> </excludedClasses> </configuration> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>fi.jumi</groupId> <artifactId>jumi-actors</artifactId> <version>0.1.196</version> <scope>compile</scope> </dependency> <dependency> <groupId>fi.jumi</groupId> <artifactId>jumi-api</artifactId> <version>0.1.196</version> <scope>compile</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit-dep</artifactId> <version>4.10</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>1.3</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.easytesting</groupId> <artifactId>fest-assert</artifactId> <version>1.4</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>fest-util</artifactId> <groupId>org.easytesting</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>1.9.5-rc1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>objenesis</artifactId> <groupId>org.objenesis</groupId> </exclusion> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>2.0.1</version> <scope>provided</scope> </dependency> </dependencies> <properties> <shadedPrefix>fi.jumi.core.INTERNAL</shadedPrefix> </properties> </project>
<dependency> <groupId>fi.jumi</groupId> <artifactId>jumi-core</artifactId> <version>0.1.196</version> <classifier>tests</classifier> </dependency>
fi.jumi:jumi-core:0.1.196:tests