-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from david-gibbs-ig/fix50sp2-from-orchestra
Fix50sp2 from orchestra
- Loading branch information
Showing
52 changed files
with
19,036 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
169 changes: 169 additions & 0 deletions
169
orchestra/fix50sp2/fix50sp2-application-messages/pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,169 @@ | ||
<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>org.quickfixj.custom.examples</groupId> | ||
<artifactId>orchestra-fix50sp2-parent</artifactId> | ||
<version>0.0.1-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>fix50sp2-application-messages</artifactId> | ||
<packaging>jar</packaging> | ||
|
||
<name>QuickFIX/J fix50sp2 custom application messages</name> | ||
<description>Example build of custom FIX application messages</description> | ||
<url>http://www.quickfixj.org</url> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>io.fixprotocol.orchestrations</groupId> | ||
<artifactId>fix-standard</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.quickfixj</groupId> | ||
<artifactId>quickfixj-base</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.quickfixj</groupId> | ||
<artifactId>quickfixj-messages-fixt11</artifactId> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>xml-maven-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>cleanOrchestraRepo</id> | ||
<phase>initialize</phase> | ||
<goals> | ||
<goal>transform</goal> | ||
</goals> | ||
<configuration> | ||
<transformationSets> | ||
<transformationSet> | ||
<dir>${project.basedir}/src/main/resources</dir> | ||
<outputDir>${project.build.directory}/generated-resources</outputDir> | ||
<includes> | ||
<include>${orchestra.file}</include> | ||
</includes> | ||
<stylesheet>${project.basedir}/../../src/main/xsl/extractSessionLayer.xsl</stylesheet> | ||
</transformationSet> | ||
</transformationSets> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.quickfixj.orchestra</groupId> | ||
<artifactId>quickfixj-from-fix-orchestra-code-generator-maven-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<phase>generate-sources</phase> | ||
<goals> | ||
<goal>codeGeneration</goal> | ||
</goals> | ||
<id>fixOrchestraCodeGen</id> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<orchestration>target/generated-resources/example-custom-orchestra.xml</orchestration> | ||
<outputDirectory>target/generated-sources</outputDirectory> | ||
<excludeSession>true</excludeSession> | ||
<generateFixt11Package>false</generateFixt11Package> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.quickfixj.orchestra</groupId> | ||
<artifactId>quickfixj-from-fix-orchestra-dictionary-generator-maven-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<phase>generate-resources</phase> | ||
<goals> | ||
<goal>dictionaryGeneration</goal> | ||
</goals> | ||
<id>fixDictionary</id> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<orchestration>target/generated-resources/example-custom-orchestra.xml</orchestration> | ||
<outputDirectory>target/generated-resources</outputDirectory> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>build-helper-maven-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<phase>process-sources</phase> | ||
<goals><goal>add-source</goal></goals> | ||
<configuration> | ||
<sources> | ||
<source>${project.build.directory}/generated-sources</source> | ||
</sources> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>attach-javadocs</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<configuration> | ||
<includes> | ||
<include>*.xml</include> | ||
<include>quickfix/field/*.class</include> | ||
<include>quickfix/fix*/**</include> | ||
</includes> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-resources-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>copy-fix-dictionary-xml</id> | ||
<phase>generate-resources</phase> | ||
<goals> | ||
<goal>copy-resources</goal> | ||
</goals> | ||
<configuration> | ||
<outputDirectory>target/classes</outputDirectory> | ||
<resources> | ||
<resource> | ||
<directory>${project.build.directory}/generated-resources</directory> | ||
<includes> | ||
<include>FIX50SP2.xml</include> | ||
</includes> | ||
</resource> | ||
</resources> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<configuration> | ||
<includes> | ||
<include>*.xml</include> | ||
<include>quickfix/fix*/**</include> | ||
<include>quickfix/field/**</include> | ||
</includes> | ||
<defaultManifestFile/> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
Oops, something went wrong.