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