From c3ff9e91392f9977906a6bcea4840359835d1898 Mon Sep 17 00:00:00 2001 From: Sebastian Krings <sebastian@krin.gs> Date: Thu, 24 Sep 2015 11:41:48 +0200 Subject: [PATCH] fix build after parser version bump --- de.prob.core/.classpath | 2 +- de.prob.core/META-INF/MANIFEST.MF | 1 + de.prob.core/build.gradle | 18 +++++++++--------- de.prob.core/build.properties | 2 +- 4 files changed, 12 insertions(+), 11 deletions(-) diff --git a/de.prob.core/.classpath b/de.prob.core/.classpath index 484367c1..452dcad9 100644 --- a/de.prob.core/.classpath +++ b/de.prob.core/.classpath @@ -9,12 +9,12 @@ <classpathentry exported="true" kind="lib" path="lib/dependencies/cliparser-2.4.40.jar"/> <classpathentry exported="true" kind="lib" path="lib/dependencies/commons-codec-1.6.jar"/> <classpathentry exported="true" kind="lib" path="lib/dependencies/commons-lang-2.6.jar"/> - <classpathentry exported="true" kind="lib" path="lib/dependencies/jfmi-1.0.2-SNAPSHOT.jar"/> <classpathentry exported="true" kind="lib" path="lib/dependencies/jna-3.4.0.jar"/> <classpathentry exported="true" kind="lib" path="lib/dependencies/jsr305-1.3.9.jar"/> <classpathentry exported="true" kind="lib" path="lib/dependencies/ltlparser-2.4.40.jar"/> <classpathentry exported="true" kind="lib" path="lib/dependencies/parserbase-2.4.40.jar"/> <classpathentry exported="true" kind="lib" path="lib/dependencies/prologlib-2.4.40.jar"/> + <classpathentry exported="true" kind="lib" path="lib/dependencies/ptolemy-jfmi-1.1.0.jar"/> <classpathentry exported="true" kind="lib" path="lib/dependencies/theorymapping-2.4.40.jar"/> <classpathentry exported="true" kind="lib" path="lib/dependencies/unicode-2.4.40.jar"/> <classpathentry exported="true" kind="lib" path="lib/dependencies/xmlpull-1.1.3.1.jar"/> diff --git a/de.prob.core/META-INF/MANIFEST.MF b/de.prob.core/META-INF/MANIFEST.MF index 52fa8b2c..40385228 100644 --- a/de.prob.core/META-INF/MANIFEST.MF +++ b/de.prob.core/META-INF/MANIFEST.MF @@ -122,6 +122,7 @@ Bundle-Activator: de.prob.core.internal.Activator Eclipse-BuddyPolicy: registered Bundle-RequiredExecutionEnvironment: JavaSE-1.6 Bundle-ClassPath: ., + lib/dependencies/ptolemy-jfmi-1.1.0.jar, lib/dependencies/unicode-2.4.40.jar, lib/dependencies/theorymapping-2.4.40.jar, lib/dependencies/prologlib-2.4.40.jar, diff --git a/de.prob.core/build.gradle b/de.prob.core/build.gradle index a7c4670e..21c0025b 100644 --- a/de.prob.core/build.gradle +++ b/de.prob.core/build.gradle @@ -3,17 +3,17 @@ apply plugin: 'java' def parser_version = '2.4.40' dependencies { - compile group: "de.prob", name: "answerparser", version: parser_version , changing: true - compile group: "de.prob", name: "bparser", version: parser_version , changing: true - compile group: "de.prob", name: "cliparser", version: parser_version , changing: true - compile group: "de.prob", name: "ltlparser", version: parser_version , changing: true - compile group: "de.prob", name: "parserbase", version: parser_version , changing: true - compile group: "de.prob", name: "prologlib", version: parser_version , changing: true - compile group: "de.prob", name: "unicode", version: parser_version , changing: true - compile group: "de.prob", name: "theorymapping", version: parser_version , changing: true + compile group: "de.hhu.stups", name: "answerparser", version: parser_version , changing: true + compile group: "de.hhu.stups", name: "bparser", version: parser_version , changing: true + compile group: "de.hhu.stups", name: "cliparser", version: parser_version , changing: true + compile group: "de.hhu.stups", name: "ltlparser", version: parser_version , changing: true + compile group: "de.hhu.stups", name: "parserbase", version: parser_version , changing: true + compile group: "de.hhu.stups", name: "prologlib", version: parser_version , changing: true + compile group: "de.hhu.stups", name: "unicode", version: parser_version , changing: true + compile group: "de.hhu.stups", name: "theorymapping", version: parser_version , changing: true compile 'commons-lang:commons-lang:2.6' compile 'commons-codec:commons-codec:1.6' compile 'com.thoughtworks.xstream:xstream:1.4.7' compile group: 'net.java.dev.jna', name: 'jna', version: '3.4.0' - compile group: 'edu.berkeley.eecs.ptolemy', name: 'jfmi', version: '1.0.2-SNAPSHOT' + compile group: 'de.hhu.stups', name: 'ptolemy-jfmi', version: '1.1.0' } diff --git a/de.prob.core/build.properties b/de.prob.core/build.properties index 04b12c31..b89d6661 100644 --- a/de.prob.core/build.properties +++ b/de.prob.core/build.properties @@ -8,7 +8,7 @@ bin.includes = META-INF/,\ lib/dependencies/commons-codec-1.6.jar,\ lib/dependencies/xmlpull-1.1.3.1.jar,\ lib/dependencies/xpp3_min-1.1.4c.jar,\ - lib/dependencies/jfmi-1.0.2-SNAPSHOT.jar,\ + lib/dependencies/ptolemy-jfmi-1.1.0.jar,\ lib/dependencies/jna-3.4.0.jar -- GitLab