Skip to content
This repository was archived by the owner on Apr 19, 2022. It is now read-only.

Commit 9cb9663

Browse files
committed
Update Gradle dependencies
1 parent 72fa669 commit 9cb9663

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CodeView/publish.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ publishing {
1515
name = "GithubPackages"
1616
url = uri("https://maven.pkg.github.com/jackdevey/codeview")
1717
credentials {
18-
username = project.findProperty("gpr.user") ?: System.getenv("USERNAME")
19-
password = project.findProperty("gpr.key") ?: System.getenv("TOKEN")
18+
username = System.getenv("USERNAME")
19+
password = System.getenv("GH_TOKEN")
2020
}
2121
}
2222
maven {

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ buildscript {
1212
classpath 'com.android.tools.build:gradle:7.0.0-alpha09'
1313
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.31"
1414

15-
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.13.0' // NEW
16-
classpath 'org.jetbrains.dokka:dokka-gradle-plugin:1.4.10.2' // NEW
15+
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.14.2' // NEW
16+
classpath 'org.jetbrains.dokka:dokka-gradle-plugin:1.4.20' // NEW
1717

1818
// NOTE: Do not place your application dependencies here; they belong
1919
// in the individual module build.gradle files

0 commit comments

Comments
 (0)