[VERSION] Official root pom version
[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         <build>
50                 <plugins>
51                         <!-- license plugin -->
52
53                         <plugin>
54
55                                 <groupId>org.codehaus.mojo</groupId>
56
57                                 <artifactId>license-maven-plugin</artifactId>
58
59                                 <version>1.10</version>
60
61                                 <configuration>
62
63                                         <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
64
65                                         <processStartTag>============LICENSE_START=======================================================</processStartTag>
66
67                                         <processEndTag>============LICENSE_END=========================================================</processEndTag>
68
69                                         <sectionDelimiter>================================================================================</sectionDelimiter>
70
71                                         <licenseName>apache_v2</licenseName>
72
73                                         <inceptionYear>2017</inceptionYear>
74
75                                         <organizationName>AT&amp;T Intellectual Property. All rights
76                                                 reserved.</organizationName>
77
78                                         <projectName>openECOMP : SDN-C</projectName>
79
80                                         <canUpdateCopyright>true</canUpdateCopyright>
81
82                                         <canUpdateDescription>true</canUpdateDescription>
83
84                                         <canUpdateLicense>true</canUpdateLicense>
85
86                                         <emptyLineAfterHeader>true</emptyLineAfterHeader>
87
88                                 </configuration>
89
90                                 <executions>
91
92                                         <execution>
93
94                                                 <id>first</id>
95
96                                                 <goals>
97
98                                                         <goal>update-file-header</goal>
99
100                                                 </goals>
101
102                                                 <phase>process-sources</phase>
103
104                                         </execution>
105
106                                 </executions>
107
108                         </plugin>
109                         <!-- Blackduck plugin breaks release build <plugin> <groupId>com.blackducksoftware.integration</groupId>
110                                 <artifactId>hub-maven-plugin</artifactId> <version>1.4.0</version> <inherited>false</inherited>
111                                 <configuration> <hubProjectName>${project.name}</hubProjectName> <outputDirectory>${project.basedir}</outputDirectory>
112                                 </configuration> <executions> <execution> <id>create-bdio-file</id> <phase>package</phase>
113                                 <goals> <goal>createHubOutput</goal> </goals> </execution> </executions>
114                                 </plugin> -->
115                         <plugin>
116                                 <groupId>org.sonatype.plugins</groupId>
117                                 <artifactId>nexus-staging-maven-plugin</artifactId>
118                                 <version>1.6.7</version>
119                                 <extensions>true</extensions>
120                                 <configuration>
121                                         <nexusUrl>https://nexus.openecomp.org</nexusUrl>
122                                         <stagingProfileId>176c31dfe190a</stagingProfileId>
123                                         <serverId>ecomp-staging</serverId>
124                                 </configuration>
125                         </plugin>
126                         <plugin>
127                                 <groupId>org.apache.maven.plugins</groupId>
128                                 <artifactId>maven-surefire-plugin</artifactId>
129                                 <version>2.17</version>
130                                 <configuration>
131                                         <skipTests>true</skipTests>
132                                 </configuration>
133                         </plugin>
134
135                 </plugins>
136
137         </build>
138         <modules>
139                 <module>rootpom</module>
140                 <module>dblib</module>
141                 <module>filters</module>
142                 <module>sli</module>
143                 <module>sliPluginUtils</module>
144                 <module>sliapi</module>
145         </modules>
146         <organization>
147                 <name>AT&amp;T</name>
148         </organization>
149         <version>1.0.0</version>
150
151
152 </project>