Skip to content

Commit

Permalink
Add url library JAR (#286)
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-gibson committed Mar 8, 2023
1 parent 2bb11f2 commit d0701cb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 10 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
# GitLink Changelog

## Unreleased
- Update GitLab URL format (#284)
- Add URL library JAR

## 4.3.1 - 2022-12-16
- Fix menu text crash on 2022.3 when no host is detected
Expand Down
11 changes: 2 additions & 9 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
// Kotlin support
id("org.jetbrains.kotlin.jvm") version "1.7.21"
// Gradle IntelliJ Plugin
id("org.jetbrains.intellij") version "1.10.1"
id("org.jetbrains.intellij") version "1.13.1"
// Gradle Changelog Plugin
id("org.jetbrains.changelog") version "2.0.0"
// Gradle Qodana Plugin
Expand All @@ -22,18 +22,11 @@ version = properties("pluginVersion")
// Configure project's dependencies
repositories {
mavenCentral()
maven {
url = uri("https://maven.pkg.github.com/ben-gibson/url")
credentials {
username = properties("githubUsername").ifEmpty { System.getenv("GITHUB_USERNAME") }
password = properties("githubToken").ifEmpty { System.getenv("GITHUB_PACKAGE_READ_TOKEN") }
}
}
}
dependencies {
testImplementation("org.junit.jupiter:junit-jupiter-params:5.9.0")
testImplementation("org.junit.jupiter:junit-jupiter:5.8.2")
implementation("uk.co.ben_gibson:url:0.0.10")
implementation(files("libs/url-0.0.10.jar"))
implementation("org.jetbrains.kotlin:kotlin-reflect:1.6.10")

}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
pluginGroup = uk.co.ben_gibson.git.link
pluginName = GitLink
# SemVer format -> https://semver.org
pluginVersion = 4.3.1
pluginVersion = 4.3.2

# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# for insight into build numbers and IntelliJ Platform versions.
Expand Down
Binary file added libs/url-0.0.10.jar
Binary file not shown.

0 comments on commit d0701cb

Please sign in to comment.