Skip to content
Closed
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
3 changes: 2 additions & 1 deletion .github/workflows/nightly-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
cache: maven

- name: Build SNAPSHOT
run: ./mvnw clean package -pl '!quickfixj-distribution' -B -V -D"maven.javadoc.skip"="true" -D"java.util.logging.config.file"="${{github.workspace}}/quickfixj-core/src/test/resources/logging.properties" -D"http.keepAlive"="false" -D"maven.wagon.http.pool"="false" -D"maven.wagon.httpconnectionManager.ttlSeconds"="120"
run: ./mvnw clean package -pl '!quickfixj-distribution' -B -V -D"maven.javadoc.skip"="true" -P"full-fix-latest" -D"java.util.logging.config.file"="${{github.workspace}}/quickfixj-core/src/test/resources/logging.properties" -D"http.keepAlive"="false" -D"maven.wagon.http.pool"="false" -D"maven.wagon.httpconnectionManager.ttlSeconds"="120"

- name: Delete old packages
continue-on-error: true
Expand Down Expand Up @@ -62,6 +62,7 @@ jobs:
for i in 1 2 3; do
./mvnw deploy -pl '!quickfixj-distribution' -B -V \
-Dmaven.install.skip=true -DskipTests \
-P"full-fix-latest" \
-D"java.util.logging.config.file"="${{github.workspace}}/quickfixj-core/src/test/resources/logging.properties" \
--no-transfer-progress && break || sleep 30
done
Expand Down
5 changes: 5 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -475,6 +475,11 @@
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<properties>
<!-- Activate the full-fix-latest profile in quickfixj-messages-all so that
releases and deployments to Sonatype Central include all FixLatest classes and fields. -->
<quickfixj.fixlatest.build>full</quickfixj.fixlatest.build>
</properties>
<build>
<plugins>
<plugin>
Expand Down
10 changes: 9 additions & 1 deletion quickfixj-messages/quickfixj-messages-all/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,15 @@
<profile>
<id>full-fix-latest</id>
<!-- This profile builds the full fix latest specification to testing that a new version of the full specification
does not introduce issues in the core QuickFIX/J build -->
does not introduce issues in the core QuickFIX/J build.
It is also activated automatically when the 'release' profile is active (via the quickfixj.fixlatest.build property)
so that releases and deployments to Sonatype Central include all FixLatest classes and fields. -->
<activation>
<property>
<name>quickfixj.fixlatest.build</name>
<value>full</value>
</property>
</activation>
<build>
<plugins>
<plugin>
Expand Down
Loading