Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
dialex committed Mar 27, 2022
1 parent f566cdd commit ba3cce7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions .github/RUNBOOK.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,9 @@ How to do stuff
- Delete the contents of folder `docs`
- Paste your clipboard inside that folder
- Run `git add .; git commit -m "doc: update to version X.Y.Z"`

## Update dependencies

- Check what is outdated: `mvn versions:display-dependency-updates`
- Update all of them: `mvn versions:use-latest-releases`
- Check that tests still pass: `mvn test`
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -174,19 +174,19 @@
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
<version>1.4.18</version>
<version>1.4.19</version>
</dependency>
<!-- Necessary for Windows 10 Ansi support -->
<!-- TODO: remove these -->
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna</artifactId>
<version>5.8.0</version>
<version>5.10.0</version>
</dependency>
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna-platform</artifactId>
<version>5.8.0</version>
<version>5.10.0</version>
</dependency>
<!-- Dependencies of test framework -->
<dependency>
Expand All @@ -198,13 +198,13 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.6.3</version>
<version>5.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.6.3</version>
<version>5.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit ba3cce7

Please sign in to comment.