assertj-core-java8
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core-java8</artifactId> <version>1.0.0m1</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 "> <modelVersion>4.0.0</modelVersion> <artifactId>assertj-core-java8</artifactId> <version>1.0.0m1</version> <packaging>bundle</packaging> <name>AssertJ fluent assertions for Java 8</name> <description>Rich and fluent assertions for testing for Java 8</description> <inceptionYear>2014</inceptionYear> <parent> <groupId>org.assertj</groupId> <artifactId>assertj-parent-pom</artifactId> <version>1.3.2</version> </parent> <mailingLists> <mailingList> <name>AssertJ Group</name> <post>http://groups.google.com/group/assertj</post> <subscribe>http://groups.google.com/group/assertj</subscribe> <unsubscribe>http://groups.google.com/group/assertj</unsubscribe> </mailingList> </mailingLists> <scm> <developerConnection>scm:git:git@github.com:joel-costigliola/assertj-core.git</developerConnection> <connection>scm:git:git@github.com:joel-costigliola/assertj-core.git</connection> <url>git@github.com:joel-costigliola/assertj-core</url> <tag>assertj-core-java8-1.0.0m1</tag> </scm> <issueManagement> <system>github</system> <url>https://github.com/joel-costigliola/assertj-core/issues</url> </issueManagement> <properties> <additionalparam>-Xdoclint:none</additionalparam> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> </dependency> <dependency> <groupId>cglib</groupId> <artifactId>cglib</artifactId> <version>3.1</version> <optional>true</optional> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> <version>5.0.3</version> <optional>true</optional> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>animal-sniffer-maven-plugin</artifactId> <configuration> <!-- No need to check. There is also no Java 8 signature artifact --> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>2.6</version> <configuration> <!-- Template location --> <header>licence-header.txt</header> <properties> <!-- Values to be substituted in template --> <inceptionYear>2012</inceptionYear> <currentYear>2014</currentYear> </properties> <strictCheck>true</strictCheck> <includes> <include>src/main/**/*.java</include> </includes> <excludes> <exclude>src/ide-support/**/*.*</exclude> </excludes> </configuration> <executions> <execution> <phase>validate</phase> <goals> <goal>format</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.5.3</version> <extensions>true</extensions> <configuration> <instructions> <Export-Package> !org.assertj.core.internal, org.assertj.core.api.*, org.assertj.core.condition.* </Export-Package> <Bundle-RequiredExecutionEnvironment>JavaSE-1.7</Bundle-RequiredExecutionEnvironment> <_removeheaders>Bnd-LastModified</_removeheaders> </instructions> </configuration> </plugin> <!-- generate jacoco report --> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <executions> <execution> <id>check</id> <goals> <goal>check</goal> </goals> <configuration> <rules> <rule implementation="org.jacoco.maven.RuleConfiguration"> <element>BUNDLE</element> <limits> <limit implementation="org.jacoco.report.check.Limit"> <counter>CLASS</counter> <value>COVEREDRATIO</value> <minimum>0.99</minimum> </limit> </limits> </rule> </rules> </configuration> </execution> </executions> </plugin> <!-- to get jacoco report we need to set argLine in surefire, without this snippet the jacoco argLine is lost --> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <argLine>${argLine}</argLine> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>jarjar-maven-plugin</artifactId> <version>1.9</version> <executions> <execution> <phase>package</phase> <goals> <goal>jarjar</goal> </goals> <configuration> <!-- TODO add ASM / or get rid of CGLIB --> <includes> <include>cglib:cglib</include> <include>org.ow2.asm:asm</include> </includes> <rules> <rule> <pattern>org.objectweb.asm.**</pattern> <result>org.assertj.core.internal.asm.@1</result> </rule> <rule> <pattern>net.sf.cglib.**</pattern> <result>org.assertj.core.internal.cglib.@1</result> </rule> <keep> <pattern>org.assertj.core.**</pattern> </keep> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <!-- (1) CSS file location --> <stylesheetfile>src/main/javadoc/assertj-javadoc.css</stylesheetfile> <!-- (2) Highlight Javascript file --> <top><![CDATA[ <script src="http://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js"></script> ]]></top> <!-- init Highlight --> <footer><![CDATA[ <script type="text/javascript"> hljs.initHighlightingOnLoad(); </script> ]]></footer> </configuration> </plugin> </plugins> </build> </project>