Fix shading of META-INF/services in kotlin-compiler-embaddable

This commit is contained in:
Alexey Tsvetkov
2016-06-29 15:10:54 +03:00
parent 9efd50c49c
commit d3461d1519
@@ -111,7 +111,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId> <artifactId>maven-shade-plugin</artifactId>
<version>2.4.1</version> <version>2.4.3</version>
<executions> <executions>
<execution> <execution>
<phase>package</phase> <phase>package</phase>
@@ -184,6 +184,9 @@
<shadedPattern>${kotlin.relocated.package}.javax.inject</shadedPattern> <shadedPattern>${kotlin.relocated.package}.javax.inject</shadedPattern>
</relocation> </relocation>
</relocations> </relocations>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
</transformers>
</configuration> </configuration>
</execution> </execution>
</executions> </executions>