f1x
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.johnaimes1a.f1x</groupId>
<artifactId>f1x</artifactId>
<version>0.6.18</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ Licensed 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/maven-v4_0_0.xsd">
<!--
Maven project configuration file for F1X.
SETUP:
=====
Before you can build this project you need to import GFLOGGER third-party library to your local maven repository:
mvn install:install-file -Dfile=./lib/gflogger.jar -DgroupId=org.gflogger -DartifactId=gflogger -Dversion=1.0 -Dpackaging=jar -DgeneratePom=true
-->
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.johnaimes1a.f1x</groupId>
<artifactId>f1x</artifactId>
<packaging>jar</packaging>
<version>0.6.18</version>
<name>f1x</name>
<url>https://github.com/johnaimes1a/f1x</url>
<description>Java implementation of FIX Protocol.</description>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.15</version>
<configuration>
<argLine>-Dfile.encoding=${project.build.sourceEncoding}</argLine>
</configuration>
</plugin>
<!--
<plugin> Test coverage
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.6.5-SNAPSHOT</version>
</plugin>
-->
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId>
<version>0.5.5</version>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-core</artifactId>
<version>0.5.5</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.5</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.lmax</groupId>
<artifactId>disruptor</artifactId>
<version>3.2.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.gflogger</groupId>
<artifactId>gflogger</artifactId>
<version>1.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.code.java-allocation-instrumenter</groupId>
<artifactId>java-allocation-instrumenter</artifactId>
<version>2.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.quickfix</artifactId>
<version>1.5.3_1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.jcip</groupId>
<artifactId>jcip-annotations</artifactId>
<version>1.0.0.1</version>
<scope>compile</scope>
</dependency>
<!-- Follow instructions above to install GFLogger into local repository
<dependency>
<groupId>org.gflogger</groupId>
<artifactId>gflogger</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${basedir}/lib/gflogger.jar</systemPath>
</dependency>
-->
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<scm>
<url>scm:git:git@github.com:johnaimes1a/f1x.git</url>
<connection>scm:git:git@github.com:johnaimes1a/f1x.git</connection>
<developerConnection>scm:git:git@github.com:johnaimes1a/f1x.git</developerConnection>
<tag>master</tag>
</scm>
<licenses>
<license>
<name>Apache 2.0 License</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>a1lex1</id>
<name>Alex Anderson</name>
<email>alex.1.anderson@gmail.com</email>
<url>https://github.com/alexanderson1</url>
<organization>Independent</organization>
<organizationUrl>https://github.com/alexanderson1</organizationUrl>
</developer>
</developers>
</project>