Skip to content

Commit e186cf8

Browse files
authored
Update build (#34)
2 parents 8c10209 + b7f51db commit e186cf8

File tree

5 files changed

+17
-14
lines changed

5 files changed

+17
-14
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# GH_TOKEN
21
# NEXUS_USER
32
# NEXUS_PASS64 (base64 NOTE: `base64` and `openssl base64` failed, had to use Java
43
# byte[] data = "{{password}}".getBytes(StandardCharsets.UTF_8);
@@ -26,8 +25,10 @@ jobs:
2625
build:
2726
runs-on: ubuntu-latest
2827
name: deploy
28+
permissions:
29+
contents: write
2930
env:
30-
gh_token: ${{ secrets.GH_TOKEN }}
31+
gh_token: ${{ secrets.GITHUB_TOKEN }}
3132
ORG_GRADLE_PROJECT_nexus_user: ${{ secrets.NEXUS_USER }}
3233
ORG_GRADLE_PROJECT_nexus_pass64: ${{ secrets.NEXUS_PASS64 }}
3334
ORG_GRADLE_PROJECT_gpg_passphrase: ${{ secrets.GPG_PASSPHRASE }}

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ build/
1313
bin/
1414

1515
# IntelliJ
16-
.idea/
16+
.idea/
17+
.kotlin/

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# AtPlug releases
22

33
## [Unreleased]
4+
### Changed
5+
- Bump all dependencies to latest.
46

57
## [1.1.1] - 2024-07-06
68
### Changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ allprojects {
1616
}
1717
apply from: 干.file('base/sonatype.gradle')
1818

19-
String VER_JUNIT_JUPITER = '5.10.3'
19+
String VER_JUNIT_JUPITER = '5.11.0'
2020
subprojects {
2121
apply from: 干.file('base/java.gradle')
2222
apply from: 干.file('base/kotlin.gradle')
@@ -39,7 +39,7 @@ subprojects {
3939
ext.maven_name='AtPlug test harness'
4040
dependencies {
4141
compileOnly "org.junit.jupiter:junit-jupiter-api:5.0.0"
42-
implementation "org.jetbrains.kotlin:kotlin-reflect:2.0.0"
42+
implementation "org.jetbrains.kotlin:kotlin-reflect:2.0.20"
4343
implementation project(':atplug-runtime')
4444
}
4545
} else if (it.name == 'atplug-plugin-gradle') {

settings.gradle

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,34 +8,33 @@ plugins {
88
// https://github.com/diffplug/blowdryer/blob/main/CHANGELOG.md
99
id 'com.diffplug.blowdryerSetup' version '1.7.1'
1010
// https://github.com/diffplug/spotless/blob/main/plugin-gradle/CHANGES.md
11-
id 'com.diffplug.spotless' version '7.0.0.BETA1' apply false
11+
id 'com.diffplug.spotless' version '7.0.0.BETA2' apply false
1212
// https://github.com/diffplug/spotless-changelog/blob/main/CHANGELOG.md
13-
id 'com.diffplug.spotless-changelog' version '3.1.1' apply false
13+
id 'com.diffplug.spotless-changelog' version '3.1.2' apply false
1414
// https://plugins.gradle.org/plugin/com.gradle.plugin-publish
15-
id 'com.gradle.plugin-publish' version '1.2.1' apply false
15+
id 'com.gradle.plugin-publish' version '1.2.2' apply false
1616
// https://github.com/equodev/equo-ide/blob/main/plugin-gradle/CHANGELOG.md
17-
id 'dev.equo.ide' version '1.7.6' apply false
17+
id 'dev.equo.ide' version '1.7.7' apply false
1818
// https://github.com/gradle-nexus/publish-plugin/releases
1919
id 'io.github.gradle-nexus.publish-plugin' version '2.0.0' apply false
2020
// https://plugins.gradle.org/plugin/org.jetbrains.dokka
2121
id 'org.jetbrains.dokka' version '1.9.20' apply false
2222
// https://plugins.gradle.org/plugin/org.jetbrains.kotlin.jvm
23-
id 'org.jetbrains.kotlin.jvm' version '2.0.0' apply false
23+
id 'org.jetbrains.kotlin.jvm' version '2.0.20' apply false
2424
// https://plugins.gradle.org/plugin/org.jetbrains.kotlin.plugin.serialization
25-
id 'org.jetbrains.kotlin.plugin.serialization' version '2.0.0' apply false
25+
id 'org.jetbrains.kotlin.plugin.serialization' version '2.0.20' apply false
2626
// https://plugins.gradle.org/plugin/org.jetbrains.kotlin.multiplatform
27-
id 'org.jetbrains.kotlin.multiplatform' version '2.0.0' apply false
27+
id 'org.jetbrains.kotlin.multiplatform' version '2.0.20' apply false
2828
// https://github.com/adamko-dev/dokkatoo/releases
2929
id 'dev.adamko.dokkatoo-html' version '2.3.1' apply false
3030
}
3131

3232
blowdryerSetup {
33-
github 'diffplug/blowdryer-diffplug', 'tag', '7.3.0'
33+
github 'diffplug/blowdryer-diffplug', 'tag', '8.0.2'
3434
//devLocal '../blowdryer-diffplug'
3535
setPluginsBlockTo {
3636
it.file 'plugin.versions'
3737
it.file 'plugin-kotlin.versions'
38-
it.replace '3.0.2', '3.1.1'
3938
}
4039
}
4140

0 commit comments

Comments
 (0)