Skip to content

Commit f18e4a2

Browse files
authored
Merge pull request #80 from a-schild/master
Sync with main branch
2 parents 1c25be9 + d19cded commit f18e4a2

3 files changed

Lines changed: 12 additions & 4 deletions

File tree

Changelog.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Changelog for nextcloud api
2-
- 2022-11.29
2+
- 2022-11-29
3+
- Release 12.0.4, upgraded indirect commons-codec dependency
34
- Release 12.0.3, upgraded jackson dependencies
45
- 2022-04-01
56
- Release 12.0.2, upgraded jaxb-runtime to 3.0.2 too because of indirect dependencies

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.3</version>
22+
<version>12.0.4</version>
2323
</dependency>
2424
```
2525

pom.xml

Lines changed: 9 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.3</version>
6+
<version>12.0.4</version>
77
<packaging>jar</packaging>
88
<properties>
99
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -18,6 +18,7 @@
1818
<sardine.version>5.10</sardine.version>
1919
<commons-io.version>2.11.0</commons-io.version>
2020
<commons-lang3.version>3.12.0</commons-lang3.version>
21+
<commons-codec.version>1.15</commons-codec.version>
2122
<jakarta.xml.bind-api.version>2.3.3</jakarta.xml.bind-api.version>
2223
<jaxb-runtime.version>3.0.2</jaxb-runtime.version>
2324
<jackson.version>2.14.1</jackson.version>
@@ -84,7 +85,13 @@
8485
<artifactId>sardine</artifactId>
8586
<version>${sardine.version}</version>
8687
</dependency>
87-
88+
<!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
89+
<dependency>
90+
<groupId>commons-codec</groupId>
91+
<artifactId>commons-codec</artifactId>
92+
<version>${commons-codec.version}</version>
93+
</dependency>
94+
8895
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
8996
<dependency>
9097
<groupId>commons-io</groupId>

0 commit comments

Comments
 (0)