Skip to content

Commit

Permalink
Merge pull request #432 from kaneeldias/graalvm
Browse files Browse the repository at this point in the history
Add native-image build configurations
  • Loading branch information
kaneeldias authored Oct 17, 2022
2 parents d515d3a + 11f67e6 commit 6dcd20a
Show file tree
Hide file tree
Showing 5 changed files with 128 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ballerina/Ballerina.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ path = "../native/build/libs/oracledb-native-1.6.0-SNAPSHOT.jar"
groupId = "io.ballerina.stdlib"
artifactId = "sql-native"
version = "1.6.0"
path = "./lib/sql-native-1.6.0-20221014-221200-0061889.jar"
path = "./lib/sql-native-1.6.0-20221017-111500-2844cd5.jar"

[[platform.java11.dependency]]
path = "./lib/ojdbc8-12.2.0.1.jar"
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ballerinaGradlePluginVersion=0.15.0

ballerinaLangVersion=2201.3.0-20221014-074800-bbf5f7a2

stdlibSqlVersion=1.6.0-20221014-221200-0061889
stdlibSqlVersion=1.6.0-20221017-111500-2844cd5

# Direct Dependencies
# Level 01
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
[
{
"name": "oracle.jdbc.OracleDriver"
},
{
"name": "oracle.jdbc.driver.T4CDriverExtension",
"methods": [
{
"name": "<init>",
"parameterTypes": []
}
]
},
{
"name": "oracle.jdbc.pool.OracleDataSource",
"queryAllPublicMethods": true,
"methods": [
{
"name": "<init>",
"parameterTypes": []
},
{
"name": "setConnectionProperties",
"parameterTypes": [
"java.util.Properties"
]
},
{
"name": "setLoginTimeout",
"parameterTypes": [
"int"
]
},
{
"name": "setPassword",
"parameterTypes": [
"java.lang.String"
]
},
{
"name": "setURL",
"parameterTypes": [
"java.lang.String"
]
},
{
"name": "setUser",
"parameterTypes": [
"java.lang.String"
]
}
]
},
{
"name": "oracle.net.ano.Ano",
"methods": [
{
"name": "<init>",
"parameterTypes": []
}
]
},
{
"name": "oracle.net.ano.AuthenticationService",
"methods": [
{
"name": "<init>",
"parameterTypes": []
}
]
},
{
"name": "oracle.net.ano.DataIntegrityService",
"methods": [
{
"name": "<init>",
"parameterTypes": []
}
]
},
{
"name": "oracle.net.ano.EncryptionService",
"methods": [
{
"name": "<init>",
"parameterTypes": []
}
]
},
{
"name": "oracle.net.ano.SupervisorService",
"methods": [
{
"name": "<init>",
"parameterTypes": []
}
]
}
]
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"resources": {
"includes": [
{
"pattern": "\\Qoracle/sql/converter_xcharset/lx20002.glb\\E"
}
]
},
"bundles": [
{
"name": "oracle.net.mesg.Message",
"locales": [
""
]
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"types": [
{
"name": "oracle.sql.converter.CharacterConverter1Byte"
},
{
"name": "oracle.sql.converter.CharacterConverterJDBC"
}
]
}

0 comments on commit 6dcd20a

Please sign in to comment.