Newer
Older
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.7.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>org.opengroup.osdu.indexer</groupId>
<artifactId>indexer-service</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<description>Indexer Service</description>
<modules>
<module>indexer-service-aws</module>
<module>indexer-service-root</module>
<!-- <module>indexer-service-gcp</module>-->
<!-- <module>indexer-service-azure</module>-->
<properties>
<java.version>1.8</java.version>
<springfox-version>2.7.0</springfox-version>
<spring-cloud.version>Greenwich.SR2</spring-cloud.version>
<!-- <java.version>1.8</java.version>-->
<!-- <maven.compiler.target>1.8</maven.compiler.target>-->
<!-- <maven.compiler.source>1.8</maven.compiler.source>-->
<!-- <maven.war.plugin>2.6</maven.war.plugin>-->
<!-- <appengine.maven.plugin>1.0.0</appengine.maven.plugin>-->
<!-- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>-->
<!-- <failOnMissingWebXml>false</failOnMissingWebXml>-->
<!-- <spring-cloud.version>Greenwich.SR2</spring-cloud.version>-->
<!-- <springfox-version>2.7.0</springfox-version>-->
</properties>
<repositories>
<repository>
<id>dev-azure-com-slb-des-ext-collaboration-os-core</id>
<url>https://pkgs.dev.azure.com/slb-des-ext-collaboration/_packaging/os-core/maven/v1</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
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
<!-- <profiles>-->
<!-- <profile>-->
<!-- <id>root</id>-->
<!-- <activation>-->
<!-- <!– this profile is active by default –>-->
<!-- <activeByDefault>true</activeByDefault>-->
<!-- </activation>-->
<!-- <modules>-->
<!-- <module>indexer-service-root</module>-->
<!-- </modules>-->
<!-- </profile>-->
<!-- <profile>-->
<!-- <id>aws</id>-->
<!-- <activation>-->
<!-- <property>-->
<!-- <name>vendor</name>-->
<!-- <value>aws</value>-->
<!-- </property>-->
<!-- </activation>-->
<!-- <modules>-->
<!-- <module>indexer-service-aws</module>-->
<!-- </modules>-->
<!-- </profile>-->
<!-- <profile>-->
<!-- <id>gcp</id>-->
<!-- <activation>-->
<!-- <property>-->
<!-- <name>vendor</name>-->
<!-- <value>gcp</value>-->
<!-- </property>-->
<!-- </activation>-->
<!-- <modules>-->
<!-- <module>indexer-service-gcp</module>-->
<!-- </modules>-->
<!-- </profile>-->
<!-- <profile>-->
<!-- <id>azure</id>-->
<!-- <activation>-->
<!-- <property>-->
<!-- <name>vendor</name>-->
<!-- <value>azure</value>-->
<!-- </property>-->
<!-- </activation>-->
<!-- <modules>-->
<!-- <module>indexer-service-azure</module>-->
<!-- </modules>-->
<!-- </profile>-->
<!-- <!– Unit test only –>-->
<!-- <profile>-->
<!-- <id>dev</id>-->
<!-- <properties>-->
<!-- <skip.unit.tests>false</skip.unit.tests>-->
<!-- <skip.integration.tests>true</skip.integration.tests>-->
<!-- </properties>-->
<!-- </profile>-->
<!-- <!– Integration test only –>-->
<!-- <profile>-->
<!-- <id>integration-test</id>-->
<!-- <properties>-->
<!-- <skip.integration.tests>false</skip.integration.tests>-->
<!-- <skip.unit.tests>true</skip.unit.tests>-->
<!-- </properties>-->
<!-- </profile>-->
<!-- <!– Unit and Integration tests combined –>-->
<!-- <profile>-->
<!-- <id>test-all</id>-->
<!-- <properties>-->
<!-- <skip.integration.tests>false</skip.integration.tests>-->
<!-- <skip.unit.tests>false</skip.unit.tests>-->
<!-- </properties>-->
<!-- </profile>-->
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
</dependencies>