Stone, Avi (as206k) | eaf5706 | 2018-04-12 15:57:26 +0300 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
Stone, Avi (as206k) | a403bf3 | 2018-05-22 13:06:41 +0300 | [diff] [blame] | 4 | <groupId>org.onap.sdc.dcae-d.ci</groupId> |
Stone, Avi (as206k) | eaf5706 | 2018-04-12 15:57:26 +0300 | [diff] [blame] | 5 | <artifactId>dcae-ci-tests</artifactId> |
Stone, Avi (as206k) | ca20625 | 2018-05-10 17:53:15 +0300 | [diff] [blame] | 6 | <version>1.2.0-SNAPSHOT</version> |
Stone, Avi (as206k) | aed7693 | 2018-05-24 14:28:23 +0300 | [diff] [blame] | 7 | <name>dcae-d ci tests</name> |
Stone, Avi (as206k) | eaf5706 | 2018-04-12 15:57:26 +0300 | [diff] [blame] | 8 | <packaging>jar</packaging> |
| 9 | <description>Tests for DCAE Designer </description> |
| 10 | |
| 11 | <properties> |
| 12 | <maven.compiler.source>1.8</maven.compiler.source> |
| 13 | <maven.compiler.target>1.8</maven.compiler.target> |
Stone, Avi (as206k) | ca20625 | 2018-05-10 17:53:15 +0300 | [diff] [blame] | 14 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 15 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
Stone, Avi (as206k) | 7db40ac | 2018-05-21 14:57:57 +0300 | [diff] [blame] | 16 | <nexus.proxy>https://nexus.onap.org</nexus.proxy> |
Stone, Avi (as206k) | ca20625 | 2018-05-10 17:53:15 +0300 | [diff] [blame] | 17 | <staging.profile.id>176c31dfe190a</staging.profile.id> |
Stone, Avi (as206k) | a403bf3 | 2018-05-22 13:06:41 +0300 | [diff] [blame] | 18 | <httpclient.version>4.5.5</httpclient.version> |
| 19 | <snakeyaml.version>1.21</snakeyaml.version> |
| 20 | <slf4j.version>1.7.25</slf4j.version> |
Stone, Avi (as206k) | aed7693 | 2018-05-24 14:28:23 +0300 | [diff] [blame] | 21 | <sonar.branch>${project.version}</sonar.branch> |
Stone, Avi (as206k) | aa17bf4 | 2018-06-07 16:38:16 +0300 | [diff] [blame] | 22 | <sonar.coverage.exclusions>**</sonar.coverage.exclusions> |
Stone, Avi (as206k) | eaf5706 | 2018-04-12 15:57:26 +0300 | [diff] [blame] | 23 | </properties> |
| 24 | |
| 25 | <dependencies> |
| 26 | |
| 27 | <dependency> |
Stone, Avi (as206k) | eaf5706 | 2018-04-12 15:57:26 +0300 | [diff] [blame] | 28 | <groupId>org.assertj</groupId> |
| 29 | <artifactId>assertj-core</artifactId> |
| 30 | <version>3.8.0</version> |
| 31 | <scope>compile</scope> |
| 32 | </dependency> |
| 33 | |
| 34 | <dependency> |
Stone, Avi (as206k) | ca20625 | 2018-05-10 17:53:15 +0300 | [diff] [blame] | 35 | <groupId>org.onap.sdc.dcae-d.dt-be-property</groupId> |
Stone, Avi (as206k) | eaf5706 | 2018-04-12 15:57:26 +0300 | [diff] [blame] | 36 | <artifactId>DCAE-DT-PROPERTY</artifactId> |
Stone, Avi (as206k) | a403bf3 | 2018-05-22 13:06:41 +0300 | [diff] [blame] | 37 | <version>1.2.0-SNAPSHOT</version> |
Stone, Avi (as206k) | eaf5706 | 2018-04-12 15:57:26 +0300 | [diff] [blame] | 38 | </dependency> |
Stone, Avi (as206k) | 7db40ac | 2018-05-21 14:57:57 +0300 | [diff] [blame] | 39 | |
| 40 | <!-- Snake Yaml --> |
| 41 | <dependency> |
| 42 | <groupId>org.yaml</groupId> |
| 43 | <artifactId>snakeyaml</artifactId> |
| 44 | <version>${snakeyaml.version}</version> |
| 45 | <scope>compile</scope> |
| 46 | </dependency> |
| 47 | |
| 48 | <!-- http client --> |
| 49 | <dependency> |
| 50 | <groupId>org.apache.httpcomponents</groupId> |
| 51 | <artifactId>httpclient</artifactId> |
| 52 | <version>${httpclient.version}</version> |
| 53 | <scope>compile</scope> |
| 54 | </dependency> |
| 55 | |
| 56 | <dependency> |
| 57 | <groupId>org.apache.httpcomponents</groupId> |
| 58 | <artifactId>httpmime</artifactId> |
| 59 | <version>${httpclient.version}</version> |
| 60 | <scope>compile</scope> |
| 61 | </dependency> |
| 62 | |
| 63 | <dependency> |
| 64 | <groupId>commons-io</groupId> |
| 65 | <artifactId>commons-io</artifactId> |
| 66 | <version>2.5</version> |
| 67 | <scope>compile</scope> |
| 68 | </dependency> |
| 69 | |
| 70 | <dependency> |
| 71 | <groupId>org.apache.commons</groupId> |
| 72 | <artifactId>commons-collections4</artifactId> |
| 73 | <version>4.1</version> |
| 74 | </dependency> |
| 75 | |
| 76 | <dependency> |
| 77 | <groupId>com.google.code.gson</groupId> |
| 78 | <artifactId>gson</artifactId> |
| 79 | <version>2.8.4</version> |
| 80 | </dependency> |
| 81 | |
| 82 | <dependency> |
| 83 | <groupId>com.googlecode.json-simple</groupId> |
| 84 | <artifactId>json-simple</artifactId> |
| 85 | <version>1.1.1</version> |
| 86 | </dependency> |
| 87 | |
| 88 | <dependency> |
| 89 | <groupId>org.slf4j</groupId> |
| 90 | <artifactId>slf4j-api</artifactId> |
| 91 | <version>${slf4j.version}</version> |
| 92 | <scope>compile</scope> |
| 93 | </dependency> |
| 94 | |
| 95 | <dependency> |
| 96 | <groupId>org.slf4j</groupId> |
| 97 | <artifactId>slf4j-simple</artifactId> |
| 98 | <version>${slf4j.version}</version> |
| 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>org.testng</groupId> |
| 102 | <artifactId>testng</artifactId> |
| 103 | <version>6.14.3</version> |
| 104 | <scope>compile</scope> |
| 105 | </dependency> |
| 106 | |
| 107 | <dependency> |
| 108 | <groupId>com.aventstack</groupId> |
| 109 | <artifactId>extentreports</artifactId> |
| 110 | <version>3.1.5</version> |
| 111 | <scope>compile</scope> |
| 112 | </dependency> |
| 113 | |
| 114 | </dependencies> |
Stone, Avi (as206k) | eaf5706 | 2018-04-12 15:57:26 +0300 | [diff] [blame] | 115 | |
| 116 | <build> |
| 117 | <plugins> |
| 118 | <plugin> |
| 119 | <groupId>org.apache.maven.plugins</groupId> |
| 120 | <artifactId>maven-assembly-plugin</artifactId> |
| 121 | <version>2.5.5</version> |
| 122 | <executions> |
| 123 | <execution> |
| 124 | <id>create.jar.with.dependencies</id> |
| 125 | <phase>package</phase> |
| 126 | <goals> |
| 127 | <goal>single</goal> |
| 128 | </goals> |
| 129 | <configuration> |
| 130 | <archive> |
| 131 | <manifest> |
Stone, Avi (as206k) | 7db40ac | 2018-05-21 14:57:57 +0300 | [diff] [blame] | 132 | <mainClass>org.onap.dcae.ci.run.RunTestSuite</mainClass> |
Stone, Avi (as206k) | eaf5706 | 2018-04-12 15:57:26 +0300 | [diff] [blame] | 133 | </manifest> |
| 134 | </archive> |
| 135 | <descriptorRefs> |
| 136 | <descriptorRef>jar-with-dependencies</descriptorRef> |
| 137 | </descriptorRefs> |
| 138 | </configuration> |
| 139 | </execution> |
| 140 | </executions> |
| 141 | </plugin> |
Stone, Avi (as206k) | aed7693 | 2018-05-24 14:28:23 +0300 | [diff] [blame] | 142 | <!-- Site Plugin --> |
| 143 | <plugin> |
| 144 | <groupId>org.apache.maven.plugins</groupId> |
| 145 | <artifactId>maven-site-plugin</artifactId> |
| 146 | <version>3.4</version> |
| 147 | <dependencies> |
| 148 | <dependency> |
| 149 | <groupId>org.apache.maven.wagon</groupId> |
| 150 | <artifactId>wagon-webdav-jackrabbit</artifactId> |
| 151 | <version>2.10</version> |
| 152 | </dependency> |
| 153 | </dependencies> |
| 154 | </plugin> |
| 155 | <!-- Staging Plugin --> |
| 156 | <plugin> |
| 157 | <groupId>org.sonatype.plugins</groupId> |
| 158 | <artifactId>nexus-staging-maven-plugin</artifactId> |
| 159 | <version>1.6.7</version> |
| 160 | <extensions>true</extensions> |
| 161 | <configuration> |
| 162 | <nexusUrl>${nexus.proxy}</nexusUrl> |
| 163 | <stagingProfileId>${staging.profile.id}</stagingProfileId> |
| 164 | <serverId>ecomp-staging</serverId> |
| 165 | </configuration> |
| 166 | </plugin> |
Stone, Avi (as206k) | eaf5706 | 2018-04-12 15:57:26 +0300 | [diff] [blame] | 167 | </plugins> |
| 168 | </build> |
Stone, Avi (as206k) | 7db40ac | 2018-05-21 14:57:57 +0300 | [diff] [blame] | 169 | |
Stone, Avi (as206k) | a403bf3 | 2018-05-22 13:06:41 +0300 | [diff] [blame] | 170 | <repositories> |
| 171 | <!-- LF repositories --> |
| 172 | <repository> |
| 173 | <id>ecomp-releases</id> |
| 174 | <name>Release Repository</name> |
| 175 | <url>${nexus.proxy}/content/repositories/releases/</url> |
| 176 | </repository> |
| 177 | <repository> |
| 178 | <id>ecomp-snapshots</id> |
| 179 | <name>Snapshots Repository</name> |
| 180 | <url>${nexus.proxy}/content/repositories/snapshots/</url> |
| 181 | </repository> |
| 182 | <repository> |
| 183 | <id>ecomp-public</id> |
| 184 | <name>Public Repository</name> |
| 185 | <url>${nexus.proxy}/content/repositories/public/</url> |
| 186 | </repository> |
| 187 | <!-- LF repositories END--> |
| 188 | </repositories> |
Stone, Avi (as206k) | eaf5706 | 2018-04-12 15:57:26 +0300 | [diff] [blame] | 189 | |
Stone, Avi (as206k) | a403bf3 | 2018-05-22 13:06:41 +0300 | [diff] [blame] | 190 | <distributionManagement> |
| 191 | <repository> |
| 192 | <id>ecomp-releases</id> |
| 193 | <name>Release Repository</name> |
| 194 | <url>${nexus.proxy}/content/repositories/releases/</url> |
| 195 | </repository> |
| 196 | <snapshotRepository> |
| 197 | <id>ecomp-snapshots</id> |
| 198 | <name>Snapshot Repository</name> |
| 199 | <url>${nexus.proxy}/content/repositories/snapshots/</url> |
| 200 | </snapshotRepository> |
| 201 | <site> |
| 202 | <id>ecomp-site</id> |
| 203 | <url>dav:${nexus.proxy}${sitePath}</url> |
| 204 | </site> |
| 205 | </distributionManagement> |
Stone, Avi (as206k) | 7db40ac | 2018-05-21 14:57:57 +0300 | [diff] [blame] | 206 | |
Stone, Avi (as206k) | eaf5706 | 2018-04-12 15:57:26 +0300 | [diff] [blame] | 207 | </project> |