Skip to content

Commit 9540135

Browse files
authored
Merge pull request #12194 from deannagarcia/finalPomFixes
Add version to intra proto dependencies and add kotlin stdlib dependency
2 parents 080e306 + 99ed010 commit 9540135

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

java/kotlin-lite/pom_template.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@
1919
<dependency>
2020
<groupId>{groupId}</groupId>
2121
<artifactId>protobuf-javalite</artifactId>
22+
<version>{version}</version>
23+
</dependency>
24+
<dependency>
25+
<groupId>org.jetbrains.kotlin</groupId>
26+
<artifactId>kotlin-stdlib</artifactId>
27+
<version>${kotlin.version}</version>
2228
</dependency>
2329
{dependencies}
2430
</dependencies>

java/kotlin/pom_template.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@
1919
<dependency>
2020
<groupId>{groupId}</groupId>
2121
<artifactId>protobuf-java</artifactId>
22+
<version>{version}</version>
23+
</dependency>
24+
<dependency>
25+
<groupId>org.jetbrains.kotlin</groupId>
26+
<artifactId>kotlin-stdlib</artifactId>
27+
<version>${kotlin.version}</version>
2228
</dependency>
2329
{dependencies}
2430
</dependencies>

java/util/pom_template.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
<dependency>
1717
<groupId>{groupId}</groupId>
1818
<artifactId>protobuf-java</artifactId>
19+
<version>{version}</version>
1920
</dependency>
2021
{dependencies}
2122
</dependencies>

0 commit comments

Comments
 (0)