Repository: incubator-freemarker Updated Branches: refs/heads/2.3 44201a6d1 -> 870b42825
Extract META-INF folder with files like MANIFEST.MF from freemarker.jar and put it in base directory for eclipse Project: http://git-wip-us.apache.org/repos/asf/incubator-freemarker/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-freemarker/commit/1d59baef Tree: http://git-wip-us.apache.org/repos/asf/incubator-freemarker/tree/1d59baef Diff: http://git-wip-us.apache.org/repos/asf/incubator-freemarker/diff/1d59baef Branch: refs/heads/2.3 Commit: 1d59baef4d9d12ee61085ae096afe0219a5dbadc Parents: 4b989f8 Author: Christoph <[email protected]> Authored: Tue Dec 27 20:56:33 2016 +0100 Committer: Christoph <[email protected]> Committed: Tue Dec 27 20:56:33 2016 +0100 ---------------------------------------------------------------------- README | 2 +- build.xml | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-freemarker/blob/1d59baef/README ---------------------------------------------------------------------- diff --git a/README b/README index 57b8d81..7c15d61 100644 --- a/README +++ b/README @@ -139,7 +139,7 @@ apply it to your development environment: - Install Ant and Ivy, if you haven't yet; see earlier. - From the command line, run `ant clean javacc ide-dependencies`. (Note that - now the "ide-dependencies" and "build/generated-sources" was created.) + now the folders "ide-dependencies", "build/generated-sources" and "META-INF" were created.) - Start Eclipse - You may prefer to start a new workspace (File -> "Switch workspace"), but it's optional. http://git-wip-us.apache.org/repos/asf/incubator-freemarker/blob/1d59baef/build.xml ---------------------------------------------------------------------- diff --git a/build.xml b/build.xml index b8b1b13..f72a3ea 100644 --- a/build.xml +++ b/build.xml @@ -1067,6 +1067,15 @@ Proceed? </input> </fileset> </delete> <ivy:retrieve conf="IDE" pattern="ide-dependencies/[artifact]-[revision].[ext]" /> + + <!-- Extract META-INF from freemarker.jar and put it in base directory for eclipse + (this is needed if you want to reference freemarker-source code in the context of OSGI development with Eclipse) --> + <unzip src="build/freemarker.jar" dest="."> + <patternset> + <include name="META-INF/*"/> + </patternset> + </unzip> + </target> <!--
