diff --git a/com.coala.core/META-INF/MANIFEST.MF b/com.coala.core/META-INF/MANIFEST.MF index e88d67a..4d34abc 100644 --- a/com.coala.core/META-INF/MANIFEST.MF +++ b/com.coala.core/META-INF/MANIFEST.MF @@ -4,7 +4,9 @@ Bundle-Name: Plugin Bundle-SymbolicName: com.coala.core;singleton:=true Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: ., - lib/json-20151123.jar + lib/json-20151123.jar, + lib/commons-exec-1.3.jar, + lib/commons-logging-1.2.jar Bundle-Vendor: COALA Require-Bundle: org.eclipse.ui, org.eclipse.core.resources;bundle-version="3.10.1", @@ -16,4 +18,5 @@ Require-Bundle: org.eclipse.ui, org.junit Bundle-RequiredExecutionEnvironment: JavaSE-1.7 Import-Package: javax.inject;version="1.0.0" -Export-Package: com.coala.core.handlers;x-friends:="com.coala.core.tests" +Export-Package: com.coala.core.handlers;x-friends:="com.coala.core.tests", + org.apache.commons.exec diff --git a/com.coala.core/build.properties b/com.coala.core/build.properties index b9533fd..60ebf2e 100644 --- a/com.coala.core/build.properties +++ b/com.coala.core/build.properties @@ -4,4 +4,6 @@ bin.includes = plugin.xml,\ META-INF/,\ .,\ icons/,\ - lib/json-20151123.jar + lib/json-20151123.jar,\ + lib/commons-exec-1.3.jar,\ + lib/commons-logging-1.2.jar diff --git a/com.coala.core/lib/commons-exec-1.3.jar b/com.coala.core/lib/commons-exec-1.3.jar new file mode 100644 index 0000000..9a64351 Binary files /dev/null and b/com.coala.core/lib/commons-exec-1.3.jar differ diff --git a/com.coala.core/lib/commons-logging-1.2.jar b/com.coala.core/lib/commons-logging-1.2.jar new file mode 100644 index 0000000..93a3b9f Binary files /dev/null and b/com.coala.core/lib/commons-logging-1.2.jar differ