ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Anaël Closson | c28ea7c | 2017-02-07 12:45:45 +0100 | [diff] [blame] | 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
Rob Daugherty | ec9600d | 2017-09-27 06:11:26 -0400 | [diff] [blame^] | 4 | |
| 5 | <parent> |
| 6 | <groupId>org.onap.oparent</groupId> |
| 7 | <artifactId>oparent</artifactId> |
| 8 | <version>1.0.0-SNAPSHOT</version> |
| 9 | <relativePath/> |
| 10 | </parent> |
| 11 | |
Rob Daugherty | 8047b7c | 2017-08-01 11:56:58 -0400 | [diff] [blame] | 12 | <groupId>org.openecomp.so</groupId> |
Rob Daugherty | 2641935 | 2017-08-04 15:55:54 -0400 | [diff] [blame] | 13 | <artifactId>so</artifactId> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 14 | <packaging>pom</packaging> |
ChrisC | 1ba1d19 | 2017-03-13 05:01:04 -0700 | [diff] [blame] | 15 | <version>1.1.0-SNAPSHOT</version> |
Jessica Wagantall | 9c03f46 | 2017-09-08 12:46:01 -0700 | [diff] [blame] | 16 | <name>so</name> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 17 | <description>This Maven project is responsible to build and package all child projects - contributions in the MSO project. |
| 18 | This build can be configured to run Functional tests and to start/stop a jboss server + Mysql DB. |
| 19 | "mvn clean install -P with-integration-tests -Dintegration-tests-user=root -Dintegration-tests-group=root -Dintegration-tests-db-type=MYSQL" |
| 20 | </description> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 21 | <organization> |
| 22 | <name>OPENECOMP - MSO</name> |
Andrew Grimberg | d748694 | 2017-03-29 13:51:39 -0700 | [diff] [blame] | 23 | <url>http://www.onap.org/</url> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 24 | </organization> |
| 25 | <modules> |
| 26 | <module>common</module> |
| 27 | <module>mso-api-handlers</module> |
| 28 | <module>mso-catalog-db</module> |
| 29 | <module>adapters</module> |
| 30 | <module>asdc-controller</module> |
| 31 | <module>status-control</module> |
| 32 | <module>bpmn</module> |
| 33 | <module>packages</module> |
| 34 | </modules> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 35 | <properties> |
| 36 | <project.mso.base.folder>.</project.mso.base.folder> |
| 37 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 38 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 39 | <sonar.language>java</sonar.language> |
| 40 | <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin> |
| 41 | <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath> |
| 42 | <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath> |
| 43 | <sonar.jacoco.itReportPath>${project.mso.base.folder}/packages/arquillian-unit-tests/target/mso-automated-tests/jacoco-it.exec</sonar.jacoco.itReportPath> |
| 44 | <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero> |
| 45 | <sonar.projectVersion>${project.version}</sonar.projectVersion> |
| 46 | <org.apache.maven.user-settings></org.apache.maven.user-settings> |
| 47 | <!-- this is used for Chef mso-code cookbook --> |
| 48 | <swm.version>2.19.3-1</swm.version> |
Rob Daugherty | 3efc13f | 2017-07-19 16:38:36 -0400 | [diff] [blame] | 49 | <openstack.version>1.1.0-SNAPSHOT</openstack.version> |
Andrew Grimberg | d748694 | 2017-03-29 13:51:39 -0700 | [diff] [blame] | 50 | <nexusproxy>https://nexus.onap.org</nexusproxy> |
Determe, Sebastien (sd378r) | d79e716 | 2017-02-20 04:31:22 -0800 | [diff] [blame] | 51 | <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath> |
| 52 | <releaseNexusPath>/content/repositories/releases/</releaseNexusPath> |
Determe, Sebastien (sd378r) | fe041c7 | 2017-04-25 06:33:51 -0700 | [diff] [blame] | 53 | <stagingNexusPath>/content/repositories/staging/</stagingNexusPath> |
Rob Daugherty | 2c5310a | 2017-07-20 11:09:23 -0400 | [diff] [blame] | 54 | <sitePath>/content/sites/site/org/onap/so/${project.version}</sitePath> |
JulienBe | c3f8ddf | 2017-03-08 02:19:21 -0800 | [diff] [blame] | 55 | <maven.build.timestamp.format>yyyyMMdd'T'HHmm</maven.build.timestamp.format> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 56 | </properties> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 57 | <distributionManagement> |
| 58 | <repository> |
JulienBe | ec92b1a | 2017-02-06 11:22:26 +0100 | [diff] [blame] | 59 | <id>ecomp-releases</id> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 60 | <name>MSO Release Repository</name> |
Determe, Sebastien (sd378r) | d79e716 | 2017-02-20 04:31:22 -0800 | [diff] [blame] | 61 | <url>${nexusproxy}/${releaseNexusPath}</url> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 62 | </repository> |
| 63 | <snapshotRepository> |
JulienBe | ec92b1a | 2017-02-06 11:22:26 +0100 | [diff] [blame] | 64 | <id>ecomp-snapshots</id> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 65 | <name>MSO Snapshot Repository</name> |
Determe, Sebastien (sd378r) | d79e716 | 2017-02-20 04:31:22 -0800 | [diff] [blame] | 66 | <url>${nexusproxy}/${snapshotNexusPath}</url> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 67 | </snapshotRepository> |
| 68 | <site> |
Anaël Closson | 5dd5647 | 2017-03-09 16:52:09 +0100 | [diff] [blame] | 69 | <id>ecomp-site</id> |
| 70 | <url>dav:${nexusproxy}${sitePath}</url> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 71 | </site> |
| 72 | </distributionManagement> |
Anaël Closson | c28ea7c | 2017-02-07 12:45:45 +0100 | [diff] [blame] | 73 | <reporting> |
| 74 | <plugins> |
| 75 | <plugin> |
| 76 | <groupId>org.apache.maven.plugins</groupId> |
| 77 | <artifactId>maven-javadoc-plugin</artifactId> |
| 78 | <version>2.10.4</version> |
| 79 | <configuration> |
| 80 | <failOnError>false</failOnError> |
| 81 | <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet> |
| 82 | <docletArtifact> |
| 83 | <groupId>org.umlgraph</groupId> |
| 84 | <artifactId>umlgraph</artifactId> |
| 85 | <version>5.6</version> |
| 86 | </docletArtifact> |
| 87 | <additionalparam>-views</additionalparam> |
| 88 | <useStandardDocletOptions>true</useStandardDocletOptions> |
| 89 | </configuration> |
| 90 | </plugin> |
| 91 | </plugins> |
| 92 | </reporting> |
| 93 | <!-- configure build --> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 94 | <!-- *********************************************************************************************************** --> |
| 95 | <!-- Plugins and repositories --> |
| 96 | <pluginRepositories> |
| 97 | <pluginRepository> |
| 98 | <id>central</id> |
| 99 | <url>http://repo1.maven.org/maven2</url> |
| 100 | </pluginRepository> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 101 | |
Anaël Closson | c28ea7c | 2017-02-07 12:45:45 +0100 | [diff] [blame] | 102 | <pluginRepository> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 103 | <id>Restlet</id> |
| 104 | <name>Restlet Repository</name> |
| 105 | <url>http://maven.restlet.com</url> |
Anaël Closson | c28ea7c | 2017-02-07 12:45:45 +0100 | [diff] [blame] | 106 | </pluginRepository> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 107 | </pluginRepositories> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 108 | <repositories> |
| 109 | <repository> |
| 110 | <id>central</id> |
| 111 | <name>Maven 2 repository 2</name> |
| 112 | <url>http://repo2.maven.org/maven2/</url> |
| 113 | </repository> |
| 114 | <repository> |
| 115 | <id>JBOSS</id> |
| 116 | <name>JBoss Repository</name> |
| 117 | <url>http://repository.jboss.org/nexus/content/groups/public-jboss/</url> |
Anaël Closson | c28ea7c | 2017-02-07 12:45:45 +0100 | [diff] [blame] | 118 | </repository> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 119 | <repository> |
| 120 | <id>jboss-deprecated-repository</id> |
| 121 | <name>JBoss Deprecated Maven Repository</name> |
| 122 | <url>https://repository.jboss.org/nexus/content/repositories/deprecated/</url> |
| 123 | </repository> |
| 124 | <repository> |
JulienBe | 4d74e80 | 2017-02-06 06:11:09 -0800 | [diff] [blame] | 125 | <id>ecomp-releases</id> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 126 | <name>MSO Release Repository</name> |
Determe, Sebastien (sd378r) | d79e716 | 2017-02-20 04:31:22 -0800 | [diff] [blame] | 127 | <url>${nexusproxy}/${releaseNexusPath}</url> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 128 | </repository> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 129 | |
eh552t | 04bf14b | 2017-02-14 15:02:15 +0100 | [diff] [blame] | 130 | <repository> |
| 131 | <id>ecomp-staging</id> |
| 132 | <name>MSO Staging Repository</name> |
Determe, Sebastien (sd378r) | fe041c7 | 2017-04-25 06:33:51 -0700 | [diff] [blame] | 133 | <url>${nexusproxy}/${stagingNexusPath}</url> |
eh552t | 04bf14b | 2017-02-14 15:02:15 +0100 | [diff] [blame] | 134 | </repository> |
Determe, Sebastien (sd378r) | fe041c7 | 2017-04-25 06:33:51 -0700 | [diff] [blame] | 135 | <repository> |
| 136 | <id>ecomp-snapshots</id> |
| 137 | <name>MSO Snapshot Repository</name> |
| 138 | <url>${nexusproxy}/${snapshotNexusPath}</url> |
| 139 | </repository> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 140 | <!-- Camunda Web Repository --> |
Anaël Closson | c28ea7c | 2017-02-07 12:45:45 +0100 | [diff] [blame] | 141 | <repository> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 142 | <id>CamundaWebRepo</id> |
| 143 | <url>https://app.camunda.com/nexus/content/repositories/camunda-bpm/</url> |
| 144 | <name>Camunda Web Repository</name> |
| 145 | </repository> |
| 146 | <repository> |
| 147 | <id>CamundaPublicRepo</id> |
| 148 | <url>https://app.camunda.com/nexus/content/groups/public</url> |
| 149 | <name>Camunda Public repository</name> |
| 150 | </repository> |
Anaël Closson | c28ea7c | 2017-02-07 12:45:45 +0100 | [diff] [blame] | 151 | <repository> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 152 | <id>soapUI</id> |
| 153 | <url>http://www.soapui.org/repository/maven2/</url> |
| 154 | <name>SoapUI plugin</name> |
| 155 | </repository> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 156 | </repositories> |
| 157 | <!-- *********************************************************************************************************** --> |
| 158 | <!-- Build --> |
| 159 | <build> |
| 160 | <resources> |
| 161 | <resource> |
| 162 | <directory>src/main/resources</directory> |
| 163 | <filtering>true</filtering> |
| 164 | </resource> |
| 165 | <resource> |
| 166 | <directory>target/generated-sources/license</directory> |
| 167 | <includes> |
| 168 | <include>third-party-licenses.txt</include> |
| 169 | </includes> |
| 170 | </resource> |
| 171 | <resource> |
| 172 | <directory>target/generated-resources/licenses</directory> |
| 173 | <includes> |
| 174 | <include>*.*</include> |
| 175 | </includes> |
| 176 | <targetPath>third-party-licenses</targetPath> |
| 177 | </resource> |
| 178 | </resources> |
| 179 | <plugins> |
| 180 | <plugin> |
Anaël Closson | 7fa6f16 | 2017-02-07 14:26:21 +0100 | [diff] [blame] | 181 | <groupId>org.sonatype.plugins</groupId> |
| 182 | <artifactId>nexus-staging-maven-plugin</artifactId> |
| 183 | <version>1.6.7</version> |
| 184 | <extensions>true</extensions> |
| 185 | <configuration> |
Andrew Grimberg | c6aecd4 | 2017-02-15 03:39:18 -0800 | [diff] [blame] | 186 | <nexusUrl>${nexusproxy}</nexusUrl> |
Anaël Closson | 7fa6f16 | 2017-02-07 14:26:21 +0100 | [diff] [blame] | 187 | <stagingProfileId>176c31dfe190a</stagingProfileId> |
| 188 | <serverId>ecomp-staging</serverId> |
| 189 | </configuration> |
| 190 | </plugin> |
| 191 | <plugin> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 192 | <groupId>org.apache.maven.plugins</groupId> |
| 193 | <artifactId>maven-deploy-plugin</artifactId> |
| 194 | <version>2.8</version> <!-- This version supports the "deployAtEnd" parameter --> |
Anaël Closson | 7fa6f16 | 2017-02-07 14:26:21 +0100 | [diff] [blame] | 195 | <configuration> |
| 196 | <skip /> |
| 197 | </configuration> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 198 | </plugin> |
| 199 | <plugin> |
| 200 | <groupId>org.apache.maven.plugins</groupId> |
| 201 | <artifactId>maven-surefire-plugin</artifactId> |
| 202 | <version>2.17</version> |
| 203 | <configuration> |
Anaël Closson | c28ea7c | 2017-02-07 12:45:45 +0100 | [diff] [blame] | 204 | <!-- <forkCount>2C</forkCount> |
| 205 | <reuseForks>true</reuseForks> --> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 206 | </configuration> |
| 207 | </plugin> |
| 208 | <plugin> |
| 209 | <groupId>org.apache.maven.plugins</groupId> |
| 210 | <artifactId>maven-compiler-plugin</artifactId> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 211 | <version>3.6.1</version> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 212 | <configuration> |
| 213 | <debug>true</debug> |
| 214 | <compilerArgument>-Xlint</compilerArgument> |
| 215 | <verbose>true</verbose> |
| 216 | <showDeprecation>true</showDeprecation> |
| 217 | <showWarnings>true</showWarnings> |
| 218 | <source>1.8</source> |
| 219 | <target>1.8</target> |
| 220 | </configuration> |
| 221 | </plugin> |
Anaël Closson | c28ea7c | 2017-02-07 12:45:45 +0100 | [diff] [blame] | 222 | <!-- <plugin> --> |
| 223 | <!-- <groupId>org.codehaus.mojo</groupId> --> |
| 224 | <!-- <artifactId>sonar-maven-plugin</artifactId> --> |
| 225 | <!-- <version>2.1</version> --> |
| 226 | <!-- </plugin> --> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 227 | <plugin> |
| 228 | <groupId>org.apache.maven.plugins</groupId> |
| 229 | <artifactId>maven-ejb-plugin</artifactId> |
| 230 | <version>2.2.1</version> |
| 231 | <configuration> |
| 232 | <ejbVersion>3.0</ejbVersion> |
| 233 | <archive> |
| 234 | <manifest> |
| 235 | <addClasspath>true</addClasspath> |
| 236 | </manifest> |
| 237 | </archive> |
| 238 | </configuration> |
| 239 | </plugin> |
| 240 | <plugin> |
| 241 | <groupId>org.apache.maven.plugins</groupId> |
| 242 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 243 | <version>2.17</version> |
| 244 | <configuration> |
| 245 | <includes>**/org/openecomp/**/*.java</includes> |
| 246 | <configLocation>/google_checks.xml</configLocation> |
| 247 | </configuration> |
| 248 | </plugin> |
| 249 | <plugin> |
| 250 | <groupId>org.codehaus.mojo</groupId> |
| 251 | <artifactId>findbugs-maven-plugin</artifactId> |
| 252 | <version>2.5.2</version> |
| 253 | <configuration> |
| 254 | <includeFilterFile>project-configs/code-tools/findbugs_include_filter.xml</includeFilterFile> |
| 255 | <nested>true</nested> |
| 256 | <findbugsXmlOutput>true</findbugsXmlOutput> |
| 257 | <findbugsXmlWithMessages>true</findbugsXmlWithMessages> |
| 258 | <xmlOutput>true</xmlOutput> |
| 259 | </configuration> |
| 260 | </plugin> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 261 | <plugin> |
| 262 | <groupId>org.codehaus.mojo</groupId> |
| 263 | <artifactId>sonar-maven-plugin</artifactId> |
| 264 | <version>3.2</version> |
| 265 | </plugin> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 266 | <plugin> |
| 267 | <artifactId>maven-scm-plugin</artifactId> |
| 268 | <version>1.8.1</version> |
| 269 | <configuration> |
| 270 | <tag>${project.artifactId}-${project.version}</tag> |
| 271 | </configuration> |
| 272 | </plugin> |
| 273 | <plugin> |
| 274 | <groupId>org.apache.maven.plugins</groupId> |
| 275 | <artifactId>maven-javadoc-plugin</artifactId> |
| 276 | <version>2.9</version> |
| 277 | </plugin> |
| 278 | <plugin> |
Anaël Closson | c28ea7c | 2017-02-07 12:45:45 +0100 | [diff] [blame] | 279 | <groupId>org.apache.maven.plugins</groupId> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 280 | <artifactId>maven-site-plugin</artifactId> |
Anaël Closson | c28ea7c | 2017-02-07 12:45:45 +0100 | [diff] [blame] | 281 | <version>3.6</version> |
| 282 | <dependencies> |
| 283 | <dependency> |
| 284 | <groupId>org.apache.maven.wagon</groupId> |
| 285 | <artifactId>wagon-webdav-jackrabbit</artifactId> |
| 286 | <version>2.10</version> |
| 287 | </dependency> |
| 288 | </dependencies> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 289 | </plugin> |
| 290 | <plugin> |
| 291 | <groupId>org.codehaus.mojo</groupId> |
| 292 | <artifactId>cobertura-maven-plugin</artifactId> |
| 293 | <version>2.5.2</version> |
| 294 | <configuration> |
| 295 | <formats> |
| 296 | <format>xml</format> |
| 297 | </formats> |
| 298 | </configuration> |
| 299 | </plugin> |
| 300 | <plugin> |
| 301 | <groupId>org.codehaus.mojo</groupId> |
| 302 | <artifactId>versions-maven-plugin</artifactId> |
| 303 | <version>1.3.1</version> |
| 304 | </plugin> |
| 305 | <plugin> |
| 306 | <groupId>org.codehaus.mojo</groupId> |
| 307 | <artifactId>jboss-packaging-maven-plugin</artifactId> |
| 308 | <version>2.2</version> |
Anaël Closson | c28ea7c | 2017-02-07 12:45:45 +0100 | [diff] [blame] | 309 | <!-- <configuration> <archive> <manifest> <addClasspath>true</addClasspath> |
| 310 | </manifest> </archive> </configuration> Enable 'jboss-sar', etc., as a recoginized |
| 311 | maven packaging type --> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 312 | <extensions>true</extensions> |
| 313 | </plugin> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 314 | <plugin> |
| 315 | <groupId>org.jacoco</groupId> |
| 316 | <artifactId>jacoco-maven-plugin</artifactId> |
| 317 | <version>0.7.7.201606060606</version> |
| 318 | <configuration> |
| 319 | <dumpOnExit>true</dumpOnExit> |
| 320 | <includes> |
| 321 | <include>org.openecomp.*</include> |
| 322 | </includes> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 323 | </configuration> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 324 | <executions> |
| 325 | <execution> |
| 326 | <id>jacoco-initialize-unit-tests</id> |
| 327 | <goals> |
| 328 | <goal>prepare-agent</goal> |
| 329 | </goals> |
| 330 | <configuration> |
| 331 | <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile> |
| 332 | <!-- <append>true</append> --> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 333 | </configuration> |
| 334 | </execution> |
| 335 | </executions> |
| 336 | </plugin> |
| 337 | <plugin> |
Anaël Closson | c28ea7c | 2017-02-07 12:45:45 +0100 | [diff] [blame] | 338 | <groupId>com.fortify.ps.maven.plugin</groupId> |
| 339 | <artifactId>sca-maven-plugin</artifactId> |
| 340 | <version>4.20</version> |
| 341 | <configuration> |
| 342 | <buildId>mso-${project.version}</buildId> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 343 | <source>1.8</source> |
Anaël Closson | c28ea7c | 2017-02-07 12:45:45 +0100 | [diff] [blame] | 344 | </configuration> |
| 345 | </plugin> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 346 | </plugins> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 347 | </build> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 348 | <!-- *********************************************************************************************************** --> |
| 349 | <!-- Dependencies --> |
| 350 | <dependencies> |
| 351 | <dependency> |
| 352 | <groupId>junit</groupId> |
| 353 | <artifactId>junit</artifactId> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 354 | <version>4.12</version> |
Anaël Closson | c28ea7c | 2017-02-07 12:45:45 +0100 | [diff] [blame] | 355 | <scope>test</scope> |
| 356 | </dependency> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 357 | </dependencies> |
| 358 | <dependencyManagement> |
| 359 | <dependencies> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 360 | <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient --> |
| 361 | <!-- force use of version 4.5 everywhere in transient deps, aligned on WildFly 10 version --> |
| 362 | <dependency> |
Anaël Closson | c28ea7c | 2017-02-07 12:45:45 +0100 | [diff] [blame] | 363 | <groupId>org.apache.httpcomponents</groupId> |
| 364 | <artifactId>httpclient</artifactId> |
| 365 | <version>4.5</version> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 366 | <scope>compile</scope> |
| 367 | </dependency> |
| 368 | <dependency> |
Anaël Closson | c28ea7c | 2017-02-07 12:45:45 +0100 | [diff] [blame] | 369 | <groupId>org.apache.httpcomponents</groupId> |
| 370 | <artifactId>httpcore</artifactId> |
| 371 | <version>4.4.1</version> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 372 | <scope>compile</scope> |
| 373 | </dependency> |
| 374 | <dependency> |
Anaël Closson | c28ea7c | 2017-02-07 12:45:45 +0100 | [diff] [blame] | 375 | <groupId>commons-codec</groupId> |
| 376 | <artifactId>commons-codec</artifactId> |
| 377 | <version>1.10</version> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 378 | <scope>compile</scope> |
| 379 | </dependency> |
| 380 | <dependency> |
| 381 | <groupId>commons-io</groupId> |
| 382 | <artifactId>commons-io</artifactId> |
| 383 | <version>2.5</version> |
| 384 | <scope>compile</scope> |
| 385 | </dependency> |
| 386 | <dependency> |
| 387 | <groupId>org.hamcrest</groupId> |
| 388 | <artifactId>hamcrest-core</artifactId> |
| 389 | <version>1.3</version> |
| 390 | <scope>test</scope> |
| 391 | </dependency> |
| 392 | <dependency> |
| 393 | <groupId>log4j</groupId> |
| 394 | <artifactId>log4j</artifactId> |
| 395 | <version>1.2.17</version> |
| 396 | <scope>compile</scope> |
| 397 | </dependency> |
| 398 | <dependency> |
| 399 | <groupId>org.slf4j</groupId> |
| 400 | <artifactId>slf4j-api</artifactId> |
| 401 | <version>1.7.10</version> |
| 402 | <scope>compile</scope> |
| 403 | </dependency> |
| 404 | <dependency> |
| 405 | <groupId>com.sun.xml.fastinfoset</groupId> |
| 406 | <artifactId>FastInfoset</artifactId> |
| 407 | <version>1.2.13</version> |
| 408 | <scope>compile</scope> |
| 409 | </dependency> |
| 410 | </dependencies> |
| 411 | </dependencyManagement> |
JulienBe | ec92b1a | 2017-02-06 11:22:26 +0100 | [diff] [blame] | 412 | </project> |