Dan Timoney | 2a93b9d | 2017-07-18 19:40:01 -0400 | [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 | <modelVersion>4.0.0</modelVersion> |
| 4 | <parent> |
| 5 | <artifactId>sliapi</artifactId> |
| 6 | <groupId>org.openecomp.sdnc.core</groupId> |
| 7 | <version>0.0.1-SNAPSHOT</version> |
| 8 | </parent> |
| 9 | <artifactId>sliapi-features</artifactId> |
| 10 | |
| 11 | <packaging>jar</packaging> |
| 12 | |
| 13 | <dependencies> |
| 14 | <dependency> |
| 15 | <groupId>org.openecomp.sdnc.core</groupId> |
| 16 | <artifactId>sliapi-model</artifactId> |
| 17 | </dependency> |
| 18 | <dependency> |
| 19 | <groupId>org.openecomp.sdnc.core</groupId> |
| 20 | <artifactId>sliapi-provider</artifactId> |
| 21 | <classifier>config</classifier> |
| 22 | <type>xml</type> |
| 23 | </dependency> |
| 24 | <dependency> |
| 25 | <groupId>org.openecomp.sdnc.core</groupId> |
| 26 | <artifactId>sliapi-provider</artifactId> |
| 27 | </dependency> |
| 28 | |
| 29 | <dependency> |
| 30 | <groupId>org.opendaylight.mdsal</groupId> |
| 31 | <artifactId>features-mdsal</artifactId> |
| 32 | <version>${odl.mdsal.features.version}</version> |
| 33 | <classifier>features</classifier> |
| 34 | <type>xml</type> |
| 35 | |
| 36 | <scope>runtime</scope> |
| 37 | </dependency> |
| 38 | |
| 39 | |
| 40 | |
| 41 | <!-- dependency for opendaylight-karaf-empty for use by testing --> |
| 42 | <dependency> |
| 43 | <groupId>org.opendaylight.odlparent</groupId> |
| 44 | <artifactId>opendaylight-karaf-empty</artifactId> |
| 45 | <version>${odl.karaf.empty.distro.version}</version> |
| 46 | <type>zip</type> |
| 47 | </dependency> |
| 48 | |
| 49 | |
| 50 | <dependency> |
| 51 | <!-- Required for launching the feature tests--> |
| 52 | <groupId>org.opendaylight.odlparent</groupId> |
| 53 | <artifactId>features-test</artifactId> |
| 54 | <scope>test</scope> |
| 55 | <version>${odl.commons.opendaylight.version}</version> |
| 56 | </dependency> |
| 57 | |
| 58 | <dependency> |
| 59 | <groupId>org.opendaylight.yangtools</groupId> |
| 60 | <artifactId>features-yangtools</artifactId> |
| 61 | <version>${odl.yangtools.version}</version> |
| 62 | <classifier>features</classifier> |
| 63 | <type>xml</type> |
| 64 | <scope>runtime</scope> |
| 65 | </dependency> |
| 66 | </dependencies> |
| 67 | |
| 68 | <build> |
| 69 | <resources> |
| 70 | <resource> |
| 71 | <filtering>true</filtering> |
| 72 | <directory>src/main/resources</directory> |
| 73 | </resource> |
| 74 | </resources> |
| 75 | <plugins> |
| 76 | <plugin> |
| 77 | <groupId>org.apache.maven.plugins</groupId> |
| 78 | <artifactId>maven-resources-plugin</artifactId> |
| 79 | <executions> |
| 80 | <execution> |
| 81 | <id>filter</id> |
| 82 | <goals> |
| 83 | <goal>resources</goal> |
| 84 | </goals> |
| 85 | <phase>generate-resources</phase> |
| 86 | </execution> |
| 87 | </executions> |
| 88 | </plugin> |
| 89 | <!-- launches the feature test, which validates that your karaf feature can |
| 90 | be installed inside of a karaf container. It doesn't validate that your |
| 91 | functionality works correctly, just that you have all of the dependent |
| 92 | bundles defined correctly. |
| 93 | <plugin> |
| 94 | |
| 95 | <groupId>org.apache.maven.plugins</groupId> |
| 96 | <artifactId>maven-surefire-plugin</artifactId> |
| 97 | <version>2.16</version> |
| 98 | <configuration> |
| 99 | <systemPropertyVariables> |
| 100 | <karaf.distro.groupId>org.opendaylight.odlparent</karaf.distro.groupId> |
| 101 | <karaf.distro.artifactId>opendaylight-karaf-empty</karaf.distro.artifactId> |
| 102 | <karaf.distro.version>${odl.karaf.empty.distro.version}</karaf.distro.version> |
| 103 | </systemPropertyVariables> |
| 104 | <dependenciesToScan> |
| 105 | <dependency>org.opendaylight.yangtools:features-test</dependency> |
| 106 | </dependenciesToScan> |
| 107 | </configuration> |
| 108 | </plugin> |
| 109 | --> |
| 110 | <plugin> |
| 111 | <groupId>org.codehaus.mojo</groupId> |
| 112 | <artifactId>build-helper-maven-plugin</artifactId> |
| 113 | <executions> |
| 114 | <execution> |
| 115 | <id>attach-artifacts</id> |
| 116 | <goals> |
| 117 | <goal>attach-artifact</goal> |
| 118 | </goals> |
| 119 | <phase>package</phase> |
| 120 | <configuration> |
| 121 | <artifacts> |
| 122 | <artifact> |
| 123 | <file>${project.build.directory}/classes/${features.file}</file> |
| 124 | <type>xml</type> |
| 125 | <classifier>features</classifier> |
| 126 | </artifact> |
| 127 | </artifacts> |
| 128 | </configuration> |
| 129 | </execution> |
| 130 | </executions> |
| 131 | </plugin> |
| 132 | </plugins> |
| 133 | </build> |
| 134 | </project> |