Skip to content
Snippets Groups Projects
Commit ec490129 authored by MIchael Nguyen's avatar MIchael Nguyen
Browse files

WIP.

parent 684b7462
No related branches found
No related tags found
1 merge request!6Trusted ibm
...@@ -6,8 +6,6 @@ ...@@ -6,8 +6,6 @@
<groupId>org.opengroup.osdu.indexer</groupId> <groupId>org.opengroup.osdu.indexer</groupId>
<artifactId>indexer-service</artifactId> <artifactId>indexer-service</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent> </parent>
<groupId>org.opengroup.osdu.indexer.aws</groupId> <groupId>org.opengroup.osdu.indexer.aws</groupId>
<artifactId>indexer-service-aws</artifactId> <artifactId>indexer-service-aws</artifactId>
...@@ -99,12 +97,6 @@ ...@@ -99,12 +97,6 @@
<version>1.0.9</version> <version>1.0.9</version>
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
<version>1</version>
<scope>compile</scope>
</dependency>
<dependency> <dependency>
<groupId>javax.inject</groupId> <groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId> <artifactId>javax.inject</artifactId>
...@@ -139,7 +131,7 @@ ...@@ -139,7 +131,7 @@
</goals> </goals>
<configuration> <configuration>
<classifier>spring-boot</classifier> <classifier>spring-boot</classifier>
<mainClass>org.opengroup.osdu.indexer.aws.IndexerAwsApplication</mainClass> <mainClass>org.opengroup.osdu.indexer.IndexerApplication</mainClass>
</configuration> </configuration>
</execution> </execution>
</executions> </executions>
......
...@@ -4,7 +4,6 @@ import com.amazonaws.services.sns.model.MessageAttributeValue; ...@@ -4,7 +4,6 @@ import com.amazonaws.services.sns.model.MessageAttributeValue;
import com.amazonaws.services.sns.model.PublishRequest; import com.amazonaws.services.sns.model.PublishRequest;
import com.google.gson.Gson; import com.google.gson.Gson;
import com.amazonaws.services.sns.AmazonSNS; import com.amazonaws.services.sns.AmazonSNS;
import org.checkerframework.checker.units.qual.C;
import org.opengroup.osdu.core.api.DpsHeaders; import org.opengroup.osdu.core.api.DpsHeaders;
import org.opengroup.osdu.indexer.provider.interfaces.IPublisher; import org.opengroup.osdu.indexer.provider.interfaces.IPublisher;
import org.opengroup.osdu.indexer.util.JobStatus; import org.opengroup.osdu.indexer.util.JobStatus;
......
...@@ -129,7 +129,44 @@ ...@@ -129,7 +129,44 @@
<!-- </properties>--> <!-- </properties>-->
<!-- </profile>--> <!-- </profile>-->
</profiles> </profiles>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<modules> <module>indexer-service-aws</module> <dependency>
</modules> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</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.IndexerApplication</mainClass>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project> </project>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment