fix4j-assert
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.fix4j</groupId> <artifactId>fix4j-assert</artifactId> <version>1.3</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.jcabi</groupId> <artifactId>parent</artifactId> <version>0.38</version> </parent> <groupId>org.fix4j</groupId> <artifactId>fix4j-assert</artifactId> <packaging>pom</packaging> <version>1.3</version> <modules> <module>fix4j-assert-core</module> <module>fix4j-assert-quickfix</module> <module>fix4j-assert-acceptance</module> <module>fix4j-assert-codegen</module> <module>fix4j-assert-fixspec-50sp2</module> <module>fix4j-assert-all</module> <module>fix4j-assert-testcommon</module> <module>fix4j-assert-integration</module> </modules> <name>${project.groupId}:${project.artifactId}</name> <description>fix4j-assert is a library to assist in testing of applications using FIX protocol</description> <url>https://github.com/fix4j/fix4j-assert</url> <licenses> <license> <name>GNU General Public License (GPL)</name> <url>http://www.gnu.org/licenses/gpl.txt</url> </license> </licenses> <developers> <developer> <name>Ben Warner</name> <email>bjwarner@gmail.com</email> <organization>fix4j</organization> <organizationUrl>http://www.fix4j.org</organizationUrl> </developer> </developers> <scm> <url>https://github.com/fix4j/fix4j-assert</url> <connection>scm:git:git://github.com/fix4j/fix4j-assert.git</connection> <developerConnection>scm:git:git@github.com:fix4j/fix4j-assert.git</developerConnection> <tag>HEAD</tag> </scm> <properties> <maven.compiler.source>1.7</maven.compiler.source> <maven.compiler.target>1.7</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>1.3.0</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.3.0</version> </dependency> </dependencies> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <version>2.18.1</version> </plugin> </plugins> </reporting> <profiles> <!-- Overriding the javadoc settings so that the large fixspec packages are not javadoc'd --> <profile> <id>sonatype</id> <build> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>jcabi-javadoc</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <excludePackageNames>org.fix4j.spec.fix50sp2.fieldtype.*</excludePackageNames> </configuration> </plugin> </plugins> </build> </profile> </profiles> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.codehaus.gmaven</groupId> <artifactId>gmaven-plugin</artifactId> <version>1.4</version> <configuration> <providerSelection>2.0</providerSelection> </configuration> <executions> <execution> <goals> <goal>compile</goal> <goal>testCompile</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>org.codehaus.gmaven.runtime</groupId> <artifactId>gmaven-runtime-2.0</artifactId> <version>1.4</version> <exclusions> <exclusion> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-all</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-all</artifactId> <version>2.3.8</version> </dependency> </dependencies> </plugin> </plugins> </pluginManagement> </build> </project>