Skip to content

Commit

Permalink
Merge pull request #62 from 3flex/update-deps
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
BreadMoirai authored Oct 11, 2023
2 parents fd8a82d + b46d0da commit 24d9d3f
Show file tree
Hide file tree
Showing 5 changed files with 198 additions and 161 deletions.
32 changes: 10 additions & 22 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,60 +17,48 @@
plugins {
id 'groovy'
id 'java-gradle-plugin'
id 'com.gradle.plugin-publish' version '1.0.0-rc-1'
id 'com.gradle.plugin-publish' version '1.1.0'
id 'maven-publish'
}

group = 'com.github.breadmoirai'
version = '2.4.1'
version = '2.5'

repositories {
mavenCentral()
gradlePluginPortal()
}

dependencies {
implementation('com.squareup.okhttp3:okhttp:4.9.3') {
implementation('com.squareup.okhttp3:okhttp:4.10.0') {
exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib'
exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib-common'
}
implementation group: 'org.apache.tika', name: 'tika-core', version: '2.0.0'
implementation group: 'org.apache.tika', name: 'tika-core', version: '2.9.0'
implementation 'org.zeroturnaround:zt-exec:1.12'

testImplementation 'org.codehaus.groovy:groovy-test:3.0.9'

// compileOnly 'com.gradle.publish:plugin-publish-plugin:1.0.0-rc-1'

// testCompile('org.spockframework:spock-core:1.1-groovy-2.4') {
// exclude(group: 'org.codehaus.groovy')
// }
// testCompile(group: "org.testfx", name: "testfx-core", version: "4.0.13-alpha")
// testCompile(group: "org.testfx", name: "testfx-spock", version: "4.0.13-alpha")
// testCompile(gradleTestKit())
}


gradlePlugin {
website = 'https://github.com/BreadMoirai/github-release-gradle-plugin'
vcsUrl = 'https://github.com/BreadMoirai/github-release-gradle-plugin'
plugins.create('github-release') {
id = 'com.github.breadmoirai.github-release'
implementationClass = 'com.github.breadmoirai.githubreleaseplugin.GithubReleasePlugin'
displayName = 'Github Release Plugin'
description = 'A Gradle Plugin to send Releases to Github '

tags.addAll("github", "release")
}
}

pluginBundle {
website = 'https://github.com/BreadMoirai/github-release-gradle-plugin'
vcsUrl = 'https://github.com/BreadMoirai/github-release-gradle-plugin'
tags = ['github', 'release']
}

validatePlugins {
enableStricterValidation = true
}

task createPluginClasspath {
def outputDir = file("${buildDir}/resources/test")
tasks.register('createPluginClasspath') {
def outputDir = file("${layout.buildDirectory}/resources/test")

inputs.files sourceSets.test.runtimeClasspath
outputs.dir outputDir
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
11 changes: 6 additions & 5 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-all.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit 24d9d3f

Please sign in to comment.