Skip to Main Content

Visual Builder

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Unable to publish repository using gradle publish

user-cxzc9Mar 31 2023 — edited Mar 31 2023

I have added below snippet to publish the repositories using the command
gradle publish, but I don't get any errors and it shows build successful only. When I check Visual Builder Studio UI, I don't see jar got published under Maven tab

If I don't provide credentials element or incorrrect credentials , it doesn't make any difference.

Note: I have copied the url from Visual Builder Studio UI in Maven tab

publishing {
 repositories {
   maven {
     url "http://example.com"
     credentials {
       username = "user"
       password = "pwd"
     }
     authentication {
       basic(BasicAuthentication)
     }
   }
 }
Comments
Post Details
Added on Mar 31 2023
3 comments
292 views