grinder-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.cossme</groupId> <artifactId>grinder-core</artifactId> <version>4.0.0</version> </dependency>
<?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>grinder-parent</artifactId> <groupId>io.github.cossme</groupId> <version>4.0.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>grinder-core</artifactId> <name>${project.artifactId}</name> <description>The Grinder.</description> <url>http://grinder.sourceforge.net</url> <build> <resources> <resource> <filtering>true</filtering> <directory>src/main/resources</directory> <includes> <include>**/*.html</include> <include>**/*.properties</include> </includes> </resource> <resource> <directory>src/main/resources</directory> <excludes> <exclude>**/*.html</exclude> <exclude>**/*.properties</exclude> </excludes> </resource> </resources> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <showDeprecation>true</showDeprecation> <showWarnings>true</showWarnings> </configuration> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy-dcr-agent</id> <phase>generate-test-resources</phase> <goals> <goal>copy</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>${project.groupId}</groupId> <artifactId>grinder-dcr-agent</artifactId> <type>jar</type> <overWrite>true</overWrite> <destFileName>grinder-dcr-agent.jar</destFileName> </artifactItem> </artifactItems> <outputDirectory>${project.build.directory}</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <argLine>-javaagent:${project.build.directory}/grinder-dcr-agent.jar -Dbuild.travis=${build.travis}</argLine> <systemPropertyVariables> <grinder.version>${project.version}</grinder.version> <python.cachedir>${project.basedir}/target/python.cache</python.cachedir> <jython2_1.dir>/opt/jython/jython-2.1</jython2_1.dir> <jython2_2_1.dir>/opt/jython/jython2.2.1</jython2_2_1.dir> <jython2_5_0.dir>/opt/jython/jython2.5.0</jython2_5_0.dir> <jython2_5_1.dir>/opt/jython/jython2.5.1</jython2_5_1.dir> <jython2_5_2.dir>/opt/jython/jython2.5.2</jython2_5_2.dir> <jython2_7_0.dir>/opt/jython/jython2.5.2</jython2_7_0.dir> </systemPropertyVariables> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>1.5</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <filters> <filter> <artifact>org.codehaus.jsr166-mirror:extra166y</artifact> <includes> <include>**/CustomConcurrentHashMap*</include> </includes> </filter> </filters> <artifactSet> <includes> <include>org.codehaus.jsr166-mirror:extra166y</include> </includes> </artifactSet> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <configuration> <reportPlugins> <plugin> <artifactId>maven-project-info-reports-plugin</artifactId> </plugin> <plugin> <artifactId>maven-checkstyle-plugin</artifactId> <reportSets> <reportSet> <reports> <report>checkstyle</report> </reports> </reportSet> </reportSets> <configuration> <configLocation>${project.parent.basedir}/etc/checkstyle.xml</configLocation> <propertyExpansion>config_loc=${project.parent.basedir}/etc/</propertyExpansion> </configuration> </plugin> <plugin> <artifactId>maven-surefire-report-plugin</artifactId> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <artifactId>maven-jxr-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <configuration> <effort>Max</effort> <threshold>Medium</threshold> <excludeFilterFile>${project.parent.basedir}/etc/findbugs-exclude.xml</excludeFilterFile> </configuration> </plugin> </reportPlugins> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>io.github.cossme</groupId> <artifactId>grinder-dcr-agent</artifactId> <version>4.0.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>io.github.cossme</groupId> <artifactId>grinder-test-support</artifactId> <version>4.0.0</version> <scope>test</scope> </dependency> <dependency> <groupId>asm</groupId> <artifactId>asm</artifactId> <version>3.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.picocontainer</groupId> <artifactId>picocontainer</artifactId> <version>2.13.6</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.python</groupId> <artifactId>jython-standalone</artifactId> <version>2.5.3</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.clojure</groupId> <artifactId>clojure</artifactId> <version>1.4.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.6.4</version> <scope>compile</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.1.3</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <version>1.5.9.RELEASE</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>jackson-databind</artifactId> <groupId>com.fasterxml.jackson.core</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.8.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>4.0.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.9.0</version> <scope>test</scope> </dependency> </dependencies> </project>