Skip to content

Commit 978d9d0

Browse files
authored
feat: add graphql-jpa-query-introspection module (#276)
1 parent caf8d97 commit 978d9d0

40 files changed

+36
-5
lines changed

graphql-jpa-query-dependencies/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,11 @@
7070
<artifactId>graphql-jpa-query-graphiql</artifactId>
7171
<version>${project.version}</version>
7272
</dependency>
73+
<dependency>
74+
<groupId>com.introproventures</groupId>
75+
<artifactId>graphql-jpa-query-introspection</artifactId>
76+
<version>${project.version}</version>
77+
</dependency>
7378
<dependency>
7479
<groupId>joda-time</groupId>
7580
<artifactId>joda-time</artifactId>
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<parent>
6+
<groupId>com.introproventures</groupId>
7+
<artifactId>graphql-jpa-query-build</artifactId>
8+
<version>0.4.12-SNAPSHOT</version>
9+
<relativePath>../graphql-jpa-query-build</relativePath>
10+
</parent>
11+
<artifactId>graphql-jpa-query-introspection</artifactId>
12+
13+
<dependencies>
14+
<dependency>
15+
<groupId>javax.persistence</groupId>
16+
<artifactId>javax.persistence-api</artifactId>
17+
<scope>test</scope>
18+
</dependency>
19+
<dependency>
20+
<groupId>com.introproventures</groupId>
21+
<artifactId>graphql-jpa-query-annotations</artifactId>
22+
<scope>test</scope>
23+
</dependency>
24+
</dependencies>
25+
</project>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)