blob: da42e91467801863699c59be2dae9a7edfdab05c [file] [log] [blame]
Brian O'Connor932d9412014-12-03 17:20:11 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07003 ~ Copyright 2014-present Open Networking Foundation
Brian O'Connor932d9412014-12-03 17:20:11 -08004 ~
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
Brian O'Connor932d9412014-12-03 17:20:11 -080022 <groupId>org.onosproject</groupId>
23 <artifactId>onos-base</artifactId>
24 <packaging>pom</packaging>
Carmelo Casconec0e351f2019-11-15 21:17:14 -080025 <version>2</version>
Brian O'Connor932d9412014-12-03 17:20:11 -080026
27 <name>${project.artifactId}</name>
28 <description>Open Network Operating System Base Pom</description>
29
30 <url>http://onosproject.org/</url>
31
32 <scm>
33 <connection>scm:git:https://gerrit.onosproject.org/onos</connection>
34 <developerConnection>scm:git:https://gerrit.onosproject.org/onos</developerConnection>
35 <url>http://gerrit.onosproject.org/</url>
36 </scm>
37
38 <licenses>
39 <license>
40 <name>Apache License, Version 2.0</name>
41 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
42 </license>
43 </licenses>
44
45 <developers>
46 <developer>
Carmelo Casconec0e351f2019-11-15 21:17:14 -080047 <organization>Open Networking Foundation</organization>
48 <url>http://www.opennetworking.org</url>
Brian O'Connor932d9412014-12-03 17:20:11 -080049 </developer>
50 </developers>
51
HIGUCHI Yutaee6a8292015-12-08 09:47:55 -080052 <properties>
53 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Carmelo Casconec0e351f2019-11-15 21:17:14 -080054 <maven.javadoc.plugin.version>3.1.1</maven.javadoc.plugin.version>
55 <maven.source.plugin.version>3.1.0</maven.source.plugin.version>
HIGUCHI Yutaee6a8292015-12-08 09:47:55 -080056 </properties>
57
Brian O'Connor932d9412014-12-03 17:20:11 -080058 <distributionManagement>
59 <snapshotRepository>
60 <id>ossrh</id>
61 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
62 </snapshotRepository>
63 </distributionManagement>
64
65 <profiles>
66 <profile>
67 <id>release</id>
68 <build>
69 <plugins>
70 <plugin>
71 <groupId>org.apache.maven.plugins</groupId>
72 <artifactId>maven-source-plugin</artifactId>
Carmelo Casconec0e351f2019-11-15 21:17:14 -080073 <version>${maven.source.plugin.version}</version>
Brian O'Connor932d9412014-12-03 17:20:11 -080074 <executions>
75 <execution>
76 <id>attach-sources</id>
77 <goals>
78 <goal>jar-no-fork</goal>
79 </goals>
80 </execution>
81 </executions>
82 </plugin>
83 <plugin>
84 <groupId>org.apache.maven.plugins</groupId>
85 <artifactId>maven-javadoc-plugin</artifactId>
Carmelo Casconec0e351f2019-11-15 21:17:14 -080086 <version>${maven.javadoc.plugin.version}</version>
Brian O'Connor932d9412014-12-03 17:20:11 -080087 <executions>
88 <execution>
89 <id>attach-javadocs</id>
90 <goals>
91 <goal>jar</goal>
92 </goals>
93 </execution>
94 </executions>
95 </plugin>
96 <plugin>
97 <groupId>org.apache.maven.plugins</groupId>
98 <artifactId>maven-gpg-plugin</artifactId>
99 <version>1.5</version>
100 <executions>
101 <execution>
102 <id>sign-artifacts</id>
103 <phase>verify</phase>
104 <goals>
105 <goal>sign</goal>
106 </goals>
107 </execution>
108 </executions>
109 </plugin>
110 <plugin>
111 <groupId>org.sonatype.plugins</groupId>
112 <artifactId>nexus-staging-maven-plugin</artifactId>
113 <version>1.6.5</version>
114 <extensions>true</extensions>
115 <configuration>
116 <serverId>ossrh</serverId>
117 <nexusUrl>https://oss.sonatype.org/</nexusUrl>
118 <autoReleaseAfterClose>false</autoReleaseAfterClose>
119 </configuration>
120 </plugin>
121 </plugins>
122 </build>
123 </profile>
124 </profiles>
125</project>