Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [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/xsd/maven-4.0.0.xsd"> |
| 3 | <parent> |
| 4 | <artifactId>appc-adapters</artifactId> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame^] | 5 | <groupId>org.onap.appc</groupId> |
Jessica Wagantall | 6536799 | 2017-11-16 17:22:13 -0800 | [diff] [blame] | 6 | <version>1.3.0-SNAPSHOT</version> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 7 | </parent> |
| 8 | <modelVersion>4.0.0</modelVersion> |
| 9 | |
| 10 | <artifactId>appc-netconf-adapter</artifactId> |
| 11 | <name>NETCONF adapter</name> |
| 12 | <packaging>pom</packaging> |
| 13 | |
| 14 | <properties> |
| 15 | <feature.netconf.connector.version>1.0.1-Beryllium-SR1</feature.netconf.connector.version> |
| 16 | </properties> |
| 17 | |
| 18 | <reporting> |
| 19 | <plugins> |
| 20 | <plugin> |
| 21 | <artifactId>maven-javadoc-plugin</artifactId> |
| 22 | <configuration> |
| 23 | <additionalDependencies> |
| 24 | <additionalDependency> |
| 25 | <groupId>org.slf4j</groupId> |
| 26 | <artifactId>slf4j-api</artifactId> |
| 27 | <version>${slf4j.version}</version> |
| 28 | </additionalDependency> |
| 29 | <additionalDependency> |
| 30 | <groupId>org.antlr</groupId> |
| 31 | <artifactId>antlr4</artifactId> |
| 32 | <version>${antlr.version}</version> |
| 33 | </additionalDependency> |
| 34 | <additionalDependency> |
| 35 | <groupId>org.antlr</groupId> |
| 36 | <artifactId>antlr4-runtime</artifactId> |
| 37 | <version>4.3</version> |
| 38 | </additionalDependency> |
| 39 | </additionalDependencies> |
| 40 | </configuration> |
| 41 | <reportSets> |
| 42 | <reportSet> |
| 43 | <reports> |
| 44 | <report>javadoc-no-fork</report> |
| 45 | <report>test-javadoc-no-fork</report> |
| 46 | </reports> |
| 47 | </reportSet> |
| 48 | <reportSet> |
| 49 | <id>aggregate</id> |
| 50 | <reports> |
| 51 | <report>aggregate</report> |
| 52 | <report>test-aggregate</report> |
| 53 | </reports> |
| 54 | </reportSet> |
| 55 | </reportSets> |
| 56 | </plugin> |
| 57 | <plugin> |
| 58 | <groupId>org.apache.maven.plugins</groupId> |
| 59 | <artifactId>maven-jxr-plugin</artifactId> |
| 60 | <version>2.3</version> |
| 61 | <reportSets> |
| 62 | <reportSet> |
| 63 | <id>aggregate</id> |
| 64 | <reports> |
| 65 | <report>aggregate</report> |
| 66 | <report>test-aggregate</report> |
| 67 | </reports> |
| 68 | </reportSet> |
| 69 | </reportSets> |
| 70 | </plugin> |
| 71 | |
| 72 | <plugin> |
| 73 | <artifactId>maven-surefire-plugin</artifactId> |
| 74 | </plugin> |
| 75 | |
| 76 | <plugin> |
| 77 | <groupId>org.apache.maven.plugins</groupId> |
| 78 | <artifactId>maven-changelog-plugin</artifactId> |
| 79 | <version>2.3</version> |
| 80 | <reportSets> |
| 81 | <reportSet> |
| 82 | <id>dual-report</id> |
| 83 | <configuration> |
| 84 | <type>range</type> |
| 85 | <range>30</range> |
| 86 | </configuration> |
| 87 | <reports> |
| 88 | <report>changelog</report> |
| 89 | <report>file-activity</report> |
| 90 | </reports> |
| 91 | </reportSet> |
| 92 | </reportSets> |
| 93 | </plugin> |
| 94 | |
| 95 | <plugin> |
| 96 | <groupId>org.codehaus.mojo</groupId> |
| 97 | <artifactId>taglist-maven-plugin</artifactId> |
| 98 | <version>2.4</version> |
| 99 | </plugin> |
| 100 | </plugins> |
| 101 | </reporting> |
| 102 | |
| 103 | <dependencyManagement> |
| 104 | <dependencies> |
| 105 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame^] | 106 | <groupId>org.onap.appc</groupId> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 107 | <artifactId>appc-netconf-adapter-features</artifactId> |
| 108 | <classifier>features</classifier> |
| 109 | <type>xml</type> |
| 110 | <version>${project.version}</version> |
| 111 | </dependency> |
| 112 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame^] | 113 | <groupId>org.onap.appc</groupId> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 114 | <artifactId>appc-netconf-adapter-provider</artifactId> |
| 115 | <version>${project.version}</version> |
| 116 | </dependency> |
| 117 | </dependencies> |
| 118 | </dependencyManagement> |
| 119 | |
| 120 | <modules> |
| 121 | <module>appc-netconf-adapter-bundle</module> |
| 122 | <module>appc-netconf-adapter-features</module> |
| 123 | <module>appc-netconf-installer</module> |
| 124 | </modules> |
| 125 | |
| 126 | |
| 127 | </project> |