Removing blueprints-processor
[ccsdk/features.git] / pom.xml
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
5     <parent>
6         <groupId>org.onap.ccsdk.parent</groupId>
7         <artifactId>odlparent-lite</artifactId>
8         <version>1.5.2-SNAPSHOT</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.onap.ccsdk.features</groupId>
13     <artifactId>ccsdk-features</artifactId>
14     <version>0.7.1-SNAPSHOT</version>
15     <packaging>pom</packaging>
16
17     <name>ccsdk-features</name>
18     <description>CCSDK applications</description>
19     <url>https://wiki.onap.org</url>
20     <organization>
21         <name>ONAP</name>
22     </organization>
23
24     <modules>
25         <module>features</module>
26         <module>sdnr/wt</module>
27         <module>sdnr/northbound</module>
28         <module>aafshiro</module>
29     </modules>
30
31     <scm>
32         <connection>scm:git:ssh://git@${onap.git.host}/features.git</connection>
33         <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/features.git</developerConnection>
34         <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/features/browse</url>
35     </scm>
36
37     <profiles>
38         <profile>
39             <id>blackduck</id>
40             <activation>
41                 <property>
42                     <name>blackduck-scan</name>
43                 </property>
44             </activation>
45             <build>
46                 <plugins>
47                     <plugin>
48                         <groupId>com.blackducksoftware.integration</groupId>
49                         <artifactId>hub-maven-plugin</artifactId>
50                         <version>1.4.0</version>
51                         <inherited>false</inherited>
52                         <configuration>
53                             <hubProjectName>${project.name}</hubProjectName>
54                             <outputDirectory>${project.basedir}</outputDirectory>
55                         </configuration>
56                         <executions>
57                             <execution>
58                                 <id>create-bdio-file</id>
59                                 <phase>package</phase>
60                                 <goals>
61                                     <goal>createHubOutput</goal>
62                                 </goals>
63                             </execution>
64                         </executions>
65                     </plugin>
66                 </plugins>
67             </build>
68         </profile>
69         <profile>
70             <id>dependency-list</id>
71             <build>
72                 <plugins>
73                     <plugin>
74                         <groupId>com.github.ferstl</groupId>
75                         <artifactId>depgraph-maven-plugin</artifactId>
76                         <executions>
77                             <execution>
78                                 <phase>validate</phase>
79                                 <inherited>false</inherited>
80                                 <goals>
81                                     <goal>aggregate</goal>
82                                 </goals>
83                             </execution>
84                         </executions>
85                     </plugin>
86                     <plugin>
87                         <groupId>org.codehaus.mojo</groupId>
88                         <artifactId>build-helper-maven-plugin</artifactId>
89                         <executions>
90                             <execution>
91                                 <id>attach-artifacts</id>
92                                 <phase>package</phase>
93                                 <inherited>false</inherited>
94                                 <goals>
95                                     <goal>attach-artifact</goal>
96                                 </goals>
97                                 <configuration>
98                                     <artifacts>
99                                         <artifact>
100                                             <file>${dependency-list.file}</file>
101                                             <type>txt</type>
102                                             <classifier>dependencies</classifier>
103                                         </artifact>
104                                     </artifacts>
105                                 </configuration>
106                             </execution>
107                         </executions>
108                     </plugin>
109                 </plugins>
110             </build>
111         </profile>
112     </profiles>
113 </project>