Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,25 @@

name: Java CI with Maven

on:
push:
branches: [ orchestra-v1-0 ]
pull_request:
branches: [ orchestra-v1-0 ]
on: [ push, pull_request ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
- name: Set up JDK 11
uses: actions/setup-java@v3
uses: actions/setup-java@v5
with:
java-version: '11'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Upload package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Package
path: target/*.jar
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.fixprotocol.orchestra</groupId>
<artifactId>fixml-generator</artifactId>
<version>1.4.2-SNAPSHOT</version>
<version>1.4.3-SNAPSHOT</version>
<name>${project.groupId}:${project.artifactId}</name>
<description>FIXML schema generator from from Orchestra</description>
<prerequisites>
Expand Down Expand Up @@ -83,4 +83,4 @@

</plugins>
</build>
</project>
</project>
2 changes: 1 addition & 1 deletion src/main/resources/xsl/FIXMLSchemaGenerator.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ xmlns:fixr="http://fixprotocol.io/2020/orchestra/repository">
<xsl:variable name="sid" select="/fixr:repository/fixr:categories/fixr:category[@name=$MessageCategory]/@section"/>
<xso:annotation>
<xso:documentation xml:lang="en">
<xsl:value-of select="@name"/> can be found at https://www.fixtrading.org/online-specification/business-area-<xsl:value-of select="$sid"/>#msg<xsl:value-of select="@id"/>
<xsl:value-of select="@name"/> can be found at https://orchimate.org/fixtrading/fix-latest/messages/<xsl:value-of select="@name"/>
</xso:documentation>
<xso:appinfo>
<xsl:element name="fm:Xref" namespace="{$fmNamespace}">
Expand Down
Loading