Skip to content

Commit

Permalink
Bump dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborbata committed Jun 12, 2023
1 parent 81a413a commit 29831cd
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
7 changes: 3 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,9 @@ repositories {
}

dependencies {
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-xml', version: '2.12.4'
implementation group: 'com.formdev', name: 'flatlaf', version: '1.5'
implementation group: 'com.formdev', name: 'svgSalamander', version: '1.1.2.4'

implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-xml', version: '2.15.2'
implementation group: 'com.formdev', name: 'flatlaf', version: '3.1.1'
implementation group: 'com.formdev', name: 'svgSalamander', version: '1.1.4'
testImplementation 'junit:junit:4.13.2'
}

Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ name := "JPass"

version := "1.0.2-SNAPSHOT"

libraryDependencies += "com.fasterxml.jackson.dataformat" % "jackson-dataformat-xml" % "2.12.4"
libraryDependencies += "com.fasterxml.jackson.dataformat" % "jackson-dataformat-xml" % "2.15.2"

libraryDependencies += "com.formdev" % "flatlaf" % "1.5"
libraryDependencies += "com.formdev" % "flatlaf" % "3.1.1"

libraryDependencies += "com.formdev" % "svgSalamander" % "1.1.2.4"
libraryDependencies += "com.formdev" % "svgSalamander" % "1.1.4"

libraryDependencies += "junit" % "junit" % "4.13.2" % "test"

Expand Down
2 changes: 1 addition & 1 deletion jpass.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0",
"version": "1.0.1",
"description": "Password manager application with strong encryption (AES-256)",
"homepage": "https://github.com/gaborbata/jpass",
"license": {
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-xml</artifactId>
<version>2.12.4</version>
<version>2.15.2</version>
</dependency>
<dependency>
<groupId>com.formdev</groupId>
<artifactId>flatlaf</artifactId>
<version>1.5</version>
<version>3.1.1</version>
</dependency>
<dependency>
<groupId>com.formdev</groupId>
<artifactId>svgSalamander</artifactId>
<version>1.1.2.4</version>
<version>1.1.4</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down

0 comments on commit 29831cd

Please sign in to comment.