Skip to content

Commit

Permalink
feat: added new configuration files
Browse files Browse the repository at this point in the history
  • Loading branch information
maschnetwork committed May 7, 2024
1 parent bd5ed86 commit a310d4d
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,5 @@ log.txt
# docs are updated automatically by .github/workflows/docs.yml
docs/

# graalvm manually generated config files
graalvm-configuration
16 changes: 16 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,22 @@
</plugins>
</build>
</profile>
<profile>
<id>generate-graalvm-files</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.3</version>
<configuration>
<argLine>-agentlib:native-image-agent=config-output-dir=graalvm-configuration -Daws.crt.memory.tracing=2 -Xcheck:jni</argLine>
<forkCount>1</forkCount>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,10 @@
"fields":[{"name":"bytesTransferred"}, {"name":"contentLength"}],
"methods":[{"name":"<init>","parameterTypes":[] }]
},
{
"name":"software.amazon.awssdk.crt.http.HttpProxyOptions$HttpProxyAuthorizationType",
"methods":[{"name":"getValue","parameterTypes":[] }]
},
{
"name":"software.amazon.awssdk.crt.s3.S3MetaRequestResponseHandlerNativeAdapter",
"methods":[{"name":"onFinished","parameterTypes":["int","int","byte[]","int","boolean","java.lang.Throwable","java.nio.ByteBuffer"] }, {"name":"onProgress","parameterTypes":["software.amazon.awssdk.crt.s3.S3MetaRequestProgress"] }, {"name":"onResponseBody","parameterTypes":["byte[]","long","long"] }, {"name":"onResponseHeaders","parameterTypes":["int","java.nio.ByteBuffer"] }]
Expand Down

0 comments on commit a310d4d

Please sign in to comment.