Shade kotlin-runtime into kotlin-stdlib

This commit is contained in:
Ilya Gorbunov
2017-01-19 23:09:49 +03:00
parent 8e9bbe276c
commit 7ccaa77c5b
+32
View File
@@ -69,6 +69,38 @@
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.3</version>
<configuration>
<artifactSet>
<includes>
<include>org.jetbrains.kotlin:kotlin-runtime</include>
</includes>
</artifactSet>
<filters>
<filter>
<artifact>org.jetbrains.kotlin:kotlin-runtime</artifact>
<excludes>
<exclude>META-INF/maven/**</exclude>
</excludes>
</filter>
</filters>
<promoteTransitiveDependencies>true</promoteTransitiveDependencies>
<dependencyReducedPomLocation>${basedir}/target/dependency-reduced-pom.xml</dependencyReducedPomLocation>
<createSourcesJar>true</createSourcesJar>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>