Skip to content
Snippets Groups Projects
pom.xml 2.5 KiB
Newer Older
  • Learn to ignore specific revisions
  • 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>
    <!--        <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>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>
    
        <distributionManagement>
            <repository>
                <id>os-core</id>
                <url>https://pkgs.dev.azure.com/slb-des-ext-collaboration/_packaging/os-core/maven/v1</url>
            </repository>
        </distributionManagement>
    
    
        <modules>
            <module>indexer-core</module>
            <module>provider/indexer-aws</module>
            <module>provider/indexer-azure</module>
            <module>provider/indexer-gcp</module>
        </modules>
    
    David Diederich's avatar
    David Diederich committed
    
    </project>