graphql-java-client-dependencies
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.graphql-java-generator</groupId> <artifactId>graphql-java-client-dependencies</artifactId> <version>2.9</version> </dependency>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.graphql-java-generator</groupId> <artifactId>graphql-maven-plugin-project</artifactId> <version>2.9</version> </parent> <artifactId>graphql-java-client-dependencies</artifactId> <packaging>pom</packaging> <description>This pom module contains the needed dependencies for the code generated by graphql-java-generator, when the plugin is in client mode, and the copyRuntimeSources plugin parameters is set to true</description> <dependencies> <!-- Dependencies within this project --> <dependency> <groupId>com.graphql-java-generator</groupId> <artifactId>graphql-java-common-dependencies</artifactId> <type>pom</type> </dependency> <dependency> <groupId>org.springframework.graphql</groupId> <artifactId>spring-graphql</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-webflux</artifactId> </dependency> <!-- The spring dependencies --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-oauth2-client</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-text</artifactId> </dependency> <!-- When building from the gradle plugin, this next dependency is mandatory for code execution --> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> </dependency> <!-- Avoids this warning (when building in Gradle): unknown enum constant When.MAYBE --> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </dependency> <!-- Other dependencies --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> </dependencies> </project>