Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DEV: v1.27 #1449

Merged
merged 2 commits into from
May 20, 2024
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
4 changes: 3 additions & 1 deletion .github/workflows/update-arlington-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ on:

jobs:
checkout-and-build:
if: github.repository == 'veraPDF/veraPDF-library'
runs-on: ubuntu-latest

strategy:
Expand All @@ -47,7 +48,7 @@ jobs:
run: |
git fetch origin arlington:arlington
git checkout -b test-branch arlington
- name: Configure user nameF
- name: Configure user name
run: |
git config user.name "Git User"
git config user.email "[email protected]"
Expand Down Expand Up @@ -94,6 +95,7 @@ jobs:
needs: [checkout-and-build, merge]
if: |
always() &&
github.repository == 'veraPDF/veraPDF-library' &&
(contains(needs.*.result, 'failure') ||
contains(needs.*.result, 'skipped') ||
contains(needs.*.result, 'cancelled'))
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/update-jakarta-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:

jobs:
checkout-and-build:
if: github.repository == 'veraPDF/veraPDF-library'
runs-on: ubuntu-latest

strategy:
Expand Down Expand Up @@ -78,6 +79,7 @@ jobs:
needs: [checkout-and-build, merge]
if: |
always() &&
github.repository == 'veraPDF/veraPDF-library' &&
(contains(needs.*.result, 'failure') ||
contains(needs.*.result, 'skipped') ||
contains(needs.*.result, 'cancelled'))
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ veraPDF-library
===============
*Industry Supported PDF/A and PDF/UA Validation*

[![Build Status](https://jenkins.openpreservation.org/job/veraPDF/job/1.25/job/library/badge/icon)](https://jenkins.openpreservation.org/job/veraPDF/job/1.25/job/library/ "OPF Jenkins")
[![Build Status](https://jenkins.openpreservation.org/job/veraPDF/job/1.27/job/library/badge/icon)](https://jenkins.openpreservation.org/job/veraPDF/job/1.27/job/library/ "OPF Jenkins")
[![Maven Central](https://img.shields.io/maven-central/v/org.verapdf/verapdf-library.svg)](https://repo1.maven.org/maven2/org/verapdf/verapdf-library/ "Maven central")
[![CodeCov Coverage](https://img.shields.io/codecov/c/github/veraPDF/veraPDF-library.svg)](https://codecov.io/gh/veraPDF/veraPDF-library/ "CodeCov coverage")
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/79a5ff15e77444d79d6e97cc40bb458c)](https://app.codacy.com/gh/veraPDF/veraPDF-library/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade "Codacy grade")
Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<parent>
<artifactId>verapdf-library</artifactId>
<groupId>org.verapdf</groupId>
<version>1.25.0-SNAPSHOT</version>
<version>1.27.0-SNAPSHOT</version>
</parent>

<artifactId>core</artifactId>
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@
<parent>
<groupId>org.verapdf</groupId>
<artifactId>verapdf-parent</artifactId>
<version>1.25.1</version>
<version>1.27.1</version>
</parent>

<groupId>org.verapdf</groupId>
<artifactId>verapdf-library</artifactId>
<version>1.25.0-SNAPSHOT</version>
<version>1.27.0-SNAPSHOT</version>
<packaging>pom</packaging>

<name>veraPDF PDF/A Validation Library</name>
Expand Down Expand Up @@ -72,7 +72,7 @@
</scm>

<properties>
<verapdf.model.version>[1.25.0,1.26.0-RC)</verapdf.model.version>
<verapdf.model.version>[1.27.0,1.28.0-RC)</verapdf.model.version>
<sonar.jacoco.itReportPath>${project.basedir}/../target/jacoco-it.exec</sonar.jacoco.itReportPath>
<sonar.language>java</sonar.language>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion xmp-core-coverage/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.verapdf</groupId>
<artifactId>verapdf-library</artifactId>
<version>1.25.0-SNAPSHOT</version>
<version>1.27.0-SNAPSHOT</version>
</parent>

<artifactId>verapdf-xmp-core-coverage</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion xmp-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.verapdf</groupId>
<artifactId>verapdf-library</artifactId>
<version>1.25.0-SNAPSHOT</version>
<version>1.27.0-SNAPSHOT</version>
</parent>

<artifactId>verapdf-xmp-core</artifactId>
Expand Down
Loading