gradle-processes
gradle-processes copied to clipboard
Gradle Processes Plugin - Create and manage forked processes
I'm seeing the following error: ``` A problem was found with the configuration of task ':example:startServerForTesting' (type 'Fork'). - In plugin 'com.github.johnrengelman.processes' type 'com.github.jengelman.gradle.plugins.processes.tasks.Fork' property 'argumentProviders' is missing an input...
Hi Team, Could you please upload your plugin jars to Maven central or JCenter. This would help us extend your plugin and use it as base for our own open...
Gradle 5.3 changed some internal APIs which broke this plugin. E.g. you get an error like: ``` Caused by: java.lang.NoSuchMethodError: org.gradle.process.internal.JavaExecHandleBuilder.(Lorg/gradle/api/internal/file/FileResolver;Ljava/util/concurrent/Executor;Lorg/gradle/initialization/BuildCancellationToken;)V at com.github.jengelman.gradle.plugins.processes.internal.DefaultJavaForkAction.(DefaultJavaForkAction.java:17) ``` Would be great if you could...
after installed like describe I got an error (see headline) gradleWrapperVersion=2.3 any ideas why?
I am using gradle-processes to manage a set of long running services. I am basing my tasks on JavaFork, and simply using the main class with classpath and arguments. On...
This covers forking of processes that outlive the Gradle build process itself. Is it possible? Would termination of the build cause the child processes to terminate? How to work around...
Implement an ability to configure a max # of concurrent processes. This should work something like a thread executor (in fact could probably be implemented as such). The idea here...