Gradle文件转换为Maven。

huangapple go评论63阅读模式
英文:

Gradle file to Maven

问题

以下是要翻译的内容:

我想将这个依赖项添加到我的Maven Spring应用程序中。

repositories {
    maven {
        url = uri("https://maven.regulaforensics.com/RegulaDocumentReaderWebClient")
    }
}

dependencies {
    implementation("com.regula.documentreader:webclient:5.+")
}

我有这段代码,它是一个Gradle文件,我想将这个依赖项添加到我的Spring应用程序中。

英文:

I want to add this dependency to my maven spring application.

repositories {
    maven {
        url = uri("https://maven.regulaforensics.com/RegulaDocumentReaderWebClient")
    }
}

dependencies {
    implementation("com.regula.documentreader:webclient:5.+")
}

I am having this code which is of a gradle file and I want to add this dependency to my Spring application.

答案1

得分: 0

在你的应用程序的pom.xml文件中,你需要添加一个仓库标签,然后是一个依赖标签,像这样:

<repositories>
    <repository>
        <id>regulaforensics</id>
        <url>https://maven.regulaforensics.com/RegulaDocumentReaderWebClient</url>
    </repository>
</repositories>

然后

<dependencies>
    <dependency>
        <groupId>com.regula.documentreader</groupId>
        <artifactId>webclient</artifactId>
        <version>5.8.4</version>
    </dependency>
</dependencies>
英文:

In your application pom.xml, you add a repository tag then, a dependency tag, like this:

&lt;repositories&gt;
    &lt;repository&gt;
	    &lt;id&gt;regulaforensics&lt;/id&gt;
	    &lt;url&gt;https://maven.regulaforensics.com/RegulaDocumentReaderWebClient&lt;/url&gt;
    &lt;/repository&gt;
&lt;/repositories&gt;

then

&lt;dependencies&gt;
    &lt;dependency&gt;
	    &lt;groupId&gt;com.regula.documentreader&lt;/groupId&gt;
	    &lt;artifactId&gt;webclient&lt;/artifactId&gt;
	    &lt;version&gt;5.8.4&lt;/version&gt;
    &lt;/dependency&gt;
&lt;/dependencies&gt;

huangapple
  • 本文由 发表于 2023年5月18日 12:58:24
  • 转载请务必保留本文链接:https://go.coder-hub.com/76277850.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定