Brian O'Connor | 932d941 | 2014-12-03 17:20:11 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | 5ab426f | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 3 | ~ Copyright 2014-present Open Networking Laboratory |
Brian O'Connor | 932d941 | 2014-12-03 17:20:11 -0800 | [diff] [blame] | 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.onosproject</groupId> |
| 27 | <artifactId>onos-base</artifactId> |
| 28 | <packaging>pom</packaging> |
| 29 | <version>1</version> |
| 30 | |
| 31 | <name>${project.artifactId}</name> |
| 32 | <description>Open Network Operating System Base Pom</description> |
| 33 | |
| 34 | <url>http://onosproject.org/</url> |
| 35 | |
| 36 | <scm> |
| 37 | <connection>scm:git:https://gerrit.onosproject.org/onos</connection> |
| 38 | <developerConnection>scm:git:https://gerrit.onosproject.org/onos</developerConnection> |
| 39 | <url>http://gerrit.onosproject.org/</url> |
| 40 | </scm> |
| 41 | |
| 42 | <licenses> |
| 43 | <license> |
| 44 | <name>Apache License, Version 2.0</name> |
| 45 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 46 | </license> |
| 47 | </licenses> |
| 48 | |
| 49 | <developers> |
| 50 | <developer> |
| 51 | <organization>Open Networking Lab</organization> |
| 52 | <url>http://onlab.us</url> |
| 53 | </developer> |
| 54 | </developers> |
| 55 | |
HIGUCHI Yuta | ee6a829 | 2015-12-08 09:47:55 -0800 | [diff] [blame] | 56 | <properties> |
| 57 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 58 | </properties> |
| 59 | |
Brian O'Connor | 932d941 | 2014-12-03 17:20:11 -0800 | [diff] [blame] | 60 | <distributionManagement> |
| 61 | <snapshotRepository> |
| 62 | <id>ossrh</id> |
| 63 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 64 | </snapshotRepository> |
| 65 | </distributionManagement> |
| 66 | |
| 67 | <profiles> |
| 68 | <profile> |
| 69 | <id>release</id> |
| 70 | <build> |
| 71 | <plugins> |
| 72 | <plugin> |
| 73 | <groupId>org.apache.maven.plugins</groupId> |
| 74 | <artifactId>maven-source-plugin</artifactId> |
| 75 | <version>2.2.1</version> |
| 76 | <executions> |
| 77 | <execution> |
| 78 | <id>attach-sources</id> |
| 79 | <goals> |
| 80 | <goal>jar-no-fork</goal> |
| 81 | </goals> |
| 82 | </execution> |
| 83 | </executions> |
| 84 | </plugin> |
| 85 | <plugin> |
| 86 | <groupId>org.apache.maven.plugins</groupId> |
| 87 | <artifactId>maven-javadoc-plugin</artifactId> |
Brian O'Connor | 932d941 | 2014-12-03 17:20:11 -0800 | [diff] [blame] | 88 | <executions> |
| 89 | <execution> |
| 90 | <id>attach-javadocs</id> |
| 91 | <goals> |
| 92 | <goal>jar</goal> |
| 93 | </goals> |
| 94 | </execution> |
| 95 | </executions> |
| 96 | </plugin> |
| 97 | <plugin> |
| 98 | <groupId>org.apache.maven.plugins</groupId> |
| 99 | <artifactId>maven-gpg-plugin</artifactId> |
| 100 | <version>1.5</version> |
| 101 | <executions> |
| 102 | <execution> |
| 103 | <id>sign-artifacts</id> |
| 104 | <phase>verify</phase> |
| 105 | <goals> |
| 106 | <goal>sign</goal> |
| 107 | </goals> |
| 108 | </execution> |
| 109 | </executions> |
| 110 | </plugin> |
| 111 | <plugin> |
| 112 | <groupId>org.sonatype.plugins</groupId> |
| 113 | <artifactId>nexus-staging-maven-plugin</artifactId> |
| 114 | <version>1.6.5</version> |
| 115 | <extensions>true</extensions> |
| 116 | <configuration> |
| 117 | <serverId>ossrh</serverId> |
| 118 | <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 119 | <autoReleaseAfterClose>false</autoReleaseAfterClose> |
| 120 | </configuration> |
| 121 | </plugin> |
| 122 | </plugins> |
| 123 | </build> |
| 124 | </profile> |
| 125 | </profiles> |
| 126 | </project> |