[SKIPTESTS] Disable unit tests
[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-SNAPSHOT</version>
19                 <relativePath>rootpom/pom.xml</relativePath>
20         </parent>
21
22
23
24         <issueManagement>
25                 <system>JIRA</system>
26                 <url>http://jira.openecomp.org/</url>
27         </issueManagement>
28
29
30         <scm>
31                 <connection>scm:git:ssh://git@${openecomp.git.host}/sdnc-code.git</connection>
32                 <developerConnection>scm:git:ssh://${openecomp.git.host}:${openecomp.git.port}/${openecomp.git.project}/sdnc-core.git</developerConnection>
33                 <url>${openecomp.git.protocol}://${openecomp.git.host}/projects/${openecomp.git.project}/repos/sdnc-core/browse</url>
34                 <tag>HEAD</tag>
35         </scm>
36
37         <ciManagement>
38                 <system>Jenkins</system>
39                 <url>>https://jenkins.openecomp.org/</url>
40         </ciManagement>
41
42
43         <distributionManagement>
44                 <site>
45                         <id>sdnc-javadoc</id>
46                         <url>dav:https://${openecomp.nexus.host}:${openecomp.nexus.port}/repository/sdn-c-javadoc/${project.artifactId}/${project.version}</url>
47                 </site>
48         </distributionManagement>
49
50         <build>
51                 <plugins>
52                         <!-- license plugin -->
53
54                         <plugin>
55
56                                 <groupId>org.codehaus.mojo</groupId>
57
58                                 <artifactId>license-maven-plugin</artifactId>
59
60                                 <version>1.10</version>
61
62                                 <configuration>
63
64                                         <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
65
66                                         <processStartTag>============LICENSE_START=======================================================</processStartTag>
67
68                                         <processEndTag>============LICENSE_END=========================================================</processEndTag>
69
70                                         <sectionDelimiter>================================================================================</sectionDelimiter>
71
72                                         <licenseName>apache_v2</licenseName>
73
74                                         <inceptionYear>2017</inceptionYear>
75
76                                         <organizationName>AT&amp;T Intellectual Property. All rights
77                                                 reserved.</organizationName>
78
79                                         <projectName>openECOMP : SDN-C</projectName>
80
81                                         <canUpdateCopyright>true</canUpdateCopyright>
82
83                                         <canUpdateDescription>true</canUpdateDescription>
84
85                                         <canUpdateLicense>true</canUpdateLicense>
86
87                                         <emptyLineAfterHeader>true</emptyLineAfterHeader>
88
89                                 </configuration>
90
91                                 <executions>
92
93                                         <execution>
94
95                                                 <id>first</id>
96
97                                                 <goals>
98
99                                                         <goal>update-file-header</goal>
100
101                                                 </goals>
102
103                                                 <phase>process-sources</phase>
104
105                                         </execution>
106
107                                 </executions>
108
109                         </plugin>
110                         <!-- Blackduck plugin breaks release build <plugin> <groupId>com.blackducksoftware.integration</groupId>
111                                 <artifactId>hub-maven-plugin</artifactId> <version>1.4.0</version> <inherited>false</inherited>
112                                 <configuration> <hubProjectName>${project.name}</hubProjectName> <outputDirectory>${project.basedir}</outputDirectory>
113                                 </configuration> <executions> <execution> <id>create-bdio-file</id> <phase>package</phase>
114                                 <goals> <goal>createHubOutput</goal> </goals> </execution> </executions>
115                                 </plugin> -->
116                         <plugin>
117                                 <groupId>org.sonatype.plugins</groupId>
118                                 <artifactId>nexus-staging-maven-plugin</artifactId>
119                                 <version>1.6.7</version>
120                                 <extensions>true</extensions>
121                                 <configuration>
122                                         <nexusUrl>https://nexus.openecomp.org</nexusUrl>
123                                         <stagingProfileId>176c31dfe190a</stagingProfileId>
124                                         <serverId>ecomp-staging</serverId>
125                                 </configuration>
126                         </plugin>
127                         <plugin>
128                                 <groupId>org.apache.maven.plugins</groupId>
129                                 <artifactId>maven-surefire-plugin</artifactId>
130                                 <version>2.17</version>
131                                 <configuration>
132                                         <skipTests>true</skipTests>
133                                 </configuration>
134                         </plugin>
135
136                 </plugins>
137
138         </build>
139         <modules>
140                 <module>rootpom</module>
141                 <module>dblib</module>
142                 <module>filters</module>
143                 <module>sli</module>
144                 <module>sliPluginUtils</module>
145                 <module>sliapi</module>
146         </modules>
147         <organization>
148                 <name>AT&amp;T</name>
149         </organization>
150         <version>1.0.0-SNAPSHOT</version>
151
152
153 </project>