blob: ad56827a5e21fd6fabbd96037f5b47bb3246ccdb [file] [log] [blame]
alshabib676bef52016-06-02 12:18:32 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2014-present Open Networking Laboratory
4 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
16 -->
17<project xmlns="http://maven.apache.org/POM/4.0.0"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <prerequisites>
23 <maven>3.0.0</maven>
24 </prerequisites>
25
26 <groupId>org.opencord</groupId>
27 <artifactId>cord-base</artifactId>
28 <packaging>pom</packaging>
29 <version>1</version>
30
31 <name>${project.artifactId}</name>
32 <description>Open CORD Base Pom</description>
33
34 <url>http://opencord.org/</url>
35
36 <licenses>
37 <license>
38 <name>Apache License, Version 2.0</name>
39 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
40 </license>
41 </licenses>
42
43 <developers>
44 <developer>
45 <organization>Open Networking Lab</organization>
46 <url>http://onlab.us</url>
47 </developer>
48 </developers>
49
50 <properties>
51 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
52 </properties>
53
54 <distributionManagement>
55 <snapshotRepository>
56 <id>ossrh</id>
57 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
58 </snapshotRepository>
59 </distributionManagement>
60
61 <profiles>
62 <profile>
63 <id>release</id>
64 <build>
65 <plugins>
66 <plugin>
67 <groupId>org.apache.maven.plugins</groupId>
68 <artifactId>maven-source-plugin</artifactId>
69 <version>2.2.1</version>
70 <executions>
71 <execution>
72 <id>attach-sources</id>
73 <goals>
74 <goal>jar-no-fork</goal>
75 </goals>
76 </execution>
77 </executions>
78 </plugin>
79 <plugin>
80 <groupId>org.apache.maven.plugins</groupId>
81 <artifactId>maven-javadoc-plugin</artifactId>
82 <executions>
83 <execution>
84 <id>attach-javadocs</id>
85 <goals>
86 <goal>jar</goal>
87 </goals>
88 </execution>
89 </executions>
90 </plugin>
91 <plugin>
92 <groupId>org.apache.maven.plugins</groupId>
93 <artifactId>maven-gpg-plugin</artifactId>
94 <version>1.5</version>
95 <executions>
96 <execution>
97 <id>sign-artifacts</id>
98 <phase>verify</phase>
99 <goals>
100 <goal>sign</goal>
101 </goals>
102 </execution>
103 </executions>
104 </plugin>
105 <plugin>
106 <groupId>org.sonatype.plugins</groupId>
107 <artifactId>nexus-staging-maven-plugin</artifactId>
108 <version>1.6.5</version>
109 <extensions>true</extensions>
110 <configuration>
111 <serverId>ossrh</serverId>
112 <nexusUrl>https://oss.sonatype.org/</nexusUrl>
113 <autoReleaseAfterClose>false</autoReleaseAfterClose>
114 </configuration>
115 </plugin>
116 </plugins>
117 </build>
118 </profile>
119 </profiles>
120</project>