Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <parent> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame^] | 5 | <groupId>org.onap.appc</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 6 | <artifactId>appc-adapters</artifactId> |
Jessica Wagantall | 6536799 | 2017-11-16 17:22:13 -0800 | [diff] [blame] | 7 | <version>1.3.0-SNAPSHOT</version> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 8 | </parent> |
| 9 | |
| 10 | <artifactId>appc-rest-healthcheck-adapter</artifactId> |
| 11 | <name>rest healthcheck adaptor</name> |
| 12 | <description>Abstraction to connect to and utilize the services of cloud providers such as OpenStack or VMWare.</description> |
| 13 | <packaging>pom</packaging> |
| 14 | |
| 15 | <reporting> |
| 16 | <plugins> |
| 17 | <plugin> |
| 18 | <artifactId>maven-javadoc-plugin</artifactId> |
| 19 | <configuration> |
| 20 | <additionalDependencies> |
| 21 | <additionalDependency> |
| 22 | <groupId>org.slf4j</groupId> |
| 23 | <artifactId>slf4j-api</artifactId> |
| 24 | <version>${slf4j.version}</version> |
| 25 | </additionalDependency> |
| 26 | <additionalDependency> |
| 27 | <groupId>org.antlr</groupId> |
| 28 | <artifactId>antlr4</artifactId> |
| 29 | <version>${antlr.version}</version> |
| 30 | </additionalDependency> |
| 31 | <additionalDependency> |
| 32 | <groupId>org.antlr</groupId> |
| 33 | <artifactId>antlr4-runtime</artifactId> |
| 34 | <version>4.3</version> |
| 35 | </additionalDependency> |
| 36 | </additionalDependencies> |
| 37 | </configuration> |
| 38 | <reportSets> |
| 39 | <reportSet> |
| 40 | <reports> |
| 41 | <report>javadoc-no-fork</report> |
| 42 | <report>test-javadoc-no-fork</report> |
| 43 | </reports> |
| 44 | </reportSet> |
| 45 | <reportSet> |
| 46 | <id>aggregate</id> |
| 47 | <reports> |
| 48 | <report>aggregate</report> |
| 49 | <report>test-aggregate</report> |
| 50 | </reports> |
| 51 | </reportSet> |
| 52 | </reportSets> |
| 53 | </plugin> |
| 54 | <plugin> |
| 55 | <groupId>org.apache.maven.plugins</groupId> |
| 56 | <artifactId>maven-jxr-plugin</artifactId> |
| 57 | <version>2.3</version> |
| 58 | <reportSets> |
| 59 | <reportSet> |
| 60 | <id>aggregate</id> |
| 61 | <reports> |
| 62 | <report>aggregate</report> |
| 63 | <report>test-aggregate</report> |
| 64 | </reports> |
| 65 | </reportSet> |
| 66 | </reportSets> |
| 67 | </plugin> |
| 68 | |
| 69 | <plugin> |
| 70 | <artifactId>maven-surefire-plugin</artifactId> |
| 71 | </plugin> |
| 72 | |
| 73 | <plugin> |
| 74 | <groupId>org.apache.maven.plugins</groupId> |
| 75 | <artifactId>maven-changelog-plugin</artifactId> |
| 76 | <version>2.3</version> |
| 77 | <reportSets> |
| 78 | <reportSet> |
| 79 | <id>dual-report</id> |
| 80 | <configuration> |
| 81 | <type>range</type> |
| 82 | <range>30</range> |
| 83 | </configuration> |
| 84 | <reports> |
| 85 | <report>changelog</report> |
| 86 | <report>file-activity</report> |
| 87 | </reports> |
| 88 | </reportSet> |
| 89 | </reportSets> |
| 90 | </plugin> |
| 91 | |
| 92 | <plugin> |
| 93 | <groupId>org.codehaus.mojo</groupId> |
| 94 | <artifactId>taglist-maven-plugin</artifactId> |
| 95 | <version>2.4</version> |
| 96 | </plugin> |
| 97 | </plugins> |
| 98 | </reporting> |
| 99 | |
| 100 | <dependencyManagement> |
| 101 | <dependencies> |
| 102 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame^] | 103 | <groupId>org.onap.appc</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 104 | <artifactId>appc-rest-healthcheck-adapter-features</artifactId> |
| 105 | <classifier>features</classifier> |
| 106 | <type>xml</type> |
| 107 | <version>${project.version}</version> |
| 108 | </dependency> |
| 109 | |
| 110 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame^] | 111 | <groupId>org.onap.appc</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 112 | <artifactId>appc-rest-healthcheck-adapter-provider</artifactId> |
| 113 | <version>${project.version}</version> |
| 114 | </dependency> |
| 115 | </dependencies> |
| 116 | |
| 117 | |
| 118 | </dependencyManagement> |
| 119 | |
| 120 | <modules> |
| 121 | <module>appc-rest-healthcheck-adapter-bundle</module> |
| 122 | <module>appc-rest-healthcheck-adapter-features</module> |
| 123 | <module>appc-rest-healthcheck-adapter-installer</module> |
| 124 | </modules> |
| 125 | </project> |