Skip to content

Commit

Permalink
Merge pull request #12194 from deannagarcia/finalPomFixes
Browse files Browse the repository at this point in the history
Add version to intra proto dependencies and add kotlin stdlib dependency
  • Loading branch information
zhangskz committed Mar 10, 2023
2 parents 080e306 + 99ed010 commit 9540135
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
6 changes: 6 additions & 0 deletions java/kotlin-lite/pom_template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@
<dependency>
<groupId>{groupId}</groupId>
<artifactId>protobuf-javalite</artifactId>
<version>{version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>${kotlin.version}</version>
</dependency>
{dependencies}
</dependencies>
Expand Down
6 changes: 6 additions & 0 deletions java/kotlin/pom_template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@
<dependency>
<groupId>{groupId}</groupId>
<artifactId>protobuf-java</artifactId>
<version>{version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>${kotlin.version}</version>
</dependency>
{dependencies}
</dependencies>
Expand Down
1 change: 1 addition & 0 deletions java/util/pom_template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
<dependency>
<groupId>{groupId}</groupId>
<artifactId>protobuf-java</artifactId>
<version>{version}</version>
</dependency>
{dependencies}
</dependencies>
Expand Down

0 comments on commit 9540135

Please sign in to comment.