bf4b691389
Depends-On: Ib3da5c9e1f6e5e2d6f77269129bd769179bfd3be Depends-On: I6e4b73525b3c32c2bdd04c63ae73bcb4c50b5447 Depends-On: I72c9fac6943ae5b2c3b367ed9fe5c884c492b48a Change-Id: Ib2e94481000d20c6d0f248ccde2b23ecaf452b8d
54 lines
1.5 KiB
XML
54 lines
1.5 KiB
XML
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>monasca</groupId>
|
|
<artifactId>monasca-api-base</artifactId>
|
|
<version>1.2.1-SNAPSHOT</version>
|
|
<url>http://github.com/openstack/monasca-api</url>
|
|
<packaging>pom</packaging>
|
|
|
|
<properties>
|
|
<!-- Versioning -->
|
|
<exec.args>${version} ${sun.java.command}</exec.args>
|
|
<skipITs>true</skipITs>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
</properties>
|
|
|
|
<scm>
|
|
<connection>scm:git:git@github.com:openstack/monasca-api</connection>
|
|
<developerConnection>scm:git:git@github.com:openstack/monasca-api</developerConnection>
|
|
</scm>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<version>1.1.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>package-execution</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>exec</goal>
|
|
</goals>
|
|
</execution>
|
|
<execution>
|
|
<id>clean-execution</id>
|
|
<phase>clean</phase>
|
|
<goals>
|
|
<goal>exec</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<executable>run_maven.sh</executable>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|