-
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 #19 from digipost/C5_11
Max sheets in C5 changes to 20 sheets, from 14 before.
- Loading branch information
Showing
22 changed files
with
110 additions
and
217 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
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 |
---|---|---|
|
@@ -11,19 +11,15 @@ jobs: | |
|
||
name: build java ${{ matrix.java }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
- uses: actions/checkout@v3 | ||
- name: Set up java | ||
uses: actions/setup-java@v3 | ||
uses: actions/setup-java@v3.6.0 | ||
with: | ||
java-version: ${{ matrix.java }} | ||
distribution: temurin | ||
server-id: github | ||
cache: 'maven' | ||
|
||
cache: "maven" | ||
- name: Build with Maven | ||
run: mvn -B package --no-transfer-progress --file pom.xml | ||
run: mvn --settings .mvn/settings.xml -B verify -U --no-transfer-progress | ||
|
||
makeversion: | ||
if: github.ref != 'refs/heads/main' | ||
|
@@ -50,10 +46,8 @@ jobs: | |
|
||
name: Deploy snapshot | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
- uses: digipost/[email protected] | ||
- uses: actions/checkout@v3 | ||
- uses: digipost/[email protected] | ||
with: | ||
sonatype_secrets: ${{ secrets.sonatype_secrets }} | ||
release_version: ${{ needs.makeversion.outputs.version }} | ||
|
@@ -66,11 +60,9 @@ jobs: | |
name: Release to Sonatype | ||
steps: | ||
- name: Check out Git repository | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
uses: actions/checkout@v3 | ||
- name: Release to Central Repository | ||
uses: digipost/action-maven-publish@1.1.0 | ||
uses: digipost/action-maven-publish@1.3.2 | ||
with: | ||
sonatype_secrets: ${{ secrets.sonatype_secrets }} | ||
release_version: ${{ needs.makeversion.outputs.version }} | ||
|
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 @@ | ||
-P build-sources-and-javadoc,dependency-analyze,include-NOTICE |
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,28 @@ | ||
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 | ||
http://maven.apache.org/xsd/settings-1.0.0.xsd"> | ||
|
||
<profiles> | ||
<profile> | ||
<id>sonatype_snapshots</id> | ||
<repositories> | ||
<repository> | ||
<id>oss.sonatype.org-snapshot</id> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots</url> | ||
<releases> | ||
<enabled>false</enabled> | ||
</releases> | ||
<snapshots> | ||
<enabled>true</enabled> | ||
</snapshots> | ||
</repository> | ||
</repositories> | ||
</profile> | ||
</profiles> | ||
|
||
<activeProfiles> | ||
<activeProfile>sonatype_snapshots</activeProfile> | ||
</activeProfiles> | ||
|
||
</settings> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.