[SDNC-5] Boron port and bug fixes
[sdnc/core.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/maven-v4_0_0.xsd">
3
4         <modelVersion>4.0.0</modelVersion>
5         <packaging>pom</packaging>
6         <groupId>org.openecomp.sdnc.core</groupId>
7         <artifactId>sdnc-core</artifactId>
8
9
10         <name>SDN-C Core Components</name>
11         <url>https://wiki.openecomp.org</url>
12         <description>The SDN-C core components contains the SLI, dblib and root pom</description>
13
14         <parent>
15                 <groupId>org.openecomp.sdnc.core</groupId>
16                 <artifactId>root</artifactId>
17                 <version>1.1.0-SNAPSHOT</version>
18                 <relativePath>rootpom/pom.xml</relativePath>
19         </parent>
20
21
22         <issueManagement>
23                 <system>JIRA</system>
24                 <url>http://jira.openecomp.org/</url>
25         </issueManagement>
26
27
28         <scm>
29                 <connection>scm:git:ssh://git@${openecomp.git.host}/sdnc-code.git</connection>
30                 <developerConnection>scm:git:ssh://${openecomp.git.host}:${openecomp.git.port}/${openecomp.git.project}/sdnc-core.git</developerConnection>
31                 <url>${openecomp.git.protocol}://${openecomp.git.host}/projects/${openecomp.git.project}/repos/sdnc-core/browse</url>
32                 <tag>sdnc-core-1.1.0</tag>
33         </scm>
34
35         <ciManagement>
36                 <system>Jenkins</system>
37                 <url>https://jenkins.openecomp.org/</url>
38         </ciManagement>
39
40
41         <distributionManagement>
42                 <site>
43                         <id>ecomp-site</id>
44                         <url>dav:https://${openecomp.nexus.host}/content/sites/site/org/onap/sdnc/${project.artifactId}/${project.version}</url>
45                 </site>
46         </distributionManagement>
47
48
49         <profiles>
50                 <profile>
51                         <id>blackduck</id>
52                         <activation>
53                                 <property>
54                                         <name>blackduck-scan</name>
55                                 </property>
56                         </activation>
57                         <build>
58                                         <plugins>
59                                                 <plugin>
60                                                         <groupId>com.blackducksoftware.integration</groupId>
61                                                         <artifactId>hub-maven-plugin</artifactId>
62                                                         <version>1.4.0</version>
63                                                         <inherited>false</inherited>
64                                                         <configuration>
65                                                                 <hubProjectName>${project.name}</hubProjectName>
66                                                                 <outputDirectory>${project.basedir}</outputDirectory>
67                                                         </configuration>
68                                                         <executions>
69                                                                 <execution>
70                                                                         <id>create-bdio-file</id>
71                                                                         <phase>package</phase>
72                                                                         <goals>
73                                                                                 <goal>createHubOutput</goal>
74                                                                         </goals>
75                                                                 </execution>
76                                                         </executions>
77                                                 </plugin>
78                                         </plugins>
79
80
81
82                         </build>
83
84                 </profile>
85
86         </profiles>
87
88         <build>
89                 <plugins>
90                         <!-- license plugin -->
91
92                         <plugin>
93
94                                 <groupId>org.codehaus.mojo</groupId>
95
96                                 <artifactId>license-maven-plugin</artifactId>
97
98                                 <version>1.10</version>
99
100                                 <configuration>
101
102                                         <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
103
104                                         <processStartTag>============LICENSE_START=======================================================</processStartTag>
105
106                                         <processEndTag>============LICENSE_END=========================================================</processEndTag>
107
108                                         <sectionDelimiter>================================================================================</sectionDelimiter>
109
110                                         <licenseName>apache_v2</licenseName>
111
112                                         <inceptionYear>2017</inceptionYear>
113
114                                         <organizationName>AT&amp;T Intellectual Property. All rights
115                                                 reserved.</organizationName>
116
117                                         <projectName>openECOMP : SDN-C</projectName>
118
119                                         <canUpdateCopyright>true</canUpdateCopyright>
120
121                                         <canUpdateDescription>true</canUpdateDescription>
122
123                                         <canUpdateLicense>true</canUpdateLicense>
124
125                                         <emptyLineAfterHeader>true</emptyLineAfterHeader>
126
127                                 </configuration>
128
129                                 <executions>
130
131                                         <execution>
132
133                                                 <id>first</id>
134
135                                                 <goals>
136
137                                                         <goal>update-file-header</goal>
138
139                                                 </goals>
140
141                                                 <phase>process-sources</phase>
142
143                                         </execution>
144
145                                 </executions>
146
147                         </plugin>
148
149
150                         <plugin>
151                                 <groupId>org.apache.maven.plugins</groupId>
152                                 <artifactId>maven-surefire-plugin</artifactId>
153                                 <version>2.17</version>
154                                 <configuration>
155                                         <skipTests>true</skipTests>
156                                 </configuration>
157                         </plugin>
158                         <plugin>
159                                 <groupId>org.sonatype.plugins</groupId>
160                                 <artifactId>nexus-staging-maven-plugin</artifactId>
161                                 <version>1.6.7</version>
162                                 <extensions>true</extensions>
163                                 <configuration>
164                                         <nexusUrl>https://${openecomp.nexus.host}</nexusUrl>
165                                         <stagingProfileId>${openecomp.nexus.staging.profile-id}</stagingProfileId>
166                                         <serverId>${openecomp.nexus.staging.server-id}</serverId>
167                                 </configuration>
168                         </plugin>
169
170                 </plugins>
171
172         </build>
173         <modules>
174                 <module>rootpom</module>
175                 <module>dblib</module>
176                 <module>sli</module>
177                 <module>filters</module>
178                 <module>sliPluginUtils</module>
179                 <module>sliapi</module>
180         </modules>
181         <organization>
182                 <name>OpenECOMP</name>
183         </organization>
184         <version>1.1.0-SNAPSHOT</version>
185
186
187 </project>