This is an automated email from the ASF dual-hosted git repository. cdutz pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/plc4x.git
commit bfcefdb559a4e753a8e2723e162d1ba7d1d1598c Author: Christofer Dutz <[email protected]> AuthorDate: Wed Aug 21 14:56:13 2019 +0200 - Made gem execute in the gem directory --- plc4j/integrations/logstash-plugin/pom.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plc4j/integrations/logstash-plugin/pom.xml b/plc4j/integrations/logstash-plugin/pom.xml index 972fadc..02539a7 100644 --- a/plc4j/integrations/logstash-plugin/pom.xml +++ b/plc4j/integrations/logstash-plugin/pom.xml @@ -117,15 +117,15 @@ <goal>exec</goal> </goals> <configuration> - <executable>jruby/jruby-${jruby.version}/bin/jruby</executable> + <executable>../jruby/jruby-${jruby.version}/bin/jruby</executable> <arguments> <argument>-S</argument> - <argument>jruby/jruby-${jruby.version}/bin/gem</argument> + <argument>../jruby/jruby-${jruby.version}/bin/gem</argument> <argument>build</argument> - <argument>gem/logstash-input-plc4x.gemspec</argument> + <argument>logstash-input-plc4x.gemspec</argument> <!--argument>-output=${project.artifactId}-${project.version}.gem</argument--> </arguments> - <workingDirectory>${project.build.directory}</workingDirectory> + <workingDirectory>${project.build.directory}/gem</workingDirectory> </configuration> </execution> </executions>
