[CCSDK-6] Populate seed code
[ccsdk/sli/adaptors.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"
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
5         <parent>
6                 <groupId>org.onap.ccsdk.parent</groupId>
7                 <artifactId>odlparent-boron-sr3</artifactId>
8                 <version>0.0.1-SNAPSHOT</version>
9         </parent>
10
11         <modelVersion>4.0.0</modelVersion>
12         <packaging>pom</packaging>
13         <groupId>org.openecomp.sdnc.adaptors</groupId>
14         <artifactId>sdnc-adaptors</artifactId>
15
16         <name>SDN-C Adaptors</name>
17         <url>https://wiki.openecomp.org</url>
18         <description>The SDN-C core components contains the SLI, dblib and root pom</description>
19
20
21         <issueManagement>
22                 <system>JIRA</system>
23                 <url>https://jira.openecomp.org/</url>
24         </issueManagement>
25
26
27         <scm>
28                 <connection>scm:git:ssh://git@${openecomp.git.host}/sdnc-adaptors.git</connection>
29                 <developerConnection>scm:git:ssh://${openecomp.git.host}:${openecomp.git.port}/${openecomp.git.project}/sdnc-adaptors.git</developerConnection>
30                 <url>${openecomp.git.protocol}://${openecomp.git.host}/projects/${openecomp.git.project}/repos/sdnc-adaptors/browse</url>
31         </scm>
32
33         <ciManagement>
34                 <system>Jenkins</system>
35                 <url>https://jenkins.openecomp.org/</url>
36         </ciManagement>
37
38         <distributionManagement>
39                 <site>
40                         <id>sdnc-javadoc</id>
41                         <url>dav:https://${openecomp.nexus.host}/content/sites/site/org/onap/sdnc/adaptors/${project.artifactId}/${project.version}</url>
42                 </site>
43         </distributionManagement>
44
45         <profiles>
46                 <profile>
47                         <id>blackduck</id>
48                         <activation>
49                                 <property>
50                                         <name>blackduck-scan</name>
51                                 </property>
52                         </activation>
53                         <build>
54                                 <plugins>
55                                         <plugin>
56                                                 <groupId>com.blackducksoftware.integration</groupId>
57                                                 <artifactId>hub-maven-plugin</artifactId>
58                                                 <version>1.4.0</version>
59                                                 <inherited>false</inherited>
60                                                 <configuration>
61                                                         <hubProjectName>${project.name}</hubProjectName>
62                                                         <outputDirectory>${project.basedir}</outputDirectory>
63                                                 </configuration>
64                                                 <executions>
65                                                         <execution>
66                                                                 <id>create-bdio-file</id>
67                                                                 <phase>package</phase>
68                                                                 <goals>
69                                                                         <goal>createHubOutput</goal>
70                                                                 </goals>
71                                                         </execution>
72                                                 </executions>
73                                         </plugin>
74                                 </plugins>
75
76
77                         </build>
78
79                 </profile>
80
81         </profiles>
82
83         <build>
84                 <plugins>
85                         <plugin>
86                                 <groupId>org.apache.maven.plugins</groupId>
87                                 <artifactId>maven-surefire-plugin</artifactId>
88                                 <version>2.17</version>
89                                 <configuration>
90                                         <skipTests>true</skipTests>
91                                 </configuration>
92                         </plugin>
93                         <plugin>
94                                 <groupId>org.sonatype.plugins</groupId>
95                                 <artifactId>nexus-staging-maven-plugin</artifactId>
96                                 <version>1.6.7</version>
97                                 <extensions>true</extensions>
98                                 <configuration>
99                                         <nexusUrl>https://${openecomp.nexus.host}</nexusUrl>
100                                         <stagingProfileId>${openecomp.nexus.staging.profile-id}</stagingProfileId>
101                                         <serverId>${openecomp.nexus.staging.server-id}</serverId>
102                                 </configuration>
103                         </plugin>
104                 </plugins>
105
106         </build>
107         <modules>
108                 <module>aai-service</module>
109                 <module>mdsal-resource</module>
110                 <module>resource-assignment</module>
111                 <module>sql-resource</module>
112         </modules>
113         <organization>
114                 <name>OpenECOMP</name>
115         </organization>
116         <version>0.0.1-SNAPSHOT</version>
117
118
119 </project>