blob: 07ffc2e70abc8bd2fc1ab28b5ee62a05674885ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
# **********************************************************************
#
# Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved.
#
# This copy of Ice is licensed to you under the terms described in the
# ICE_LICENSE file included in this distribution.
#
# **********************************************************************
# Preserve all public applications.
-keepclasseswithmembers public class * {
public static void main(java.lang.String[]);
}
# Following options are useful for debugging.
# -printseeds
# -verbose
# Preserve all annotations.
-keepattributes *Annotation*
# Parse non-public libraries to prevent undefined symbol errors on some platforms.
-dontskipnonpubliclibraryclasses
# Preserve all native method names and the names of their classes.
-keepclasseswithmembernames class * {
native <methods>;
}
# Preserve a method that is required in all enumeration classes.
-keepclassmembers class * extends java.lang.Enum {
public **[] values();
}
-dontnote IceInternal.*ObserverI*
-dontnote IceInternal.BasicStream
-dontnote IceInternal.Network
-dontnote IceBox.ServiceManagerI
-dontnote IceGridGUI.Coordinator
-dontnote IceGridGUI.LiveDeployment.MetricsView*
-dontnote com.jgoodies.**
-dontnote com.javafx.**
-dontusemixedcaseclassnames
-dontoptimize
-dontobfuscate
-keepclassmembers class * implements java.io.Serializable {
static final long serialVersionUID;
private void writeObject(java.io.ObjectOutputStream);
private void readObject(java.io.ObjectInputStream);
java.lang.Object writeReplace();
java.lang.Object readResolve();
}
# Your application may contain more items that need to be preserved;
# typically classes that are dynamically created using Class.forName:
-keep,includedescriptorclasses public class Ice.** {
public *;
}
-keep public class IceGrid.** {
public *;
}
-keep public class IceSSL.** {
public *;
}
-keep interface IceGrid.**
-keep class IceMX.**
-keep interface IceMX.**
-keep,includedescriptorclasses class com.jgoodies.looks.plastic.PlasticXPLookAndFeel
-keep,includedescriptorclasses class com.jgoodies.looks.plastic.PlasticFieldCaret
-keep,includedescriptorclasses class com.jgoodies.looks.windows.WindowsFieldCaret
#
# Without this directive, the menus on Windows don't look good
#
-keepclassmembers class com.jgoodies.looks.** {
<methods>;
}
#
# More keeps to suppress Notes
#
-keep,includedescriptorclasses public class * {
public protected *;
}
|