Skip to content
Snippets Groups Projects
pom.xml 2.92 KiB
Newer Older
David Diederich's avatar
David Diederich committed
<?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 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.4-SNAPSHOT</version>
    <description>Indexer Service</description>

    <properties>
        <java.version>1.8</java.version>
        <springfox-version>2.7.0</springfox-version>
        <spring-cloud.version>Greenwich.SR2</spring-cloud.version>
        <os-core-common.version>0.0.18</os-core-common.version>
David Diederich's avatar
David Diederich committed
<!--        <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>

    <licenses>
    	<license>
    		<name>Apache License, Version 2.0</name>
    		<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
    		<distribution>repo</distribution>
    	</license>
    </licenses>

David Diederich's avatar
David Diederich committed
    <repositories>
        <repository>
            <id>${gitlab-server}</id>
            <url>https://community.opengroup.org/api/v4/groups/17/-/packages/maven</url>
David Diederich's avatar
David Diederich committed
        </repository>
    </repositories>

    <distributionManagement>
        <repository>
            <id>${gitlab-server}</id>
            <url>https://community.opengroup.org/api/v4/projects/25/packages/maven</url>
David Diederich's avatar
David Diederich committed
        </repository>
        <snapshotRepository>
            <id>${gitlab-server}</id>
            <url>https://community.opengroup.org/api/v4/projects/25/packages/maven</url>
        </snapshotRepository>
David Diederich's avatar
David Diederich committed
    </distributionManagement>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.opengroup.osdu</groupId>
                <artifactId>os-core-common</artifactId>
                <version>${os-core-common.version}</version>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <modules>
        <module>indexer-core</module>
        <module>provider/indexer-aws</module>
        <module>provider/indexer-azure</module>
        <module>provider/indexer-gcp</module>
ethiraj krishnamanaidu's avatar
ethiraj krishnamanaidu committed
        <module>provider/indexer-ibm</module>
    </modules>
David Diederich's avatar
David Diederich committed

</project>