diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7d0bbfe2cf0d446cb3bb2f2530622824c9927a25..9ba08529126ce1d14d5da65bce3b77908cb1eb72 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -17,15 +17,16 @@ Before sending your pull requests, make sure you followed this list: Please follow the steps below in order to make the changes: 1. Clone the repository and open it in your favourite IDE. -2. Make code changes to the core library of `graphql-java-codegen`. -3. If changes are required in the plugin code, then **build** and **install** `graphql-java-codegen` first. +2. Checkout **develop** branch. +3. Make code changes to the core library of `graphql-java-codegen`. +4. If changes are required in the plugin code, then **build** and **install** `graphql-java-codegen` first. ```shell script # This will install the library (including your recent changes) in your local maven repository. ./gradlew clean build publishToMavenLocal ``` -4. Build the plugin project with updated `graphql-java-codegen` library. +5. Build the plugin project with updated `graphql-java-codegen` library. ```shell script # Build Gradle plugin @@ -36,8 +37,8 @@ Please follow the steps below in order to make the changes: mvn clean verify ``` -5. Make changes to the plugin code -6. Install the plugin (copy to your local maven repository). +6. Make changes to the plugin code +7. Install the plugin (copy to your local maven repository). ```shell script # Install Gradle plugin @@ -48,4 +49,4 @@ Please follow the steps below in order to make the changes: mvn clean install ``` -7. Make sure that `example` projects are compiling and running. +8. Make sure that `example` projects are compiling and running.