Adding test pom.xml for release prerequisite validation
Change-Id: Id6c88c134d85435d9036f9d139a6ed27e0a500f7
Showing
2 changed files
with
27 additions
and
0 deletions
tools/build/release-test/pom.xml
0 → 100644
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
| 5 | + <modelVersion>4.0.0</modelVersion> | ||
| 6 | + | ||
| 7 | + <prerequisites> | ||
| 8 | + <maven>3.0.1</maven> | ||
| 9 | + </prerequisites> | ||
| 10 | + | ||
| 11 | + <parent> | ||
| 12 | + <groupId>org.onosproject</groupId> | ||
| 13 | + <artifactId>onos-base</artifactId> | ||
| 14 | + <version>1</version> | ||
| 15 | + <relativePath>tools/build/pom.xml</relativePath> | ||
| 16 | + </parent> | ||
| 17 | + | ||
| 18 | + <groupId>org.onosproject</groupId> | ||
| 19 | + <artifactId>onos-release-test</artifactId> | ||
| 20 | + <packaging>pom</packaging> | ||
| 21 | + <version>1.0</version> | ||
| 22 | + | ||
| 23 | + <name>${project.artifactId}</name> | ||
| 24 | + <description>ONOS release validation pom</description> | ||
| 25 | +</project> | ||
| 26 | + |
-
Please register or login to post a comment