Xtext 2.0 maven或ant项目
我想从命令行构建我自己的 xtext 2.0 项目。 有人可以分享真正有效的 xtext 2.0 maven pom.xml 或 ant build.xml 文件吗?
I want to build my own xtext 2.0 project from command line.
Could anybody share real working xtext 2.0 maven pom.xml or ant build.xml file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你知道http://code.google.com/a/eclipselabs.org /p/喷雾/。他们使用 Maven Tycho 构建 Xtext 项目。
do you know http://code.google.com/a/eclipselabs.org/p/spray/. they build Xtext projects using Maven Tycho.
您可以使用此 Maven 原型来创建具有多模块 Maven 布局和 Tycho(清单优先方法)的 Xtext 项目:
https://github.com/fuinorg/emt-xtext-archetype
You can use this Maven archetype that creates an Xtext project with a multi module Maven layout and Tycho (manifest-first approach):
https://github.com/fuinorg/emt-xtext-archetype
可以参考的几个项目:
https://github.com/xtext-dev/maven -xtext-示例
使用 tycho 的标准 maven-xtext 示例,包括 maven pom 设置和示例项目。我按照本指南构建了我的 xtext 项目。
https://github.com/aphethean/xtext-maven-examples
如果您想编写自己的主类,它将有所帮助。
还,
https://github.com/applause/applause
它不是一个 Maven xtext 项目,而是一个很好的例子,展示了如何分离语法核心和代码生成器逻辑。
希望这会有所帮助。 :)
Several projects that you could refer to:
https://github.com/xtext-dev/maven-xtext-example
a standard maven-xtext sample using tycho, including maven pom settings and example project. I built my xtext project following this guide.
https://github.com/aphethean/xtext-maven-examples
It'll help if you wanna write your own main class.
Also,
https://github.com/applause/applause
It's not a maven xtext project, but a very good example to show how to separate grammar core and code generator logics.
Hope this would help. :)