Consolidate data access control backoffice updates
This commit is contained in:
43
pom.xml
43
pom.xml
@@ -19,10 +19,12 @@
|
||||
<relativePath/>
|
||||
</parent>
|
||||
|
||||
<properties>
|
||||
<java.version>21</java.version>
|
||||
<mybatis-spring-boot.version>3.0.4</mybatis-spring-boot.version>
|
||||
<oracle.jdbc.version>23.6.0.24.10</oracle.jdbc.version>
|
||||
<properties>
|
||||
<java.version>21</java.version>
|
||||
<mybatis-spring-boot.version>3.0.4</mybatis-spring-boot.version>
|
||||
<oracle.jdbc.version>23.6.0.24.10</oracle.jdbc.version>
|
||||
<!-- GPT-5.5 response/schema support is supplied by the current OCI SDK. -->
|
||||
<oci.sdk.version>3.90.1</oci.sdk.version>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
@@ -57,6 +59,21 @@
|
||||
<artifactId>oraclepki</artifactId>
|
||||
<version>${oracle.jdbc.version}</version>
|
||||
</dependency>
|
||||
<!-- OCI API-key signing for the SQL-script explanation assistant. The
|
||||
private key remains in the configured OCI config file, never in the
|
||||
application environment or Git. -->
|
||||
<dependency>
|
||||
<groupId>com.oracle.oci.sdk</groupId>
|
||||
<artifactId>oci-java-sdk-generativeaiinference</artifactId>
|
||||
<version>${oci.sdk.version}</version>
|
||||
</dependency>
|
||||
<!-- OCI SDK service modules need exactly one concrete HTTP transport. The
|
||||
Jersey 3 transport is compatible with this Spring Boot 3 application. -->
|
||||
<dependency>
|
||||
<groupId>com.oracle.oci.sdk</groupId>
|
||||
<artifactId>oci-java-sdk-common-httpclient-jersey3</artifactId>
|
||||
<version>${oci.sdk.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
@@ -71,6 +88,24 @@
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<resources>
|
||||
<resource>
|
||||
<directory>src/main/resources</directory>
|
||||
</resource>
|
||||
<!-- Keep the reviewed SQL in sql/adb as the sole Git source, and bundle
|
||||
only the curated read-only viewer set into the deployed JAR. -->
|
||||
<resource>
|
||||
<directory>sql/adb</directory>
|
||||
<targetPath>sql/adb</targetPath>
|
||||
<includes>
|
||||
<include>62_kb_aso_masking_backoffice_metadata.sql</include>
|
||||
<include>63_kb_aso_masking_rule_runtime.sql</include>
|
||||
<include>64_kb_aso_masking_default_column_rules.sql</include>
|
||||
<include>65_kb_select_ai_vpd_query_api.sql</include>
|
||||
<include>66_kb_select_ai_vpd_query_ords.sql</include>
|
||||
</includes>
|
||||
</resource>
|
||||
</resources>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
|
||||
Reference in New Issue
Block a user