-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(java): rename test to be picked up by native profile (#723)
* fix(java): rename test to be picked up by native profile
- Loading branch information
Showing
5 changed files
with
138 additions
and
76 deletions.
There are no files selected for viewing
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
1 change: 1 addition & 0 deletions
1
datastore-v1-proto-client/src/main/resources/META-INF/native-image/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-url-protocols=https,http |
32 changes: 32 additions & 0 deletions
32
datastore-v1-proto-client/src/main/resources/META-INF/native-image/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,32 @@ | ||
[ | ||
{ | ||
"name":"com.google.datastore.v1.client.Datastore", | ||
"methods":[ | ||
{"name":"allocateIds","parameterTypes":["com.google.datastore.v1.AllocateIdsRequest"] }, | ||
{"name":"beginTransaction","parameterTypes":["com.google.datastore.v1.BeginTransactionRequest"] }, | ||
{"name":"commit","parameterTypes":["com.google.datastore.v1.CommitRequest"] }, | ||
{"name":"lookup","parameterTypes":["com.google.datastore.v1.LookupRequest"] }, | ||
{"name":"reserveIds","parameterTypes":["com.google.datastore.v1.ReserveIdsRequest"] }, | ||
{"name":"rollback","parameterTypes":["com.google.datastore.v1.RollbackRequest"] }, | ||
{"name":"runQuery","parameterTypes":["com.google.datastore.v1.RunQueryRequest"] } | ||
] | ||
}, | ||
{ | ||
"name":"com.google.api.client.http.HttpRequest", | ||
"allDeclaredFields":true, | ||
"allPublicFields":true, | ||
"allDeclaredMethods":true, | ||
"allPublicMethods":true, | ||
"allDeclaredConstructors" : true, | ||
"allPublicConstructors" : true | ||
}, | ||
{ | ||
"name":"com.google.api.client.http.HttpHeaders", | ||
"allDeclaredFields":true, | ||
"allPublicFields":true, | ||
"allDeclaredMethods":true, | ||
"allPublicMethods":true, | ||
"allDeclaredConstructors" : true, | ||
"allPublicConstructors" : true | ||
} | ||
] |
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
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