77 lines
2.5 KiB
XML
77 lines
2.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>3.3.8</version>
|
|
<relativePath/>
|
|
</parent>
|
|
|
|
<groupId>com.cloudhandson</groupId>
|
|
<artifactId>dds-permission-backoffice</artifactId>
|
|
<version>0.1.0-SNAPSHOT</version>
|
|
<name>dds-permission-backoffice</name>
|
|
<description>Dedicated Deep Data Security permission comparison console</description>
|
|
|
|
<properties>
|
|
<java.version>21</java.version>
|
|
<!-- 23.26 adds the Deep Data Security EndUserSecurityContext JDBC API. -->
|
|
<oracle.jdbc.version>23.26.2.0.0</oracle.jdbc.version>
|
|
<oracle.pki.version>23.6.0.24.10</oracle.pki.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.cloudhandson</groupId>
|
|
<artifactId>vpd-permission-backoffice</artifactId>
|
|
<version>0.1.0-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.oracle.database.jdbc</groupId>
|
|
<artifactId>ojdbc11</artifactId>
|
|
<version>${oracle.jdbc.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.oracle.database.security</groupId>
|
|
<artifactId>oraclepki</artifactId>
|
|
<version>${oracle.pki.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.security</groupId>
|
|
<artifactId>spring-security-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|