├── .githooks └── commit-msg ├── .github └── workflows │ ├── build.yml │ ├── release.yml │ └── trigger.yml ├── .gitignore ├── CODE_OF_CONDUCT.adoc ├── CONTRIBUTING.adoc ├── COPYING ├── LICENSE ├── README.adoc ├── apollo-client-maven-plugin-tests ├── pom.xml └── src │ ├── main │ ├── graphql │ │ └── books │ │ │ ├── queries │ │ │ ├── GetBooks.graphql │ │ │ └── author │ │ │ │ ├── GetAuthors.graphql │ │ │ │ └── GetGhost.kakah │ │ │ └── schema.json │ └── resources │ │ └── schema.graphqls │ └── test │ └── kotlin │ ├── ApolloClientMavenPluginTest.kt │ ├── OperationManifestTest.kt │ └── Query.kt ├── apollo-client-maven-plugin ├── pom.xml └── src │ └── main │ └── kotlin │ └── com │ └── github │ └── aoudiamoncef │ └── apollo │ └── plugin │ ├── GraphQLClientMojo.kt │ ├── config │ ├── Codegen.kt │ ├── CompilationUnit.kt │ ├── CompilerParams.kt │ ├── Introspection.kt │ ├── ScalarMapping.kt │ └── Service.kt │ └── util │ ├── BuildDirLayout.kt │ ├── ConfigUtils.kt │ ├── GzipRequestInterceptor.kt │ ├── SchemaDownloader.kt │ └── UnsafeOkHttpClient.kt └── pom.xml /.githooks/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/.githooks/commit-msg -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/trigger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/.github/workflows/trigger.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/CODE_OF_CONDUCT.adoc -------------------------------------------------------------------------------- /CONTRIBUTING.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/CONTRIBUTING.adoc -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/README.adoc -------------------------------------------------------------------------------- /apollo-client-maven-plugin-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/apollo-client-maven-plugin-tests/pom.xml -------------------------------------------------------------------------------- /apollo-client-maven-plugin-tests/src/main/graphql/books/queries/GetBooks.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/apollo-client-maven-plugin-tests/src/main/graphql/books/queries/GetBooks.graphql -------------------------------------------------------------------------------- /apollo-client-maven-plugin-tests/src/main/graphql/books/queries/author/GetAuthors.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/apollo-client-maven-plugin-tests/src/main/graphql/books/queries/author/GetAuthors.graphql -------------------------------------------------------------------------------- /apollo-client-maven-plugin-tests/src/main/graphql/books/queries/author/GetGhost.kakah: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/apollo-client-maven-plugin-tests/src/main/graphql/books/queries/author/GetGhost.kakah -------------------------------------------------------------------------------- /apollo-client-maven-plugin-tests/src/main/graphql/books/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/apollo-client-maven-plugin-tests/src/main/graphql/books/schema.json -------------------------------------------------------------------------------- /apollo-client-maven-plugin-tests/src/main/resources/schema.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/apollo-client-maven-plugin-tests/src/main/resources/schema.graphqls -------------------------------------------------------------------------------- /apollo-client-maven-plugin-tests/src/test/kotlin/ApolloClientMavenPluginTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/apollo-client-maven-plugin-tests/src/test/kotlin/ApolloClientMavenPluginTest.kt -------------------------------------------------------------------------------- /apollo-client-maven-plugin-tests/src/test/kotlin/OperationManifestTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/apollo-client-maven-plugin-tests/src/test/kotlin/OperationManifestTest.kt -------------------------------------------------------------------------------- /apollo-client-maven-plugin-tests/src/test/kotlin/Query.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/apollo-client-maven-plugin-tests/src/test/kotlin/Query.kt -------------------------------------------------------------------------------- /apollo-client-maven-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/apollo-client-maven-plugin/pom.xml -------------------------------------------------------------------------------- /apollo-client-maven-plugin/src/main/kotlin/com/github/aoudiamoncef/apollo/plugin/GraphQLClientMojo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/apollo-client-maven-plugin/src/main/kotlin/com/github/aoudiamoncef/apollo/plugin/GraphQLClientMojo.kt -------------------------------------------------------------------------------- /apollo-client-maven-plugin/src/main/kotlin/com/github/aoudiamoncef/apollo/plugin/config/Codegen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/apollo-client-maven-plugin/src/main/kotlin/com/github/aoudiamoncef/apollo/plugin/config/Codegen.kt -------------------------------------------------------------------------------- /apollo-client-maven-plugin/src/main/kotlin/com/github/aoudiamoncef/apollo/plugin/config/CompilationUnit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/apollo-client-maven-plugin/src/main/kotlin/com/github/aoudiamoncef/apollo/plugin/config/CompilationUnit.kt -------------------------------------------------------------------------------- /apollo-client-maven-plugin/src/main/kotlin/com/github/aoudiamoncef/apollo/plugin/config/CompilerParams.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/apollo-client-maven-plugin/src/main/kotlin/com/github/aoudiamoncef/apollo/plugin/config/CompilerParams.kt -------------------------------------------------------------------------------- /apollo-client-maven-plugin/src/main/kotlin/com/github/aoudiamoncef/apollo/plugin/config/Introspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/apollo-client-maven-plugin/src/main/kotlin/com/github/aoudiamoncef/apollo/plugin/config/Introspection.kt -------------------------------------------------------------------------------- /apollo-client-maven-plugin/src/main/kotlin/com/github/aoudiamoncef/apollo/plugin/config/ScalarMapping.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/apollo-client-maven-plugin/src/main/kotlin/com/github/aoudiamoncef/apollo/plugin/config/ScalarMapping.kt -------------------------------------------------------------------------------- /apollo-client-maven-plugin/src/main/kotlin/com/github/aoudiamoncef/apollo/plugin/config/Service.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/apollo-client-maven-plugin/src/main/kotlin/com/github/aoudiamoncef/apollo/plugin/config/Service.kt -------------------------------------------------------------------------------- /apollo-client-maven-plugin/src/main/kotlin/com/github/aoudiamoncef/apollo/plugin/util/BuildDirLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/apollo-client-maven-plugin/src/main/kotlin/com/github/aoudiamoncef/apollo/plugin/util/BuildDirLayout.kt -------------------------------------------------------------------------------- /apollo-client-maven-plugin/src/main/kotlin/com/github/aoudiamoncef/apollo/plugin/util/ConfigUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/apollo-client-maven-plugin/src/main/kotlin/com/github/aoudiamoncef/apollo/plugin/util/ConfigUtils.kt -------------------------------------------------------------------------------- /apollo-client-maven-plugin/src/main/kotlin/com/github/aoudiamoncef/apollo/plugin/util/GzipRequestInterceptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/apollo-client-maven-plugin/src/main/kotlin/com/github/aoudiamoncef/apollo/plugin/util/GzipRequestInterceptor.kt -------------------------------------------------------------------------------- /apollo-client-maven-plugin/src/main/kotlin/com/github/aoudiamoncef/apollo/plugin/util/SchemaDownloader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/apollo-client-maven-plugin/src/main/kotlin/com/github/aoudiamoncef/apollo/plugin/util/SchemaDownloader.kt -------------------------------------------------------------------------------- /apollo-client-maven-plugin/src/main/kotlin/com/github/aoudiamoncef/apollo/plugin/util/UnsafeOkHttpClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/apollo-client-maven-plugin/src/main/kotlin/com/github/aoudiamoncef/apollo/plugin/util/UnsafeOkHttpClient.kt -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoudiamoncef/apollo-client-maven-plugin/HEAD/pom.xml --------------------------------------------------------------------------------