Skip to content

Commit d0701cb

Browse files
authored
Add url library JAR (#286)
1 parent 2bb11f2 commit d0701cb

File tree

4 files changed

+5
-10
lines changed

4 files changed

+5
-10
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
# GitLink Changelog
44

55
## Unreleased
6+
- Update GitLab URL format (#284)
7+
- Add URL library JAR
68

79
## 4.3.1 - 2022-12-16
810
- Fix menu text crash on 2022.3 when no host is detected

build.gradle.kts

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
// Kotlin support
1010
id("org.jetbrains.kotlin.jvm") version "1.7.21"
1111
// Gradle IntelliJ Plugin
12-
id("org.jetbrains.intellij") version "1.10.1"
12+
id("org.jetbrains.intellij") version "1.13.1"
1313
// Gradle Changelog Plugin
1414
id("org.jetbrains.changelog") version "2.0.0"
1515
// Gradle Qodana Plugin
@@ -22,18 +22,11 @@ version = properties("pluginVersion")
2222
// Configure project's dependencies
2323
repositories {
2424
mavenCentral()
25-
maven {
26-
url = uri("https://maven.pkg.github.com/ben-gibson/url")
27-
credentials {
28-
username = properties("githubUsername").ifEmpty { System.getenv("GITHUB_USERNAME") }
29-
password = properties("githubToken").ifEmpty { System.getenv("GITHUB_PACKAGE_READ_TOKEN") }
30-
}
31-
}
3225
}
3326
dependencies {
3427
testImplementation("org.junit.jupiter:junit-jupiter-params:5.9.0")
3528
testImplementation("org.junit.jupiter:junit-jupiter:5.8.2")
36-
implementation("uk.co.ben_gibson:url:0.0.10")
29+
implementation(files("libs/url-0.0.10.jar"))
3730
implementation("org.jetbrains.kotlin:kotlin-reflect:1.6.10")
3831

3932
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
pluginGroup = uk.co.ben_gibson.git.link
55
pluginName = GitLink
66
# SemVer format -> https://semver.org
7-
pluginVersion = 4.3.1
7+
pluginVersion = 4.3.2
88

99
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1010
# for insight into build numbers and IntelliJ Platform versions.

libs/url-0.0.10.jar

28.6 KB
Binary file not shown.

0 commit comments

Comments
 (0)