Skip to content

Commit 4f4816d

Browse files
Merge pull request #130 from okta/exclude_kotlin_stdlib_dep_from_impl
exclude kotlin stdlib and stdlib-jdk7 from impl
2 parents 60b5a29 + fc06e61 commit 4f4816d

1 file changed

Lines changed: 18 additions & 9 deletions

File tree

impl/pom.xml

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
~ See the License for the specific language governing permissions and
1515
~ limitations under the License.
1616
-->
17-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
17+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
1819

1920
<modelVersion>4.0.0</modelVersion>
2021

@@ -85,14 +86,22 @@
8586
<groupId>com.squareup.okhttp3</groupId>
8687
<artifactId>okhttp</artifactId>
8788
<exclusions>
88-
<exclusion>
89-
<groupId>org.jetbrains.kotlin</groupId>
90-
<artifactId>kotlin-stdlib-jdk8</artifactId>
91-
</exclusion>
92-
<exclusion>
93-
<groupId>org.jetbrains.kotlin</groupId>
94-
<artifactId>kotlin-stdlib-common</artifactId>
95-
</exclusion>
89+
<exclusion>
90+
<groupId>org.jetbrains.kotlin</groupId>
91+
<artifactId>kotlin-stdlib</artifactId>
92+
</exclusion>
93+
<exclusion>
94+
<groupId>org.jetbrains.kotlin</groupId>
95+
<artifactId>kotlin-stdlib-jdk7</artifactId>
96+
</exclusion>
97+
<exclusion>
98+
<groupId>org.jetbrains.kotlin</groupId>
99+
<artifactId>kotlin-stdlib-jdk8</artifactId>
100+
</exclusion>
101+
<exclusion>
102+
<groupId>org.jetbrains.kotlin</groupId>
103+
<artifactId>kotlin-stdlib-common</artifactId>
104+
</exclusion>
96105
</exclusions>
97106
</dependency>
98107

0 commit comments

Comments
 (0)