Closed hvm2hvm closed 5 years ago
OK, I realised that I have to add this to the pom.xml:
<pluginRepositories>
<pluginRepository>
<id>mulesoft-releases</id>
<name>Mule Release Repository</name>
<url>https://repository-master.mulesoft.org/nexus/content/repositories/releases</url>
</pluginRepository>
</pluginRepositories>
Some explanation about this in the README would help though.
Agree that this can be clarified better in the README.md. Your welcome to phrase a proposed change to improve the documentation either directly here in the ticket or via a PR to the project.
I don't know exactly how to do a PR but the change would be simple: adding this at the end of the readme.md file
Note: you must add the following in the pom as well
```xml
<pluginRepositories>
<pluginRepository>
<id>mulesoft-releases</id>
<name>Mule Release Repository</name>
<url>https://repository-master.mulesoft.org/nexus/content/repositories/releases</url>
</pluginRepository>
</pluginRepositories>
` ` `
(remove the spaces from the last set of back ticks, I couldn't add them otherwise)
Thanks, I've created a pull request with the change.
You can read more about working with forks and the fork and pull development model in this and the following github articles.
Here is also a blog post that takes you through the steps to create a fork, create and push a change to your forked project and then create a PR.
Give it a go and the next contribution will list your name in the commit log :-)
Describe the bug
I get "the POM for org.mule.raml.codegen:raml-client-generator-maven-plugin:jar:0.2 is missing, no dependency information available" when I run maven
To Reproduce I added the following to my pom.xml file (exactly as in the github README):
I also added the repos I found in the pom.xml from the project
in the pom.xml as well as trying 0.2-SNAPSHOT for the plugin version (instead of 0.2). Nothing seems to work.
Expected behavior The plugin gets downloaded and added to project?