summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml120
1 files changed, 84 insertions, 36 deletions
diff --git a/pom.xml b/pom.xml
index f4b2ea9..46648ac 100644
--- a/pom.xml
+++ b/pom.xml
@@ -13,20 +13,16 @@
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <nexus.proxy>https://nexus.onap.org</nexus.proxy>
+ <nexus.proxy>https://nexus.onap.org</nexus.proxy>
<staging.profile.id>176c31dfe190a</staging.profile.id>
+ <httpclient.version>4.5.5</httpclient.version>
+ <snakeyaml.version>1.21</snakeyaml.version>
+ <slf4j.version>1.7.25</slf4j.version>
</properties>
<dependencies>
<dependency>
- <groupId>org.openecomp.d2</groupId>
- <artifactId>ui-api-ci</artifactId>
- <version>1.0.1-SNAPSHOT</version>
- </dependency>
-
-
- <dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.8.0</version>
@@ -38,7 +34,82 @@
<artifactId>DCAE-DT-PROPERTY</artifactId>
<version>${project.version}</version>
</dependency>
- </dependencies>
+
+ <!-- Snake Yaml -->
+ <dependency>
+ <groupId>org.yaml</groupId>
+ <artifactId>snakeyaml</artifactId>
+ <version>${snakeyaml.version}</version>
+ <scope>compile</scope>
+ </dependency>
+
+ <!-- http client -->
+ <dependency>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpclient</artifactId>
+ <version>${httpclient.version}</version>
+ <scope>compile</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpmime</artifactId>
+ <version>${httpclient.version}</version>
+ <scope>compile</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>commons-io</groupId>
+ <artifactId>commons-io</artifactId>
+ <version>2.5</version>
+ <scope>compile</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-collections4</artifactId>
+ <version>4.1</version>
+ </dependency>
+
+ <dependency>
+ <groupId>com.google.code.gson</groupId>
+ <artifactId>gson</artifactId>
+ <version>2.8.4</version>
+ </dependency>
+
+ <dependency>
+ <groupId>com.googlecode.json-simple</groupId>
+ <artifactId>json-simple</artifactId>
+ <version>1.1.1</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ <version>${slf4j.version}</version>
+ <scope>compile</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-simple</artifactId>
+ <version>${slf4j.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.testng</groupId>
+ <artifactId>testng</artifactId>
+ <version>6.14.3</version>
+ <scope>compile</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>com.aventstack</groupId>
+ <artifactId>extentreports</artifactId>
+ <version>3.1.5</version>
+ <scope>compile</scope>
+ </dependency>
+
+ </dependencies>
<build>
<plugins>
@@ -56,7 +127,7 @@
<configuration>
<archive>
<manifest>
- <mainClass>com.att.ecomp.dcae.ci.run.RunTestSuite</mainClass>
+ <mainClass>org.onap.dcae.ci.run.RunTestSuite</mainClass>
</manifest>
</archive>
<descriptorRefs>
@@ -66,34 +137,10 @@
</execution>
</executions>
</plugin>
- <!-- Site Plugin -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-site-plugin</artifactId>
- <version>3.4</version>
- <dependencies>
- <dependency>
- <groupId>org.apache.maven.wagon</groupId>
- <artifactId>wagon-webdav-jackrabbit</artifactId>
- <version>2.10</version>
- </dependency>
- </dependencies>
- </plugin>
- <!-- Staging Plugin -->
- <plugin>
- <groupId>org.sonatype.plugins</groupId>
- <artifactId>nexus-staging-maven-plugin</artifactId>
- <version>1.6.7</version>
- <extensions>true</extensions>
- <configuration>
- <nexusUrl>${nexus.proxy}</nexusUrl>
- <stagingProfileId>${staging.profile.id}</stagingProfileId>
- <serverId>ecomp-staging</serverId>
- </configuration>
- </plugin>
</plugins>
</build>
- <repositories>
+
+ <repositories>
<!-- LF repositories -->
<repository>
<id>ecomp-releases</id>
@@ -129,4 +176,5 @@
<url>dav:${nexus.proxy}${sitePath}</url>
</site>
</distributionManagement>
+
</project>