我有一个要求,比如,我必须创建一个日蚀插件项目, 带有自定义文件夹结构, 我能够成功完成 。
接下来的一步是,我想做一个在运行期间创造的projet, 使用我的插件来进行maven抚养管理, 也就是说,我和我的巫师创建的每一个项目 都应该有maven抚养管理。
除了Tycho,有人知道我怎么才能实现这个目标吗?
注意: 当我在寻找解决方案时, 我发现有条纹大写插件, 但它只建起日食插件工程, 不使它成为一个 Maven 工程( 根据我的理解)
我有一个要求,比如,我必须创建一个日蚀插件项目, 带有自定义文件夹结构, 我能够成功完成 。
接下来的一步是,我想做一个在运行期间创造的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 , 但我不知道它们的能力和局限性 。
一般来说,如果和平会运作良好,或许会有所帮助, 否则我不认为已经开发了一个工具了, 因为马文和奥斯基/埃克利普斯插座世界之间在逻辑上存在的主要差异。
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 ...
Check this, List<String> list = new ArrayList<String>(); for (int i = 0; i < 10000; i++) { String value = (""+UUID.randomUUID().getLeastSignificantBits()).substring(3, ...
I am in the middle of solving a problem where I think it s best suited for a decorator and a state pattern. The high level setting is something like a sandwich maker and dispenser, where I have a set ...
I have been trying to execute a MS SQL Server stored procedure via JDBC today and have been unsuccessful thus far. The stored procedure has 1 input and 1 output parameter. With every combination I ...
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 ...
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 ...
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....
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 ...