Skip to content
Snippets Groups Projects
pom.xml 5.69 KiB
Newer Older
  • Learn to ignore specific revisions
  • MIchael Nguyen's avatar
    MIchael Nguyen committed
    <?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>
    
    MIchael Nguyen's avatar
    MIchael Nguyen committed
        <modules>
            <module>indexer-service-aws</module>
            <module>indexer-service-root</module>
    
    <!--        <module>indexer-service-gcp</module>-->
    <!--        <module>indexer-service-azure</module>-->
    
    MIchael Nguyen's avatar
    MIchael Nguyen committed
        </modules>
    
    
        <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>
    
    
    MIchael Nguyen's avatar
    MIchael Nguyen committed
    <!--    <profiles>-->
    <!--        <profile>-->
    <!--            <id>root</id>-->
    <!--            <activation>-->
    <!--                &lt;!&ndash; this profile is active by default &ndash;&gt;-->
    <!--                <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>-->
    
    
    <!--        &lt;!&ndash; Unit test only &ndash;&gt;-->
    <!--        <profile>-->
    <!--            <id>dev</id>-->
    <!--            <properties>-->
    <!--                <skip.unit.tests>false</skip.unit.tests>-->
    <!--                <skip.integration.tests>true</skip.integration.tests>-->
    <!--            </properties>-->
    <!--        </profile>-->
    <!--        &lt;!&ndash; Integration test only &ndash;&gt;-->
    <!--        <profile>-->
    <!--            <id>integration-test</id>-->
    <!--            <properties>-->
    <!--                <skip.integration.tests>false</skip.integration.tests>-->
    <!--                <skip.unit.tests>true</skip.unit.tests>-->
    <!--            </properties>-->
    <!--        </profile>-->
    <!--        &lt;!&ndash; Unit and Integration tests combined &ndash;&gt;-->
    <!--        <profile>-->
    <!--            <id>test-all</id>-->
    <!--            <properties>-->
    <!--                <skip.integration.tests>false</skip.integration.tests>-->
    <!--                <skip.unit.tests>false</skip.unit.tests>-->
    <!--            </properties>-->
    <!--        </profile>-->
    
    MIchael Nguyen's avatar
    MIchael Nguyen committed
    <!--    </profiles>-->
    
    MIchael Nguyen's avatar
    MIchael Nguyen committed
        <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>
    
    MIchael Nguyen's avatar
    MIchael Nguyen committed
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-validation</artifactId>
            </dependency>
        </dependencies>
    
    MIchael Nguyen's avatar
    MIchael Nguyen committed
    
    
    MIchael Nguyen's avatar
    MIchael Nguyen committed
    </project>