Skip to content

Commit

Permalink
Bumping version to 0.1.14 for publication
Browse files Browse the repository at this point in the history
  • Loading branch information
psxpaul committed Apr 13, 2021
1 parent 8afdf30 commit b014d8f
Show file tree
Hide file tree
Showing 13 changed files with 21 additions and 9 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.13
0.1.14
10 changes: 5 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import org.gradle.api.tasks.testing.logging.TestExceptionFormat

plugins {
id("com.gradle.plugin-publish").version("0.13.0")
id("org.jetbrains.kotlin.jvm").version("1.4.31")
id("com.gradle.plugin-publish").version("0.14.0")
id("org.jetbrains.kotlin.jvm").version("1.4.32")
id("idea")
id("maven-publish")
// id("java-gradle-plugin")
id("java-gradle-plugin")
}

group = "com.github.psxpaul"
Expand All @@ -14,8 +14,8 @@ buildDir = File("build/gradle")

dependencies {
implementation(gradleApi())
implementation("org.jetbrains.kotlin:kotlin-stdlib:1.4.31")
implementation("org.jetbrains.kotlin:kotlin-reflect:1.4.31")
implementation("org.jetbrains.kotlin:kotlin-stdlib:1.4.32")
implementation("org.jetbrains.kotlin:kotlin-reflect:1.4.32")

testImplementation("junit:junit:4.12")
testImplementation("org.hamcrest:hamcrest-all:1.3")
Expand Down
1 change: 1 addition & 0 deletions sample_projects/apply_from/gradle/exec.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath "com.github.psxpaul:gradle-execfork-plugin:$pluginVersion"
Expand Down
3 changes: 2 additions & 1 deletion sample_projects/env_vars/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ apply plugin: 'gradle-execfork-plugin'
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath "com.github.psxpaul:gradle-execfork-plugin:$pluginVersion"
Expand All @@ -12,7 +13,7 @@ buildscript {

task verify(dependsOn: 'startDaemon') {
doLast {
sleep(250)
sleep(2000)
assert file("$buildDir/daemon.log").text.contains("VAR_ONE = $buildDir/value_one") == true
assert file("$buildDir/daemon.log").text.contains("VAR_TWO = $buildDir/value_two") == true
assert file("$buildDir/daemon.log").text.contains("VAR_THREE = /tmp/value_three") == true
Expand Down
1 change: 1 addition & 0 deletions sample_projects/jacoco/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ apply plugin: 'gradle-execfork-plugin'
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath "com.github.psxpaul:gradle-execfork-plugin:$pluginVersion"
Expand Down
1 change: 1 addition & 0 deletions sample_projects/redirect_output/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ apply plugin: 'gradle-execfork-plugin'
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath "com.github.psxpaul:gradle-execfork-plugin:$pluginVersion"
Expand Down
1 change: 1 addition & 0 deletions sample_projects/redirect_output_and_error/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ apply plugin: 'gradle-execfork-plugin'
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath "com.github.psxpaul:gradle-execfork-plugin:$pluginVersion"
Expand Down
3 changes: 2 additions & 1 deletion sample_projects/shell_script/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ apply plugin: 'gradle-execfork-plugin'
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath "com.github.psxpaul:gradle-execfork-plugin:$pluginVersion"
Expand All @@ -12,7 +13,7 @@ buildscript {

task verify(dependsOn: 'startDaemon') {
doLast {
sleep(250)
sleep(2000)
assert file("$buildDir/daemon.log").text.contains("PING") == true
assert file("$buildDir/daemon.log").text.contains("PONG") == false
assert file("$buildDir/daemon-error.log").text.contains("PING") == false
Expand Down
1 change: 1 addition & 0 deletions sample_projects/simple/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ apply plugin: 'gradle-execfork-plugin'
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath "com.github.psxpaul:gradle-execfork-plugin:$pluginVersion"
Expand Down
1 change: 1 addition & 0 deletions sample_projects/spring_boot/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath "com.github.psxpaul:gradle-execfork-plugin:$pluginVersion"
Expand Down
2 changes: 2 additions & 0 deletions sample_projects/spring_boot_with_dependency/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath "com.github.psxpaul:gradle-execfork-plugin:$pluginVersion"
Expand All @@ -12,6 +13,7 @@ plugins {
}

repositories {
mavenLocal()
mavenCentral()
}

Expand Down
3 changes: 2 additions & 1 deletion sample_projects/wait_output/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ apply plugin: 'gradle-execfork-plugin'
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath "com.github.psxpaul:gradle-execfork-plugin:$pluginVersion"
Expand All @@ -16,7 +17,7 @@ task integrationTest(dependsOn: 'startDaemon') {
assert content.contains('Important work being done!')
assert content.contains('Daemon is up!')
assert !content.contains('PING')
Thread.sleep(500)
Thread.sleep(1500)
content = file("${buildDir}/daemon.out").text
assert content.contains('PING')
}
Expand Down
1 change: 1 addition & 0 deletions sample_projects/war/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ apply plugin: 'gradle-execfork-plugin'
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath "com.github.psxpaul:gradle-execfork-plugin:$pluginVersion"
Expand Down

0 comments on commit b014d8f

Please sign in to comment.