English 中文(简体)
帮助我理解使母项目(w/ non-maven jar Dependencies)为他人所用。
原标题:Help me understand making maven project w/ non-maven jar dependencies usable by others

正在学习玉米(和java包装和配送)过程中的Im ,新轴心项目I m 做成实践。 这里我的情况当然是:

我的主要项目是项目A,该项目设在一个储存库。 我也创建了一个以黑白为基础的公用事业项目:项目B。 A取决于一个项目一的大幅度修改,该项目最初是从Agoogle-code ant为基础的储存库项目C进行的。

因此,我如何为项目建立建筑。 一个人可以下载项目A.jar,无需安装项目B和项目C的轮胎,以及我如何建立可以检查项目A和运行的建筑。 全套材料?

(此外,我对我修改的项目C文本应当做些什么?) 包括直接列入项目A的班级档案,或将项目推入可用作偶然依赖的东西?

我正在阅读以下链接:,这一题目涉及SO问题,这份问题SO问题,但我不清楚这些内容如何与我的特殊情况有关。 因此,希望得到任何帮助。 感谢!

最佳回答

因此,我如何为项目建立建筑。 一个人可以下载A.jar项目,无须安装项目B和项目C的轮胎。

假定项目 A is a JAR, You can make an executable JAR that bundles the Dependencies with the Maven Assembly Plugin (和预先确定的jar-with-dependencies http://maven.apache.org/plugins/maven-shade-plugin/“rel=”nofollow noretinger” Maven Shade Plugin。

我是如何建立这样的建筑的,有人可以检查项目A,只为完整的汇编操作微粒材料?

页: 1 a 存放地的附属物,可读入吉大港山区,并在您的目录中公布这一存放处。 AFAIK, git-hub don t为此提供任何设施。 但是,任何网站托管服务(FTP接入(或更好, scp)都应做到trick。 如果你的项目是开放的,另一个选择是使用Sona型 s 交存服务。

就在个案中,你不妨读到,但获得的只是更多的东西。

最容易的是,将3个项目作为多模块化项目加以组织,并建设所有单元。

此外,我应当与我修改的项目C文本做些什么?

从模块化观点来看(假设你找到了有关存放地的上述部分的解决办法),将储存作为一个单独的单元肯定会有意义,特别是如果有人有机会在你的项目之外使用项目C。

问题回答

你们必须从另外的受抚养人那里公布该守则。 两种选择:

  1. Use the maven-shade-plugin to create a maven artifact containing all the content of the B and C jars, and publish that under your own G/A/V coordinates.
  2. Publish copies of B and C under your own G/A/V coordinates using the maven-deploy-plugin to your forge just as you will publish your own code. Different forges have different policies; but if you abide by the licenses of B and C you should be OK.




相关问题
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 ...