mkarg commented on a change in pull request #17: [MSHADE-313] - Keep Services
URL: https://github.com/apache/maven-shade-plugin/pull/17#discussion_r271492864
##########
File path:
src/main/java/org/apache/maven/plugins/shade/filter/MinijarFilter.java
##########
@@ -138,13 +140,19 @@ private void removeServices( final MavenProject project,
final Clazzpath cp )
}
try ( final BufferedReader bufferedReader =
- new BufferedReader( new InputStreamReader(
jar.getInputStream( jarEntry ) ) ) )
+ new BufferedReader( new InputStreamReader(
jar.getInputStream( jarEntry ), UTF_8 ) ) )
{
for ( String className =
bufferedReader.readLine(); className != null;
className = bufferedReader.readLine() )
{
- log.info( className + " was not removed because
it is a service" );
- removeClass( cp , className );
+ className = className.split( "#", 2
)[0].trim();
Review comment:
I will do that, but it will need a while -- have to find a small service JAR
on Maven Central that actually contains such a line.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services