diff --git a/org.fortiss.tooling.common/trunk/.classpath b/org.fortiss.tooling.common/trunk/.classpath index 6e662f83da3dbb3361b087eded22af5a789cc513..6aa0f56f3a09eb985dbf6c81a64736d3d208cdf2 100644 --- a/org.fortiss.tooling.common/trunk/.classpath +++ b/org.fortiss.tooling.common/trunk/.classpath @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <classpath> + <classpathentry exported="true" kind="lib" path="lib/antlr-3.2.jar"/> <classpathentry exported="true" kind="lib" path="lib/org.conqat.ide.commons.jar"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/> <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> diff --git a/org.fortiss.tooling.common/trunk/META-INF/MANIFEST.MF b/org.fortiss.tooling.common/trunk/META-INF/MANIFEST.MF index 0eea403054c5a28de3917baeb7f154fd0e489a60..73a96d84c385d0b0d813e892949df4a0e8287998 100644 --- a/org.fortiss.tooling.common/trunk/META-INF/MANIFEST.MF +++ b/org.fortiss.tooling.common/trunk/META-INF/MANIFEST.MF @@ -7,10 +7,43 @@ Require-Bundle: org.eclipse.core.runtime;bundle-version="3.7.0";visibility:=reex org.junit4;bundle-version="4.8.1";visibility:=reexport Bundle-ActivationPolicy: lazy Bundle-RequiredExecutionEnvironment: JavaSE-1.6 -Bundle-ClassPath: lib/org.conqat.ide.commons.jar -Export-Package: org.conqat.lib.commons.algo, +Bundle-ClassPath: lib/org.conqat.ide.commons.jar, + lib/antlr-3.2.jar +Export-Package: antlr, + antlr.ASdebug, + antlr.actions.cpp, + antlr.actions.csharp, + antlr.actions.java, + antlr.actions.python, + antlr.build, + antlr.collections, + antlr.collections.impl, + antlr.debug, + antlr.debug.misc, + antlr.preprocessor, + org.antlr, + org.antlr.analysis, + org.antlr.codegen, + org.antlr.grammar.v2, + org.antlr.grammar.v3, + org.antlr.gunit, + org.antlr.gunit.swingui, + org.antlr.gunit.swingui.model, + org.antlr.gunit.swingui.parsers, + org.antlr.gunit.swingui.runner, + org.antlr.misc, + org.antlr.runtime, + org.antlr.runtime.debug, + org.antlr.runtime.misc, + org.antlr.runtime.tree, + org.antlr.stringtemplate, + org.antlr.stringtemplate.language, + org.antlr.stringtemplate.misc, + org.antlr.tool, + org.conqat.lib.commons.algo, org.conqat.lib.commons.assertion, org.conqat.lib.commons.assessment, + org.conqat.lib.commons.assessment.partition, org.conqat.lib.commons.cache, org.conqat.lib.commons.cache4j, org.conqat.lib.commons.cache4j.backend, diff --git a/org.fortiss.tooling.common/trunk/build.properties b/org.fortiss.tooling.common/trunk/build.properties index 00b7308c2fc284855a4269daee3719ffade4602a..06523266d1834bf4f42adcdc5333a7fb30c48e48 100644 --- a/org.fortiss.tooling.common/trunk/build.properties +++ b/org.fortiss.tooling.common/trunk/build.properties @@ -1,3 +1,4 @@ bin.includes = META-INF/,\ - lib/org.conqat.ide.commons.jar + lib/org.conqat.ide.commons.jar,\ + lib/antlr-3.2.jar src.includes = lib/ diff --git a/org.fortiss.tooling.common/trunk/lib/antlr-3.2.jar b/org.fortiss.tooling.common/trunk/lib/antlr-3.2.jar new file mode 100644 index 0000000000000000000000000000000000000000..fdd167d4444c0c380d8e6c87e95e342a06b0d08d Binary files /dev/null and b/org.fortiss.tooling.common/trunk/lib/antlr-3.2.jar differ