Skip to content

Commit

Permalink
Update MoppyControlGUI dependencies & add temporary IntelliJ files to…
Browse files Browse the repository at this point in the history
… .gitignore (#217)

* Add gradle and IntelliJ files to .gitignore

* Update gradle dependencies
  • Loading branch information
AmonBune authored Jul 18, 2024
1 parent ab667a1 commit 96d811b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@

# Gradle Artifacts #
**/.gradle/**
**/gradle/**
gradle
gradlew
gradlew.bat

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
Expand All @@ -41,3 +45,6 @@ Java/*/.settings/org.eclipse.jdt.core.prefs
Java/*/.settings/org.eclipse.buildship.core.prefs
Java/MoppyControlGUI/**/*.form
**/.vscode

# JetBrains IntelliJ
.idea
6 changes: 3 additions & 3 deletions Java/MoppyControlGUI/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ repositories {

dependencies {
implementation project(':MoppyLib')
implementation 'com.fasterxml.jackson.core:jackson-databind:2.11.2'
compileOnly 'org.projectlombok:lombok:1.18.12'
annotationProcessor 'org.projectlombok:lombok:1.18.12'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.2'
compileOnly 'org.projectlombok:lombok:1.18.34'
annotationProcessor 'org.projectlombok:lombok:1.18.34'

// Use JUnit test framework
//testImplementation 'junit:junit:4.12'
Expand Down
8 changes: 4 additions & 4 deletions Java/MoppyLib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ repositories {
}

dependencies {
implementation 'com.fazecast:jSerialComm:2.6.+'
api 'org.graalvm.js:js:20.1.+'
compileOnly 'org.projectlombok:lombok:1.18.12'
annotationProcessor 'org.projectlombok:lombok:1.18.12'
implementation 'com.fazecast:jSerialComm:2.11.+'
api 'org.graalvm.js:js:23.0.+'
compileOnly 'org.projectlombok:lombok:1.18.34'
annotationProcessor 'org.projectlombok:lombok:1.18.34'

// Use JUnit test framework
//testImplementation 'junit:junit:4.+'
Expand Down

0 comments on commit 96d811b

Please sign in to comment.