Skip to content

Commit 0cbdb5b

Browse files
authored
Merge pull request #38 from linked-planet/feature/update_to_platform_6_5
Feature/update to platform 6 5
2 parents ac9a061 + 7cb261b commit 0cbdb5b

File tree

17 files changed

+70
-37
lines changed

17 files changed

+70
-37
lines changed

kotlin-http-client/kotlin-http-client-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<dependency>
1717
<groupId>com.google.code.gson</groupId>
1818
<artifactId>gson</artifactId>
19-
<version>2.10.1</version>
19+
<!-- <version>defined by the platform dependency management </version> -->
2020
<scope>provided</scope>
2121
</dependency>
2222
</dependencies>

kotlin-http-client/kotlin-http-client-atlas/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<dependency>
2323
<groupId>com.google.code.gson</groupId>
2424
<artifactId>gson</artifactId>
25-
<version>2.10.1</version>
25+
<!-- <version>defined by the platform dependency management </version> -->
2626
<scope>provided</scope>
2727
</dependency>
2828

@@ -35,7 +35,7 @@
3535
<dependency>
3636
<groupId>com.atlassian.sal</groupId>
3737
<artifactId>sal-api</artifactId>
38-
<version>4.2.1</version>
38+
<!-- <version> provided by platform dependency management </version> -->
3939
</dependency>
4040
<dependency>
4141
<groupId>org.apache.httpcomponents</groupId>

kotlin-insight-client/kotlin-insight-client-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<dependency>
3232
<groupId>com.google.code.gson</groupId>
3333
<artifactId>gson</artifactId>
34-
<version>2.10.1</version>
34+
<!-- <version>defined by the platform dependency management </version> -->
3535
<scope>provided</scope>
3636
</dependency>
3737
<dependency>

kotlin-insight-client/kotlin-insight-client-http/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<dependency>
1717
<groupId>com.google.code.gson</groupId>
1818
<artifactId>gson</artifactId>
19-
<version>2.10.1</version>
19+
<!-- <version>defined by the platform dependency management </version> -->
2020
<scope>provided</scope>
2121
</dependency>
2222
<dependency>

kotlin-insight-client/kotlin-insight-client-test-applink/pom.xml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,14 +77,14 @@
7777
<dependency>
7878
<groupId>com.atlassian.sal</groupId>
7979
<artifactId>sal-api</artifactId>
80-
<version>4.2.1</version>
80+
<!-- <version> provided by platform dependency management </version> -->
8181
<scope>provided</scope>
8282
</dependency>
8383

8484
<dependency>
8585
<groupId>com.google.code.gson</groupId>
8686
<artifactId>gson</artifactId>
87-
<version>2.10.1</version>
87+
<!-- <version>defined by the platform dependency management </version> -->
8888
</dependency>
8989

9090
<!-- WIRED TEST RUNNER DEPENDENCIES -->
@@ -115,7 +115,7 @@
115115
<plugin>
116116
<groupId>org.apache.maven.plugins</groupId>
117117
<artifactId>maven-resources-plugin</artifactId>
118-
<version>3.1.0</version>
118+
<version>${maven.resources.plugin.version}</version>
119119
</plugin>
120120
<plugin>
121121
<groupId>org.apache.maven.plugins</groupId>
@@ -150,6 +150,9 @@
150150
<artifactId>confluence-maven-plugin</artifactId>
151151
<extensions>true</extensions>
152152
<configuration>
153+
<banningExcludes>
154+
<exclude>com.google.code.gson:gson</exclude>
155+
</banningExcludes>
153156
<productVersion>${confluence.version}</productVersion>
154157
<productDataVersion>${confluence.version}</productDataVersion>
155158
<productDataPath>${maven.multiModuleProjectDirectory}/test-resources/confluence-generated-test-resources.zip

kotlin-insight-client/kotlin-insight-client-test-base/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<dependency>
3636
<groupId>com.google.code.gson</groupId>
3737
<artifactId>gson</artifactId>
38-
<version>2.10.1</version>
38+
<!-- <version>defined by the platform dependency management </version> -->
3939
<scope>provided</scope>
4040
</dependency>
4141

kotlin-insight-client/kotlin-insight-client-test-ktor/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<dependency>
1717
<groupId>com.google.code.gson</groupId>
1818
<artifactId>gson</artifactId>
19-
<version>2.10.1</version>
19+
<!-- <version>defined by the platform dependency management </version> -->
2020
</dependency>
2121
<dependency>
2222
<groupId>com.linked-planet.client</groupId>

kotlin-insight-client/kotlin-insight-client-test-sdk/pom.xml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,13 +104,13 @@
104104
<dependency>
105105
<groupId>com.google.code.gson</groupId>
106106
<artifactId>gson</artifactId>
107-
<version>2.10.1</version>
107+
<!-- <version>defined by the platform dependency management </version> -->
108108
</dependency>
109109

110110
<dependency>
111111
<groupId>com.atlassian.sal</groupId>
112112
<artifactId>sal-api</artifactId>
113-
<version>4.2.1</version>
113+
<!-- <version> provided by platform dependency management </version> -->
114114
<scope>provided</scope>
115115
</dependency>
116116

@@ -165,7 +165,7 @@
165165
<plugin>
166166
<groupId>org.apache.maven.plugins</groupId>
167167
<artifactId>maven-resources-plugin</artifactId>
168-
<version>3.1.0</version>
168+
<version>${maven.resources.plugin.version}</version>
169169
</plugin>
170170
<plugin>
171171
<groupId>org.apache.maven.plugins</groupId>
@@ -199,6 +199,9 @@
199199
<artifactId>jira-maven-plugin</artifactId>
200200
<extensions>true</extensions>
201201
<configuration>
202+
<banningExcludes>
203+
<exclude>com.google.code.gson:gson</exclude>
204+
</banningExcludes>
202205
<productVersion>${jira.version}</productVersion>
203206
<productDataVersion>${jira.version}</productDataVersion>
204207
<productDataPath>${maven.multiModuleProjectDirectory}/test-resources/jira-generated-test-resources.zip

kotlin-jira-client/kotlin-jira-client-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<dependency>
1818
<groupId>com.google.code.gson</groupId>
1919
<artifactId>gson</artifactId>
20-
<version>2.10.1</version>
20+
<!-- <version>defined by the platform dependency management </version> -->
2121
<scope>provided</scope>
2222
</dependency>
2323
<dependency>

kotlin-jira-client/kotlin-jira-client-http/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<dependency>
1818
<groupId>com.google.code.gson</groupId>
1919
<artifactId>gson</artifactId>
20-
<version>2.10.1</version>
20+
<!-- <version>defined by the platform dependency management </version> -->
2121
<scope>provided</scope>
2222
</dependency>
2323
<dependency>

0 commit comments

Comments
 (0)