Advertisement
Guest User

Untitled

a guest
Feb 18th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. Deploying artifact: https://artifactory.example.com/artifactory/libs-release-local-maven/com/example/hello/gradle-com.example.hello-plugin/0.1-SNAPSHOT/gradle-com.example.hello-plugin-0.1-SNAPSHOT.jar
  2. Deploying artifact: https://artifactory.example.com/artifactory/libs-release-local-maven/com/example/hello/gradle-com.example.hello-plugin/0.1-SNAPSHOT/gradle-com.example.hello-plugin-0.1-SNAPSHOT.pom
  3. Deploying build descriptor to: https://artifactory.example.com/artifactory/api/build
  4. Build successfully deployed. Browse it in Artifactory under https://artifactory.example.com/artifactory/webapp/builds/gradle-com.example.hello-plugin/1234567890123
  5.  
  6. plugins {
  7. id 'java'
  8. id 'com.example.hello' version '0.1-SNAPSHOT'
  9. }
  10.  
  11. pluginManagement {
  12. repositories {
  13. maven {
  14. url 'https://artifactory.example.com/artifactory/libs-release-local-maven/'
  15. }
  16. }
  17. }
  18.  
  19. Plugin [id: 'com.example', version: '0.1-SNAPSHOT'] was not found in any of the following sources:
  20.  
  21. - Gradle Core Plugins (plugin is not in 'org.gradle' namespace)
  22. - Plugin Repositories (could not resolve plugin artifact 'com.example.hello:com.example.hello.gradle.plugin:0.1-SNAPSHOT')
  23. Searched in the following repositories:
  24. maven(https://artifactory.example.com/artifactory/libs-release-local-maven/)
  25. Gradle Central Plugin Repository
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement