Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Please follow the steps below in order to make the changes:

```shell script
# This will install the library (including your recent changes) in your local maven repository.
./gradlew clean install
./gradlew clean build publishToMavenLocal
```

4. Build the plugin project with updated `graphql-java-codegen` library.
Expand All @@ -43,7 +43,7 @@ Please follow the steps below in order to make the changes:
```shell script
# Install Gradle plugin
cd plugins/graphql-java-codegen-gradle-plugin/graphql-codegen-gradle-plugin
./gradlew clean install
./gradlew clean build publishToMavenLocal

# Install Maven plugin
cd plugins/graphql-java-codegen-maven-plugin
Expand Down
Binary file not shown.

This file was deleted.

2 changes: 1 addition & 1 deletion plugins/graphql-java-codegen-gradle-plugin/gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ case "`uname`" in
;;
esac

CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
CLASSPATH=$APP_HOME/../../gradle/wrapper/gradle-wrapper.jar

# Determine the Java command to use to start the JVM.
if [ -n "$JAVA_HOME" ] ; then
Expand Down
2 changes: 1 addition & 1 deletion plugins/graphql-java-codegen-gradle-plugin/gradlew.bat
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ set CMD_LINE_ARGS=%*
:execute
@rem Setup the command line

set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
set CLASSPATH=%APP_HOME%\..\..\gradle\wrapper\gradle-wrapper.jar

@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ public void setCustomAnnotationsMapping(Map<String, String> customAnnotationsMap

@Input
@Optional
public boolean getGenerateEqualsAndHashCode() {
public Boolean getGenerateEqualsAndHashCode() {
return generateEqualsAndHashCode;
}

Expand Down