-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add required reflection/resource metadata for native image gene…
…ration
- Loading branch information
Utku Aydin
committed
Dec 18, 2024
1 parent
7184dad
commit 3ad3545
Showing
30 changed files
with
2,877 additions
and
0 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
...esources/META-INF/native-image/org.apache.pekko/pekko-actor-typed/native-image.properties
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Args = --enable-monitoring=jfr |
105 changes: 105 additions & 0 deletions
105
...in/resources/META-INF/native-image/org.apache.pekko/pekko-actor-typed/reflect-config.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
[ | ||
{ | ||
"name": "org.apache.pekko.actor.typed.internal.adapter.ActorSystemAdapter$LoadTypedExtensions$", | ||
"fields": [ | ||
{ | ||
"name": "MODULE$" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "org.apache.pekko.actor.typed.internal.receptionist.LocalReceptionist$", | ||
"fields": [ | ||
{ | ||
"name": "MODULE$" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "org.apache.pekko.actor.typed.internal.adapter.ActorSystemAdapter$AdapterExtension$", | ||
"fields": [ | ||
{ | ||
"name": "MODULE$" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "org.apache.pekko.actor.typed.internal.adapter.ActorSystemAdapter$LoadTypedExtensions$", | ||
"fields": [ | ||
{ | ||
"name": "MODULE$" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "org.apache.pekko.actor.typed.internal.adapter.AdapterExtension$", | ||
"fields": [ | ||
{ | ||
"name": "MODULE$" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "org.apache.pekko.actor.typed.internal.MiscMessageSerializer", | ||
"methods": [ | ||
{ | ||
"name": "<init>", | ||
"parameterTypes": [ | ||
"org.apache.pekko.actor.ExtendedActorSystem" | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "org.apache.pekko.actor.typed.internal.receptionist.ServiceKeySerializer", | ||
"methods": [ | ||
{ | ||
"name": "<init>", | ||
"parameterTypes": [ | ||
"org.apache.pekko.actor.ExtendedActorSystem" | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "org.apache.pekko.actor.typed.ActorRef" | ||
}, | ||
{ | ||
"name": "org.apache.pekko.actor.typed.internal.adapter.ActorRefAdapter" | ||
}, | ||
{ | ||
"name": "org.apache.pekko.actor.typed.internal.receptionist.DefaultServiceKey" | ||
}, | ||
{ | ||
"name": "org.apache.pekko.actor.typed.ActorRefResolver$", | ||
"fields": [ | ||
{ | ||
"name": "MODULE$" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "org.apache.pekko.actor.typed.internal.EventStreamExtension$", | ||
"fields": [ | ||
{ | ||
"name": "MODULE$" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "org.apache.pekko.actor.typed.pubsub.PubSub$", | ||
"fields": [ | ||
{ | ||
"name": "MODULE$" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "org.apache.pekko.actor.typed.receptionist.Receptionist$", | ||
"fields": [ | ||
{ | ||
"name": "MODULE$" | ||
} | ||
] | ||
} | ||
] |
8 changes: 8 additions & 0 deletions
8
actor/src/main/resources/META-INF/native-image/com.typesafe/config/resource-config.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"resources":{ | ||
"includes":[{ | ||
"pattern":".*\\.conf" | ||
}] | ||
}, | ||
"bundles":[] | ||
} |
Oops, something went wrong.