forked from oracle/spring-cloud-oracle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
125 lines (116 loc) · 4.54 KB
/
Copy pathpom.xml
File metadata and controls
125 lines (116 loc) · 4.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2023, Oracle and/or its affiliates.
Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
-->
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>spring-cloud-oci</artifactId>
<groupId>com.oracle.cloud.spring</groupId>
<version>1.4.5-SNAPSHOT</version>
</parent>
<organization>
<name>Oracle America, Inc.</name>
<url>https://www.oracle.com</url>
</organization>
<developers>
<developer>
<name>Oracle</name>
<email>obaas_ww at oracle.com</email>
<organization>Oracle America, Inc.</organization>
<organizationUrl>https://www.oracle.com</organizationUrl>
</developer>
</developers>
<licenses>
<license>
<name>Oracle Free Use Terms and Conditions (FUTC)</name>
<comments>
https://www.oracle.com/downloads/licenses/oracle-free-license.html
</comments>
</license>
</licenses>
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
<modules>
<module>spring-cloud-oci-common-samples-utils</module>
<module>spring-cloud-oci-storage-sample</module>
<module>spring-cloud-oci-notification-sample</module>
<module>spring-cloud-oci-gen-ai-sample</module>
<module>spring-cloud-oci-logging-sample</module>
<module>spring-cloud-oci-streaming-sample</module>
<module>spring-cloud-oci-vault-sample</module>
<module>spring-cloud-oci-queue-sample</module>
<module>spring-cloud-oci-function-sample</module>
<module>spring-cloud-oci-adb-sample</module>
<module>spring-cloud-oci-email-sample</module>
<module>spring-cloud-oci-nosql-sample</module>
</modules>
<artifactId>spring-cloud-oci-samples</artifactId>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.oracle.cloud.spring.sample.common</groupId>
<artifactId>spring-cloud-oci-common-samples-utils</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.oracle.cloud.spring.sample.common</groupId>
<artifactId>spring-cloud-oci-common-samples-utils</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<!-- Settings for dependency check exclusion for sample modules -->
<!--
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot.version}</version>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>spring-cloud-oci-ci-it</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>