English 中文(简体)
程序化地将日食插件工程转换成 Maven 工程
原标题:convert eclipse plugin project into maven project programatically

我有一个要求,比如,我必须创建一个日蚀插件项目, 带有自定义文件夹结构, 我能够成功完成 。

接下来的一步是,我想做一个在运行期间创造的projet, 使用我的插件来进行maven抚养管理, 也就是说,我和我的巫师创建的每一个项目 都应该有maven抚养管理。

除了Tycho,有人知道我怎么才能实现这个目标吗?

注意: 当我在寻找解决方案时, 我发现有条纹大写插件, 但它只建起日食插件工程, 不使它成为一个 Maven 工程( 根据我的理解)

问题回答

没有直截了当的方法可以使一个 Maven 工程 < em> 和 的 Eclipse 插件项目成为一个项目。 对于 Maven 和 Eclipse 的构建系统有不同的规则, 解决分歧的不同想法 。

正如你说的,Tycho不会把Eclipse工程变成传统意义上的马文项目(如马文式的受扶养人管理),它只会让马文意识到Eclipse规则。幸运的是,它允许你用马文(至少用 mvn3 ) 来编译插件,这非常简单。

如果您不需要您的项目在 Eclipse 中编译, 您可以使用其他工具, 如 < a href=" http://www.ops4j.org/ projects/pax/construct/maven-pax- plugin/" rel="nolfollow" > Maven Pax , 但我不知道它们的能力和局限性 。

一般来说,如果和平会运作良好,或许会有所帮助, 否则我不认为已经开发了一个工具了, 因为马文和奥斯基/埃克利普斯插座世界之间在逻辑上存在的主要差异。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签