
service is now monasca_thresh. Config file in /etc/monasca Fixed start and stop in install script Change-Id: I5272c8ac32e497be978f8c59c4c5b6964ed4e9d2
65 lines
1.7 KiB
XML
65 lines
1.7 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-thresh-base</artifactId>
|
|
<version>${computedVersion}</version>
|
|
<url>http://github.com/stackforge/monasca-common</url>
|
|
<packaging>pom</packaging>
|
|
|
|
<!--
|
|
<prerequisites>
|
|
<maven>3.0</maven>
|
|
</prerequisites>
|
|
-->
|
|
|
|
<properties>
|
|
<!-- Versioning -->
|
|
<versionNumber>1.0.0</versionNumber>
|
|
<computedVersion>${versionNumber}-SNAPSHOT</computedVersion>
|
|
|
|
<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:stackforge/monasca-thresh</connection>
|
|
<developerConnection>scm:git:git@github.com:stackforge/monasca-thresh</developerConnection>
|
|
</scm>
|
|
|
|
<modules>
|
|
<module>download</module>
|
|
<module>thresh</module>
|
|
</modules>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>release-deploy-url-override</id>
|
|
<activation>
|
|
<property>
|
|
<name>BUILD_NUM</name>
|
|
</property>
|
|
</activation>
|
|
<properties>
|
|
<computedVersion>${project.version}</computedVersion>
|
|
</properties>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-scm-plugin</artifactId>
|
|
<version>1.9</version>
|
|
<configuration>
|
|
<tag>${project.version}</tag>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|