Compare commits

...

3 Commits

Author SHA1 Message Date
A2 Geek
5981f65db1
Merge pull request #30 from AppleCommander/dependabot/gradle/net.sf.applecommander-AppleCommander-1.9.0
Bump net.sf.applecommander:AppleCommander from 1.8.0 to 1.9.0
2023-11-08 23:57:41 -06:00
dependabot[bot]
459394d1a9
Bump net.sf.applecommander:AppleCommander from 1.8.0 to 1.9.0
Bumps [net.sf.applecommander:AppleCommander](https://github.com/AppleCommander/AppleCommander) from 1.8.0 to 1.9.0.
- [Release notes](https://github.com/AppleCommander/AppleCommander/releases)
- [Commits](https://github.com/AppleCommander/AppleCommander/compare/1.8.0...1.9.0)

---
updated-dependencies:
- dependency-name: net.sf.applecommander:AppleCommander
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-11-06 00:13:48 +00:00
Rob Greene
3d936a435c Fixing Maven publish artifactId. 2023-10-31 18:27:37 -05:00
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ publishing {
artifact javadocJar
pom {
groupId = "net.sf.applecommander"
artifactId = archivesBaseName
artifactId = "bastools-api"
name = "B/BAS Tools (bastools)"
description = 'An Applesoft BASIC tools library.'
url = 'https://applecommander.github.io/'

View File

@ -25,6 +25,6 @@ bootJar {
dependencies {
implementation 'info.picocli:picocli:4.7.5'
implementation 'net.sf.applecommander:applesingle-api:1.2.2'
implementation 'net.sf.applecommander:AppleCommander:1.8.0'
implementation 'net.sf.applecommander:AppleCommander:1.9.0'
implementation project(':bastools-api')
}