File tree Expand file tree Collapse file tree 4 files changed +5
-10
lines changed Expand file tree Collapse file tree 4 files changed +5
-10
lines changed Original file line number Diff line number Diff line change 3
3
# GitLink Changelog
4
4
5
5
## Unreleased
6
+ - Update GitLab URL format (#284 )
7
+ - Add URL library JAR
6
8
7
9
## 4.3.1 - 2022-12-16
8
10
- Fix menu text crash on 2022.3 when no host is detected
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ plugins {
9
9
// Kotlin support
10
10
id(" org.jetbrains.kotlin.jvm" ) version " 1.7.21"
11
11
// Gradle IntelliJ Plugin
12
- id(" org.jetbrains.intellij" ) version " 1.10 .1"
12
+ id(" org.jetbrains.intellij" ) version " 1.13 .1"
13
13
// Gradle Changelog Plugin
14
14
id(" org.jetbrains.changelog" ) version " 2.0.0"
15
15
// Gradle Qodana Plugin
@@ -22,18 +22,11 @@ version = properties("pluginVersion")
22
22
// Configure project's dependencies
23
23
repositories {
24
24
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
- }
32
25
}
33
26
dependencies {
34
27
testImplementation(" org.junit.jupiter:junit-jupiter-params:5.9.0" )
35
28
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 " ) )
37
30
implementation(" org.jetbrains.kotlin:kotlin-reflect:1.6.10" )
38
31
39
32
}
Original file line number Diff line number Diff line change 4
4
pluginGroup = uk.co.ben_gibson.git.link
5
5
pluginName = GitLink
6
6
# SemVer format -> https://semver.org
7
- pluginVersion = 4.3.1
7
+ pluginVersion = 4.3.2
8
8
9
9
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
10
10
# for insight into build numbers and IntelliJ Platform versions.
You can’t perform that action at this time.
0 commit comments