生成された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'
}
なぜ私はそのエラーメッセージを読んでいるのでしょうか?ありがとう。
[〜#〜] updated [〜#〜]
@RaGeが述べたようにコマンドを実行すると、問題が解決しました。
gradle publishToMavenLocal.
アーティファクトをローカルMavenに公開する正しいタスクは
gradle publishToMavenLocal