Skip to content

Commit f778426

Browse files
authored
Merge pull request #40 from itsallcode/upgrade-oft
Upgrade OFT to 3.5.0
2 parents 7863ecb + d2313b8 commit f778426

15 files changed

Lines changed: 28 additions & 24 deletions

File tree

.github/workflows/broken_links_checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
linkChecker:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v3
1313
- uses: gaurav-nelson/github-action-markdown-link-check@v1
1414
with:
1515
use-quiet-mode: 'yes'

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
DEFAULT_JAVA: 11
1818

1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v3
2121

2222
- name: Fetch all history for all tags and branches
2323
run: git fetch --prune --unshallow
@@ -50,15 +50,15 @@ jobs:
5050
- name: Build example projects
5151
run: |
5252
cd src/test/resources/empty-project/
53-
mvn verify
53+
mvn --batch-mode verify
5454
cd ../simple-project/
55-
mvn verify
55+
mvn --batch-mode verify
5656
cd ../html-report/
57-
mvn verify
57+
mvn --batch-mode verify
5858
cd ../project-with-tracing-defects
59-
mvn verify
59+
mvn --batch-mode verify
6060
cd ../project-with-tracing-defects-fail-build/
61-
mvn verify || true
61+
mvn --batch-mode verify || true
6262
6363
- name: Sonar analysis
6464
if: ${{ env.DEFAULT_JAVA == matrix.java && env.SONAR_TOKEN != null }}

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: Checkout repository
21-
uses: actions/checkout@v2
21+
uses: actions/checkout@v3
2222

2323
- uses: actions/setup-java@v2
2424
with:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [1.5.0] - 2022-03-17
10+
11+
- [#40](https://github.com/itsallcode/openfasttrace-maven-plugin/pull/40) Upgrade to [OpenFastTrace 3.5.0](https://github.com/itsallcode/openfasttrace/releases/tag/3.5.0)
12+
913
## [1.4.0] - 2022-02-01
1014

1115
- [#39](https://github.com/itsallcode/openfasttrace-maven-plugin/pull/39) Upgrade to [OpenFastTrace 3.4.0](https://github.com/itsallcode/openfasttrace/releases/tag/3.4.0)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Add the openfasttrace-maven-plugin to your `pom.xml`:
3434
<plugin>
3535
<groupId>org.itsallcode</groupId>
3636
<artifactId>openfasttrace-maven-plugin</artifactId>
37-
<version>1.4.0</version>
37+
<version>1.5.0</version>
3838
<executions>
3939
<execution>
4040
<id>trace-requirements</id>

pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>org.itsallcode</groupId>
77
<artifactId>openfasttrace-maven-plugin</artifactId>
8-
<version>1.4.0</version>
8+
<version>1.5.0</version>
99
<packaging>maven-plugin</packaging>
1010

1111
<name>OpenFastTrace Maven Plugin</name>
@@ -16,7 +16,7 @@
1616
<properties>
1717
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1818
<java.version>11</java.version>
19-
<oft.version>3.4.0</oft.version>
19+
<oft.version>3.5.0</oft.version>
2020
<maven.core.version>3.6.3</maven.core.version>
2121
<skipSigningArtifacts>true</skipSigningArtifacts>
2222
<junit.version>5.8.2</junit.version>
@@ -131,7 +131,7 @@
131131
<dependency>
132132
<groupId>com.exasol</groupId>
133133
<artifactId>maven-plugin-integration-testing</artifactId>
134-
<version>1.1.0</version>
134+
<version>1.1.1</version>
135135
<scope>test</scope>
136136
</dependency>
137137
<dependency>
@@ -201,7 +201,7 @@
201201
<plugin>
202202
<groupId>org.apache.maven.plugins</groupId>
203203
<artifactId>maven-compiler-plugin</artifactId>
204-
<version>3.9.0</version>
204+
<version>3.10.1</version>
205205
<configuration>
206206
<source>${java.version}</source>
207207
<target>${java.version}</target>
@@ -246,7 +246,7 @@
246246
<plugin>
247247
<groupId>org.apache.maven.plugins</groupId>
248248
<artifactId>maven-javadoc-plugin</artifactId>
249-
<version>3.3.1</version>
249+
<version>3.3.2</version>
250250
<executions>
251251
<execution>
252252
<id>attach-javadocs</id>
@@ -417,7 +417,7 @@
417417
<plugin>
418418
<groupId>org.sonatype.plugins</groupId>
419419
<artifactId>nexus-staging-maven-plugin</artifactId>
420-
<version>1.6.8</version>
420+
<version>1.6.12</version>
421421
<extensions>true</extensions>
422422
<configuration>
423423
<serverId>ossrh</serverId>

src/test/resources/empty-project/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
<groupId>org.itsallcode</groupId>
2929
<artifactId>openfasttrace-maven-plugin-test</artifactId>
30-
<version>1.0-SNAPSHOT</version>
30+
<version>0.0.0</version>
3131
<packaging>jar</packaging>
3232

3333
<properties>

src/test/resources/html-report/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
<groupId>org.itsallcode</groupId>
2929
<artifactId>openfasttrace-maven-plugin-test</artifactId>
30-
<version>1.0-SNAPSHOT</version>
30+
<version>0.0.0</version>
3131
<packaging>jar</packaging>
3232

3333
<properties>

src/test/resources/project-with-nested-sub-module/modules/my-module/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
<groupId>org.itsallcode</groupId>
2929
<artifactId>openfasttrace-maven-plugin-test-my-module</artifactId>
30-
<version>1.0-SNAPSHOT</version>
30+
<version>0.0.0</version>
3131
<packaging>jar</packaging>
3232

3333
<properties>

src/test/resources/project-with-nested-sub-module/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
<groupId>org.itsallcode</groupId>
2929
<artifactId>openfasttrace-maven-plugin-test-root</artifactId>
30-
<version>1.0-SNAPSHOT</version>
30+
<version>0.0.0</version>
3131
<packaging>pom</packaging>
3232
<modules>
3333
<module>modules/my-module</module>

0 commit comments

Comments
 (0)