From 234861c454d90dfd10f55223b66a9b966d64e9dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillaume=20Perr=C3=A9al?= <guillaume.perreal@irstea.fr> Date: Tue, 28 Nov 2017 15:32:00 +0100 Subject: [PATCH] Indique le nouveau chemin vers plantuml.jar. --- composer.json | 1 + src/DependencyInjection/Configuration.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 5aab6c9..6c5c12b 100644 --- a/composer.json +++ b/composer.json @@ -39,6 +39,7 @@ "symfony/http-kernel": "^3.0", "symfony/security": "^3.0" }, + "bin": ["bin/plantuml.jar"], "require-dev": { }, "config": { diff --git a/src/DependencyInjection/Configuration.php b/src/DependencyInjection/Configuration.php index 7e43004..ed86f70 100644 --- a/src/DependencyInjection/Configuration.php +++ b/src/DependencyInjection/Configuration.php @@ -44,7 +44,7 @@ class Configuration implements ConfigurationInterface ->end() ->scalarNode('plamtuml_jar') ->info('Archive du logiciel PlantUML') - ->defaultValue(__DIR__ . '/../vendor/plantuml/plantuml.jar') + ->defaultValue(__DIR__ . '/../../bin/plantuml.jar') ->end() ->scalarNode('dot') ->info("Commande 'dot' du package 'graphviz'") -- GitLab