fixio
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.kpavlov.fixio</groupId> <artifactId>fixio</artifactId> <version>1.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright 2014 The FIX.io Project ~ ~ The FIX.io Project licenses this file to you under the Apache License, ~ version 2.0 (the "License"); you may not use this file except in compliance ~ with the License. You may obtain a copy of the License at: ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT ~ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the ~ License for the specific language governing permissions and limitations ~ under the License. --> <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"> <parent> <groupId>com.github.kpavlov.fixio</groupId> <artifactId>fixio-parent</artifactId> <version>1.2</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>fixio</artifactId> <name>fix.io core</name> <description>FIX Protocol Support for Netty 4</description> <dependencies> <!-- production dependencies --> <dependency> <groupId>io.netty</groupId> <artifactId>netty-all</artifactId> <version>${netty.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>it.unimi.dsi</groupId> <artifactId>fastutil</artifactId> <version>${fastutil.version}</version> </dependency> <!-- test dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>pl.pragmatists</groupId> <artifactId>JUnitParams</artifactId> <version>1.0.4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j.version}</version> <scope>runtime</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.javassist</groupId> <artifactId>javassist</artifactId> <version>3.19.0-GA</version> <scope>runtime</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>net.sf.xsltmp</groupId> <artifactId>xslt-generator-maven-plugin</artifactId> <version>1.8</version> <executions> <execution> <id>transform-fields</id> <goals> <goal>many-to-many</goal> </goals> <configuration> <xslTemplate>src/main/xml/FieldType.xsl</xslTemplate> <srcDir>src/main/xml</srcDir> <destDir>target/generated-sources/java</destDir> <srcIncludes>FIX50SP2.xml</srcIncludes> <addDestDirTo>sources</addDestDirTo> <fileNameRegex>.+\.xml</fileNameRegex> <fileNameReplacement>fixio/fixprotocol/FieldType\.java</fileNameReplacement> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>net.sf.saxon</groupId> <artifactId>Saxon-HE</artifactId> <version>9.8.0-3</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <licenses> <license> <name>Apache License Version 2.0, January 2004</name> <distribution>repo</distribution> <url>http://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> </project>