How can I embed Maven into my application?

久未见 提交于 2019-12-05 12:38:52
Brett Porter

Here is an example embedding Maven 2 libraries:

Instead of looking up the project builder, you can look up the ArtifactInstaller and ArtifactDeployer - you'll find the code you want in the maven-install-plugin and the maven-deploy-plugin.

The difference just POSTing in this example is that it will generate the appropriate metadata, checksums and snapshot transformations.

The Maven 3 libraries may be easier to embed and remain compatible with Maven 2, however I don't have any examples readily available.

Maven clients push content to Nexus using a normal HTTP "POST" operation. If all you want to do is publish content, then you don't need all the logic for downloading and resolving dependencies....

If you decide you need full-blown Maven repository interoperability then I'd suggest emulating what other projects like Groovy, Gradle and Scala have done, which is to embed Apache Ivy.

I found the following article describing how to add ivy into your java project (Single jar dependency):

http://developers-blog.org/blog/default/2010/11/08/Embed-Ivy-How-to-use-Ivy-with-Java

Groovy Example

Your question is specifically how to add support for publishing content.

The following code uses ivy to publish to a Nexus repo. Groovy enables you to use Ivy's documented ANT tasks.

import groovy.xml.NamespaceBuilder
import groovy.xml.MarkupBuilder

// Methods
// =======
def generateIvyFile(String fileName) {
    def file = new File(fileName)

    file.withWriter { writer ->
        xml = new MarkupBuilder(writer)

        xml."ivy-module"(version:"2.0") {
            info(organisation:"org.dummy", module:"dummy")
            publications() {
                artifact(name:"dummy", type:"pom")
                artifact(name:"dummy", type:"jar")
            }
        }
    }

    return file
}

def generateSettingsFile(String fileName) {
    def file = new File(fileName)

    file.withWriter { writer ->
        xml = new MarkupBuilder(writer)

        xml.ivysettings() {
            settings(defaultResolver:"central")
            credentials(host:"myrepo.com" ,realm:"Sonatype Nexus Repository Manager", username:"deployment", passwd:"deployment123")
            resolvers() {
                ibiblio(name:"central", m2compatible:true)
                ibiblio(name:"myrepo", root:"http://myrepo.com/nexus", m2compatible:true)
            }
        }
    }

    return file
}

// Main program
// ============
def ant = new AntBuilder()
def ivy = NamespaceBuilder.newInstance(ant, 'antlib:org.apache.ivy.ant')

generateSettingsFile("ivysettings.xml").deleteOnExit()
generateIvyFile("ivy.xml").deleteOnExit()

ivy.resolve()
ivy.publish(resolver:"myrepo", pubrevision:"1.0", publishivy:false) {
    artifacts(pattern:"build/poms/[artifact].[ext]")
    artifacts(pattern:"build/jars/[artifact].[ext]")
}

I have not tried what you want, but I would start by looking into the Maven Embedder project. Possibly even the m2e project which also comes with an embedded version of Maven (and the ability to use external installations too).

Publishing locally will likely involve invoking the maven-install-plugin, and publishing remotely will likely involve using the maven-deploy-plugin.

Hope this points you in the right direction.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!