-
-
Save fedesilva/6478039 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-dontwarn org.jboss.netty.logging.** | |
-dontwarn org.osgi.** | |
-dontwarn javax.servlet.** | |
-dontwarn org.jboss.netty.channel.socket.http.** | |
## Unsafe is there at runtime | |
-dontwarn sun.misc.Unsafe | |
-keep class sun.misc.Unsafe{ | |
*; | |
} | |
## Stuff referenced at runtime | |
-keep public class akka.actor.LocalActorRefProvider { | |
public <init>(...); | |
} | |
-keep public class akka.remote.RemoteActorRefProvider { | |
public <init>(...); | |
} | |
-keep class akka.actor.SerializedActorRef { | |
*; | |
} | |
-keep class akka.remote.netty.NettyRemoteTransport { | |
*; | |
} | |
-keep class akka.serialization.JavaSerializer { | |
*; | |
} | |
-keep class akka.serialization.ProtobufSerializer { | |
*; | |
} | |
-keep class com.google.protobuf.GeneratedMessage { | |
*; | |
} | |
-keep class akka.event.Logging* | |
-keep class akka.event.Logging$LogExt{ | |
*; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment