graphql-jpa-query-test-web
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.introproventures</groupId> <artifactId>graphql-jpa-query-test-web</artifactId> <version>1.2.14</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.introproventures</groupId> <artifactId>graphql-jpa-query-tests</artifactId> <version>1.2.14</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>graphql-jpa-query-test-web</artifactId> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> </dependency> <dependency> <groupId>com.introproventures</groupId> <artifactId>graphql-jpa-query-boot-starter</artifactId> </dependency> <dependency> <groupId>com.introproventures</groupId> <artifactId>graphql-jpa-query-web</artifactId> </dependency> <dependency> <groupId>com.introproventures</groupId> <artifactId>graphql-jpa-query-test-model-books</artifactId> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <finalName>${project.artifactId}</finalName> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <goal>repackage</goal> </configuration> </plugin> </plugins> </build> </project>