qon-graphql
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.bitbucket.tbrugz</groupId> <artifactId>qon-graphql</artifactId> <version>0.9</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.bitbucket.tbrugz</groupId> <artifactId>queryon</artifactId> <version>0.9</version> </parent> <artifactId>qon-graphql</artifactId> <packaging>jar</packaging> <version>0.9</version> <name>${project.artifactId}</name> <properties> <!-- release: maven-compiler 3.6.0+ required --> <!-- <maven.compiler.release>8</maven.compiler.release> --> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <maven-enforcer-plugin.requireJavaVersion>1.8</maven-enforcer-plugin.requireJavaVersion> </properties> <build> <plugins> <!-- <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> </plugin> --> <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.3</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> --> </plugins> </build> <dependencies> <dependency> <groupId>org.bitbucket.tbrugz</groupId> <artifactId>qon-core</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>com.graphql-java</groupId> <artifactId>graphql-java</artifactId> <version>19.11</version> </dependency> <!-- <dependency> <groupId>com.graphql-java</groupId> <artifactId>graphql-java-servlet</artifactId> <version>5.0.1</version> </dependency> --> <!-- <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> <!-- because of qon-soap: com.sun.xml.ws:jaxws-ri:pom:2.3.2 --> <dependency> <groupId>jakarta.activation</groupId> <artifactId>jakarta.activation-api</artifactId> <version>1.2.1</version> </dependency> <!--<dependency> <groupId>com.sun.activation</groupId> <artifactId>javax.activation</artifactId> <version>1.2.0</version> </dependency>--> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>${servlet-api.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-core</artifactId> <version>${shiro.version}</version> <scope>compile</scope> </dependency> </dependencies> </project>