gpt4 book ai didi

maven - 使用 Gradle 将 Java Artifact 发布到 Maven Local

转载 作者:行者123 更新时间:2023-12-03 07:25:58 26 4
gpt4 key购买 nike

我在尝试将生成的 jar 安装到本地 Maven 存储库时遇到问题。消息错误只是显示“找不到任务‘发布’”

我正在使用这个 Gradle 脚本:

buildscript {
ext {
springBootVersion = '1.3.2.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'spring-boot'
apply plugin: 'maven-publish'

jar {
baseName = 'mongofoundry'
version = '1.0.0'
}
sourceCompatibility = 1.7
targetCompatibility = 1.7


repositories {
mavenCentral()
}


dependencies {
compile('org.springframework.boot:spring-boot-starter-web')
compile('org.springframework.boot:spring-boot-starter-data-mongodb')
testCompile('org.springframework.boot:spring-boot-starter-test')
}

publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
}


eclipse {
classpath {
containers.remove('org.eclipse.jdt.launching.JRE_CONTAINER')
containers 'org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7'
}
}

task wrapper(type: Wrapper) {
gradleVersion = '2.9'
}

您知道我为什么会阅读该错误消息吗?谢谢。

已更新

按照@RaGe提到的方式运行命令,解决了问题:

gradle publishToMavenLocal

最佳答案

将 Artifact 发布到本地 Maven 的正确任务是

gradle publishToMavenLocal

关于maven - 使用 Gradle 将 Java Artifact 发布到 Maven Local,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35094655/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com