Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Repro dokka NoClassDefFoundError #5

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import org.gradle.api.tasks.testing.logging.TestExceptionFormat

plugins {
`java-gradle-plugin`
`kotlin-dsl`
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
package com.atlassian.performance.tools.license

import org.eclipse.jgit.api.CreateBranchCommand.SetupUpstreamMode.SET_UPSTREAM
import org.eclipse.jgit.api.CreateBranchCommand.SetupUpstreamMode.TRACK
import org.eclipse.jgit.api.Git
import org.eclipse.jgit.lib.ConfigConstants
import org.eclipse.jgit.lib.ConfigConstants.CONFIG_BRANCH_SECTION
import org.eclipse.jgit.transport.URIish
import org.junit.rules.TemporaryFolder
Expand Down Expand Up @@ -37,11 +34,8 @@ class Fixtures {
buildFolder.newFile("build.gradle").writeText(
"""
plugins {
id 'com.atlassian.performance.tools.gradle-release'
id "org.jetbrains.kotlin.jvm" version "1.3.20"
}
dependencies {
compile group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib-jdk8', version: '1.3.20'
id 'com.atlassian.performance.tools.gradle-release' version "0.9.0"
}
""".trimIndent()
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ class PublishTest {
val publishResult = GradleRunner.create()
.withProjectDir(project.root)
.withArguments("publishToMavenLocal", "--stacktrace")
.withPluginClasspath()
.forwardOutput()
.withDebug(true)
.build()
Expand Down
Loading