Skip to content
Snippets Groups Projects
pom.xml 6.77 KiB
Newer Older
  • Learn to ignore specific revisions
  • Riabokon Stanislav(EPAM)[GCP]'s avatar
    Riabokon Stanislav(EPAM)[GCP] committed
    <?xml version="1.0" encoding="UTF-8"?>
    <!--
      ~ Copyright 2020 Google LLC
      ~ Copyright 2020 EPAM Systems, Inc
      ~
      ~ 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
      ~
      ~     https://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 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">
    
    Riabokon Stanislav(EPAM)[GCP]'s avatar
    Riabokon Stanislav(EPAM)[GCP] committed
        <modelVersion>4.0.0</modelVersion>
    
        <parent>
            <groupId>org.opengroup.osdu.indexer</groupId>
            <artifactId>indexer-service</artifactId>
    
            <version>0.14.0-SNAPSHOT</version>
    
    Riabokon Stanislav(EPAM)[GCP]'s avatar
    Riabokon Stanislav(EPAM)[GCP] committed
            <relativePath>../../pom.xml</relativePath>
        </parent>
    
        <artifactId>indexer-reference</artifactId>
    
        <version>0.14.0-SNAPSHOT</version>
    
    Riabokon Stanislav(EPAM)[GCP]'s avatar
    Riabokon Stanislav(EPAM)[GCP] committed
        <name>indexer-reference</name>
        <description>Indexer Service GCP Anthos</description>
        <packaging>jar</packaging>
    
        <dependencies>
            <dependency>
                <groupId>org.opengroup.osdu.indexer</groupId>
                <artifactId>indexer-core</artifactId>
    
                <version>0.14.0-SNAPSHOT</version>
    
    Riabokon Stanislav(EPAM)[GCP]'s avatar
    Riabokon Stanislav(EPAM)[GCP] committed
            </dependency>
    
            <dependency>
                <groupId>org.opengroup.osdu</groupId>
                <artifactId>core-lib-gcp</artifactId>
    
                <version>0.10.0</version>
    
    Riabokon Stanislav(EPAM)[GCP]'s avatar
    Riabokon Stanislav(EPAM)[GCP] committed
            </dependency>
    
            <dependency>
                <groupId>org.opengroup.osdu</groupId>
                <artifactId>os-core-common</artifactId>
    
                <version>${os-core-common.version}</version>
    
    Riabokon Stanislav(EPAM)[GCP]'s avatar
    Riabokon Stanislav(EPAM)[GCP] committed
            </dependency>
    
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-data-mongodb</artifactId>
            </dependency>
    
            <dependency>
                <groupId>com.google.cloud</groupId>
                <artifactId>google-cloud-logging</artifactId>
                <version>1.72.0</version>
            </dependency>
            <dependency>
                <groupId>com.google.apis</groupId>
                <artifactId>google-api-services-storage</artifactId>
                <version>v1-rev150-1.25.0</version>
                <exclusions>
                    <exclusion>
                        <groupId>com.google.guava</groupId>
                        <artifactId>guava-jdk5</artifactId>
                    </exclusion>
                </exclusions>
            </dependency>
            <dependency>
                <groupId>com.google.apis</groupId>
                <artifactId>google-api-services-cloudkms</artifactId>
                <version>v1-rev81-1.25.0</version>
            </dependency>
    
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-amqp</artifactId>
            </dependency>
            <dependency>
                <groupId>org.elasticsearch</groupId>
                <artifactId>elasticsearch</artifactId>
            </dependency>
            <dependency>
                <groupId>org.elasticsearch.client</groupId>
                <artifactId>elasticsearch-rest-client</artifactId>
            </dependency>
            <dependency>
                <groupId>org.elasticsearch.client</groupId>
                <artifactId>elasticsearch-rest-high-level-client</artifactId>
            </dependency>
    
            <!-- Test Dependencies -->
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-test</artifactId>
                <scope>test</scope>
            </dependency>
            <dependency>
                <groupId>org.springframework.security</groupId>
                <artifactId>spring-security-test</artifactId>
                <scope>test</scope>
            </dependency>
    
            <!-- Test Dependencies -->
            <dependency>
                <groupId>junit</groupId>
                <artifactId>junit</artifactId>
                <version>4.12</version>
                <scope>test</scope>
            </dependency>
            <!-- https://mvnrepository.com/artifact/org.powermock/powermock-api-mockito2 -->
            <dependency>
                <groupId>org.powermock</groupId>
                <artifactId>powermock-api-mockito2</artifactId>
                <version>2.0.2</version>
                <scope>test</scope>
            </dependency>
            <!-- https://mvnrepository.com/artifact/org.powermock/powermock-module-junit4 -->
            <dependency>
                <groupId>org.powermock</groupId>
                <artifactId>powermock-module-junit4</artifactId>
                <version>2.0.2</version>
                <scope>test</scope>
            </dependency>
            <dependency>
                <groupId>org.mockito</groupId>
                <artifactId>mockito-core</artifactId>
    
    Riabokon Stanislav(EPAM)[GCP]'s avatar
    Riabokon Stanislav(EPAM)[GCP] committed
                <scope>test</scope>
            </dependency>
            <dependency>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>cobertura-maven-plugin</artifactId>
                <version>2.7</version>
                <scope>test</scope>
            </dependency>
    
            <dependency>
                <groupId>com.auth0</groupId>
                <artifactId>java-jwt</artifactId>
                <version>3.8.1</version>
            </dependency>
    
            <!-- https://mvnrepository.com/artifact/com.github.stefanbirkner/system-rules -->
            <dependency>
                <groupId>com.github.stefanbirkner</groupId>
                <artifactId>system-rules</artifactId>
                <version>1.2.0</version>
                <scope>test</scope>
            </dependency>
            <dependency>
                <groupId>com.google.api.grpc</groupId>
                <artifactId>proto-google-iam-v1</artifactId>
                <version>0.12.0</version>
            </dependency>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-actuator-autoconfigure</artifactId>
            </dependency>
        </dependencies>
    
        <build>
            <plugins>
                <plugin>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-maven-plugin</artifactId>
                    <executions>
                        <execution>
                            <goals>
                                <goal>repackage</goal>
                            </goals>
                            <configuration>
                                <classifier>spring-boot</classifier>
                                <mainClass>
                                    org.opengroup.osdu.indexer.IndexerAnthosApplication
                                </mainClass>
                            </configuration>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </build>
    
    
    </project>