|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- Copyright (c) 2024, Oracle and/or its affiliates. --> |
| 3 | +<!-- Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. --> |
| 4 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 5 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 6 | + <modelVersion>4.0.0</modelVersion> |
| 7 | + <parent> |
| 8 | + <artifactId>oracle-spring-boot-starter-samples</artifactId> |
| 9 | + <groupId>com.oracle.database.spring</groupId> |
| 10 | + <version>24.3.0</version> |
| 11 | + <relativePath>../pom.xml</relativePath> |
| 12 | + </parent> |
| 13 | + |
| 14 | + <artifactId>oracle-spring-boot-sample-wallet</artifactId> |
| 15 | + <version>24.3.0</version> |
| 16 | + |
| 17 | + <name>Oracle Spring Boot Starter - UCP using a Wallet</name> |
| 18 | + <description>oracle-spring-boot-starter-samples-ucp-wallet</description> |
| 19 | + |
| 20 | + <organization> |
| 21 | + <name>Oracle America, Inc.</name> |
| 22 | + <url>https://www.oracle.com</url> |
| 23 | + </organization> |
| 24 | + |
| 25 | + <developers> |
| 26 | + <developer> |
| 27 | + <name>Oracle</name> |
| 28 | + <email>obaas_ww at oracle.com</email> |
| 29 | + <organization>Oracle America, Inc.</organization> |
| 30 | + <organizationUrl>https://www.oracle.com</organizationUrl> |
| 31 | + </developer> |
| 32 | + </developers> |
| 33 | + |
| 34 | + <licenses> |
| 35 | + <license> |
| 36 | + <name>The Universal Permissive License (UPL), Version 1.0</name> |
| 37 | + <url>https://oss.oracle.com/licenses/upl/</url> |
| 38 | + <distribution>repo</distribution> |
| 39 | + </license> |
| 40 | + </licenses> |
| 41 | + |
| 42 | + <scm> |
| 43 | + <url>https://github.com/oracle/spring-cloud-oracle</url> |
| 44 | + <connection>scm:git:https://github.com/oracle/spring-cloud-oracle.git</connection> |
| 45 | + < developerConnection>scm:git: [email protected]:oracle/spring-cloud-oracle.git</ developerConnection> |
| 46 | + </scm> |
| 47 | + |
| 48 | + <dependencies> |
| 49 | + <dependency> |
| 50 | + <groupId>com.oracle.database.spring</groupId> |
| 51 | + <artifactId>oracle-spring-boot-starter-ucp</artifactId> |
| 52 | + <version>${project.version}</version> |
| 53 | + </dependency> |
| 54 | + <dependency> |
| 55 | + <groupId>com.oracle.database.spring</groupId> |
| 56 | + <artifactId>oracle-spring-boot-starter-wallet</artifactId> |
| 57 | + <version>${project.version}</version> |
| 58 | + </dependency> |
| 59 | + <dependency> |
| 60 | + <groupId>org.springframework.boot</groupId> |
| 61 | + <artifactId>spring-boot-starter-jdbc</artifactId> |
| 62 | + </dependency> |
| 63 | + <dependency> |
| 64 | + <groupId>org.springframework.boot</groupId> |
| 65 | + <artifactId>spring-boot-starter</artifactId> |
| 66 | + </dependency> |
| 67 | + </dependencies> |
| 68 | + |
| 69 | + <build> |
| 70 | + <plugins> |
| 71 | + <plugin> |
| 72 | + <groupId>org.springframework.boot</groupId> |
| 73 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 74 | + </plugin> |
| 75 | + </plugins> |
| 76 | + </build> |
| 77 | + |
| 78 | +</project> |
0 commit comments