Skip to content

Commit a577ba2

Browse files
authored
Merge pull request #78 from a-schild/develop
Release 12.0.3
2 parents 33a0932 + 1c25be9 commit a577ba2

4 files changed

Lines changed: 33 additions & 3 deletions

File tree

.github/workflows/build.yaml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# This workflow will build a Java project with Maven
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
3+
4+
name: Java CI with Maven
5+
6+
on:
7+
push:
8+
branches: [ develop ]
9+
pull_request:
10+
branches: [ develop ]
11+
12+
jobs:
13+
build:
14+
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- uses: actions/checkout@3
19+
with:
20+
ref: ${{ github.ref }}
21+
- name: Set up JDK 1.8
22+
uses: actions/setup-java@v3
23+
with:
24+
java-version: 8.0
25+
distribution: 'adopt'
26+
architecture: x64
27+
- name: Build with Maven
28+
run: mvn -B package --file pom.xml

Changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# Changelog for nextcloud api
2+
- 2022-11.29
3+
- Release 12.0.3, upgraded jackson dependencies
24
- 2022-04-01
35
- Release 12.0.2, upgraded jaxb-runtime to 3.0.2 too because of indirect dependencies
46
- 2022-04-01

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Java api library to access nextcloud features from java applications
1919
<dependency>
2020
<groupId>com.github.a-schild</groupId>
2121
<artifactId>nextcloud-java-api</artifactId>
22-
<version>12.0.2</version>
22+
<version>12.0.3</version>
2323
</dependency>
2424
```
2525

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>org.aarboard.nextcloud</groupId>
55
<artifactId>nextcloud-api</artifactId>
6-
<version>12.0.2</version>
6+
<version>12.0.3</version>
77
<packaging>jar</packaging>
88
<properties>
99
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -20,7 +20,7 @@
2020
<commons-lang3.version>3.12.0</commons-lang3.version>
2121
<jakarta.xml.bind-api.version>2.3.3</jakarta.xml.bind-api.version>
2222
<jaxb-runtime.version>3.0.2</jaxb-runtime.version>
23-
<jackson.version>2.13.2.2</jackson.version>
23+
<jackson.version>2.14.1</jackson.version>
2424
<netbeans.hint.license>gpl30</netbeans.hint.license>
2525
</properties>
2626
<name>NextCloud Java API library</name>

0 commit comments

Comments
 (0)