Skip to content

Commit acec328

Browse files
authored
fix: fix kotlin code generation (#120)
1 parent 9719c15 commit acec328

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

pom.xml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<groupId>io.github.deweyjose</groupId>
77
<artifactId>graphqlcodegen-maven-plugin</artifactId>
88
<packaging>maven-plugin</packaging>
9-
<version>1.51.1</version>
9+
<version>1.51.2</version>
1010

1111
<name>GraphQL Code Generator</name>
1212
<description>Maven port of the Netflix DGS GraphQL Codegen gradle build plugin</description>
@@ -50,10 +50,16 @@
5050
<maven-scm-provider-gitexe.version>1.11.2</maven-scm-provider-gitexe.version>
5151
<nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version>
5252
<junit.version>5.10.1</junit.version>
53-
<lombok.version>1.18.30</lombok.version>
53+
<lombok.version>1.18.30</lombok.version>
54+
<kotlinpoet-jvm.version>1.15.3</kotlinpoet-jvm.version>
5455
</properties>
5556

5657
<dependencies>
58+
<dependency>
59+
<groupId>com.squareup</groupId>
60+
<artifactId>kotlinpoet-jvm</artifactId>
61+
<version>${kotlinpoet-jvm.version}</version>
62+
</dependency>
5763
<dependency>
5864
<groupId>org.apache.maven</groupId>
5965
<artifactId>maven-plugin-api</artifactId>

0 commit comments

Comments
 (0)