Skip to content
Snippets Groups Projects
pom.xml 4.46 KiB
Newer Older
  • Learn to ignore specific revisions
  • David Diederich's avatar
    David Diederich committed
    <?xml version="1.0" encoding="UTF-8"?>
    <!--
      Copyright 2017-2020 Schlumberger
    
      Licensed under the Apache License, Version 2.0 (the "License");
      you may not use this file except in compliance with the License.
      You may obtain a copy of the License at
    
           http://www.apache.org/licenses/LICENSE-2.0
    
      Unless required by applicable law or agreed to in writing, software
      distributed under the License is distributed on an "AS IS" BASIS,
      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      See the License for the specific language governing permissions and
      limitations under the License.
    -->
    
    <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
             xmlns="http://maven.apache.org/POM/4.0.0"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <modelVersion>4.0.0</modelVersion>
        <groupId>org.opengroup.osdu</groupId>
        <artifactId>os-register</artifactId>
    
        <version>0.6.0-SNAPSHOT</version>
    
    David Diederich's avatar
    David Diederich committed
        <description>Root Register Service project</description>
    
        <packaging>pom</packaging>
    
        <properties>
            <java.version>1.8</java.version>
            <maven.compiler.target>1.8</maven.compiler.target>
            <maven.compiler.source>1.8</maven.compiler.source>
            <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
            <springfox-version>2.7.0</springfox-version>
    
            <osdu.oscorecommon.version>0.3.23</osdu.oscorecommon.version>
    
    David Diederich's avatar
    David Diederich committed
        </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
        <dependencyManagement>
            <dependencies>
                <dependency>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-dependencies</artifactId>
                    <version>2.1.7.RELEASE</version>
                    <type>pom</type>
                    <scope>import</scope>
                </dependency>
                <dependency>
                    <groupId>org.opengroup.osdu</groupId>
                    <artifactId>os-core-common</artifactId>
    
                    <version>${osdu.oscorecommon.version}</version>
    
    David Diederich's avatar
    David Diederich committed
                </dependency>
            </dependencies>
        </dependencyManagement>
    
        <dependencies>
            <dependency>
                <groupId>org.projectlombok</groupId>
                <artifactId>lombok</artifactId>
                <version>1.18.12</version>
                <scope>provided</scope>
            </dependency>
        </dependencies>
    
        <build>
            <pluginManagement>
                <plugins>
                    <plugin>
                        <groupId>org.springframework.boot</groupId>
                        <artifactId>spring-boot-maven-plugin</artifactId>
                        <version>2.1.9.RELEASE</version>
                    </plugin>
                </plugins>
            </pluginManagement>
        </build>
    
    
        <modules>
            <module>register-core</module>
            <module>provider/register-gcp</module>
    
    Anuj Gupta's avatar
    Anuj Gupta committed
            <module>provider/register-ibm</module>
    
            <module>provider/register-azure</module>
    
            <module>provider/register-aws</module>
    
    David Diederich's avatar
    David Diederich committed
        </modules>
    
    
        <repositories>
            <repository>
                <id>${repo.releases.id}</id>
                <url>${repo.releases.url}</url>
            </repository>
        </repositories>
    
    
    David Diederich's avatar
    David Diederich committed
        <distributionManagement>
            <repository>
    
                <id>${publish.releases.id}</id>
                <url>${publish.releases.url}</url>
    
    David Diederich's avatar
    David Diederich committed
            </repository>
    
                <id>${publish.snapshots.id}</id>
                <url>${publish.snapshots.url}</url>
    
    David Diederich's avatar
    David Diederich committed
        </distributionManagement>
    
    
      <profiles>
        <profile>
          <id>Default</id>
          <activation>
            <property>
              <name>!repo.releases.id</name>
            </property>
          </activation>
          <properties>
            <repo.releases.id>community-maven-repo</repo.releases.id>
            <publish.snapshots.id>community-maven-via-job-token</publish.snapshots.id>
            <publish.releases.id>community-maven-via-job-token</publish.releases.id>
            <repo.releases.url>https://community.opengroup.org/api/v4/groups/17/-/packages/maven</repo.releases.url>
            <publish.snapshots.url>https://community.opengroup.org/api/v4/projects/157/packages/maven</publish.snapshots.url>
            <publish.releases.url>https://community.opengroup.org/api/v4/projects/157/packages/maven</publish.releases.url>
          </properties>
        </profile>
      </profiles>
    
    
    
    David Diederich's avatar
    David Diederich committed
    </project>