Skip to content
Snippets Groups Projects
pom.xml 5.46 KiB
Newer Older
  • Learn to ignore specific revisions
  • MIchael Nguyen's avatar
    MIchael Nguyen committed
    <?xml version="1.0"?>
    <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>
      <parent>
        <groupId>org.opengroup.osdu.indexer</groupId>
    
    MIchael Nguyen's avatar
    MIchael Nguyen committed
        <artifactId>indexer-service</artifactId>
    
    Barclay Walsh's avatar
    Barclay Walsh committed
        <version>1.0.0</version>
        <relativePath>../../pom.xml</relativePath>
    
    MIchael Nguyen's avatar
    MIchael Nguyen committed
      </parent>
      <groupId>org.opengroup.osdu.indexer.aws</groupId>
    
    Barclay Walsh's avatar
    Barclay Walsh committed
      <artifactId>indexer-aws</artifactId>
    
    MIchael Nguyen's avatar
    MIchael Nguyen committed
      <version>1.0-SNAPSHOT</version>
    
    Barclay Walsh's avatar
    Barclay Walsh committed
      <name>indexer-aws</name>
    
        <packaging>jar</packaging>
    
    
        <dependencies>
    
          <dependency>
              <groupId>org.opengroup.osdu.indexer</groupId>
    
    MIchael Nguyen's avatar
    MIchael Nguyen committed
              <artifactId>indexer-core</artifactId>
              <version>1.0.0</version>
    
    MIchael Nguyen's avatar
    MIchael Nguyen committed
          <dependency>
              <groupId>com.amazonaws</groupId>
              <artifactId>aws-java-sdk-core</artifactId>
              <version>1.11.651</version>
          </dependency>
    
    MIchael Nguyen's avatar
    MIchael Nguyen committed
          <dependency>
              <groupId>com.amazonaws</groupId>
              <artifactId>aws-request-signing-apache-interceptor</artifactId>
              <version>1.0-SNAPSHOT</version>
          </dependency>
    
    MIchael Nguyen's avatar
    MIchael Nguyen committed
          <dependency>
    
    Barclay Walsh's avatar
    Barclay Walsh committed
              <groupId>org.opengroup.osdu.core.aws</groupId>
    
    MIchael Nguyen's avatar
    MIchael Nguyen committed
              <artifactId>aws-osdu-util</artifactId>
    
    Barclay Walsh's avatar
    Barclay Walsh committed
              <version>0.0.1</version>
    
    MIchael Nguyen's avatar
    MIchael Nguyen committed
          </dependency>
          <dependency>
              <groupId>org.projectlombok</groupId>
              <artifactId>lombok</artifactId>
          </dependency>
    
    MIchael Nguyen's avatar
    MIchael Nguyen committed
          <groupId>com.amazonaws</groupId>
          <artifactId>aws-java-sdk</artifactId>
          <version>1.11.327</version>
    
       </dependency>
        <dependency>
          <groupId>org.springframework.boot</groupId>
          <artifactId>spring-boot-starter-security</artifactId>
        </dependency>
        <dependency>
          <groupId>org.springframework.security.oauth</groupId>
          <artifactId>spring-security-oauth2</artifactId>
          <version>2.3.6.RELEASE</version>
        </dependency>
    
        <dependency>
          <groupId>org.springframework.security</groupId>
          <artifactId>spring-security-jwt</artifactId>
          <version>1.0.10.RELEASE</version>
        </dependency>
        <dependency>
          <groupId>org.springframework.security</groupId>
          <artifactId>spring-security-oauth2-client</artifactId>
        </dependency>
        <dependency>
          <groupId>org.springframework.security</groupId>
          <artifactId>spring-security-oauth2-jose</artifactId>
    
    MIchael Nguyen's avatar
    MIchael Nguyen committed
        </dependency>
        <dependency>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
          <version>3.8.1</version>
          <scope>test</scope>
        </dependency>
        <dependency>
          <groupId>org.mockito</groupId>
          <artifactId>mockito-all</artifactId>
          <version>1.10.19</version>
          <scope>test</scope>
        </dependency>
        <dependency>
          <groupId>org.powermock</groupId>
          <artifactId>powermock-module-junit4</artifactId>
          <version>2.0.2</version>
        </dependency>
        <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>
        <dependency>
          <groupId>org.springframework.data</groupId>
          <artifactId>spring-data-commons</artifactId>
          <version>2.1.10.RELEASE</version>
          <scope>compile</scope>
        </dependency>
    
          <dependency>
              <groupId>org.apache.lucene</groupId>
              <artifactId>lucene-core</artifactId>
              <version>7.6.0</version>
              <scope>compile</scope>
          </dependency>
    
    MIchael Nguyen's avatar
    MIchael Nguyen committed
          <dependency>
    
    Wyatt Nielsen's avatar
    Wyatt Nielsen committed
              <groupId>org.opengroup.osdu</groupId>
              <artifactId>core-lib</artifactId>
              <version>0.1.1</version>
              <scope>compile</scope>
          </dependency>
        <dependency>
          <groupId>org.opengroup.osdu</groupId>
          <artifactId>indexer-search-core-lib</artifactId>
    
    MIchael Nguyen's avatar
    MIchael Nguyen committed
          <version>1.0.11</version>
    
    Wyatt Nielsen's avatar
    Wyatt Nielsen committed
          <scope>compile</scope>
        </dependency>
        <dependency>
          <groupId>javax.inject</groupId>
          <artifactId>javax.inject</artifactId>
          <version>1</version>
          <scope>compile</scope>
        </dependency>
    
    MIchael Nguyen's avatar
    MIchael Nguyen committed
          <dependency>
              <groupId>org.elasticsearch</groupId>
              <artifactId>elasticsearch</artifactId>
              <version>6.6.2</version>
          </dependency>
          <dependency>
              <groupId>org.elasticsearch.client</groupId>
              <artifactId>elasticsearch-rest-client</artifactId>
              <version>6.6.2</version>
          </dependency>
          <dependency>
              <groupId>org.elasticsearch.client</groupId>
              <artifactId>elasticsearch-rest-high-level-client</artifactId>
              <version>6.6.2</version>
          </dependency>
    
    MIchael Nguyen's avatar
    MIchael Nguyen committed
      </dependencies>
    
    MIchael Nguyen's avatar
    MIchael Nguyen committed
        <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.IndexerApplication</mainClass>
                            </configuration>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </build>
    
    MIchael Nguyen's avatar
    MIchael Nguyen committed
    </project>