19 lines
558 B
Java
19 lines
558 B
Java
import org.graalvm.nativeimage.Platform;
|
|
import org.graalvm.nativeimage.Platforms;
|
|
import com.oracle.svm.core.annotate.TargetClass;
|
|
import com.oracle.svm.core.annotate.Delete;
|
|
|
|
public final class CutOffCoreServicesDependencies {
|
|
}
|
|
|
|
// @Platforms(Platform.DARWIN.class)
|
|
// @TargetClass(className = "sun.net.spi.DefaultProxySelector")
|
|
// @Delete
|
|
// final class Target_sun_net_spi_DefaultProxySelector {
|
|
// }
|
|
|
|
@Platforms(Platform.DARWIN.class)
|
|
@TargetClass(className = "apple.security.KeychainStore")
|
|
@Delete
|
|
final class Target_apple_security_KeychainStore {
|
|
}
|