forked from reportengine/report-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
69 lines (59 loc) · 2.14 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<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>com.report.engine</groupId>
<artifactId>report-engine</artifactId>
<version>0.0.2-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Report Engine</name>
<description>Report Engine(RE) is a server to manage monitoring test results and test bed machine resource usage details.</description>
<inceptionYear>2012</inceptionYear>
<scm>
<connection>scm:git:git://github.com/jkandasa/report-engine.git</connection>
<developerConnection>scm:git:[email protected]:jkandasa/report-engine.git</developerConnection>
<url>https://github.com/jkandasa/report-engine</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/jkandasa/report-engine/issues</url>
</issueManagement>
<properties>
<project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
<project.reporting.outputEncoding>ISO-8859-1</project.reporting.outputEncoding>
<jdk.version>1.6</jdk.version>
<!-- Product Information -->
<product.shortName>RE</product.shortName>
<product.name>Report Engine</product.name>
<product.fullName>Report Engine</product.fullName>
<product.url>-</product.url>
<product.supportEmail>[email protected]</product.supportEmail>
<product.version>${project.version}</product.version>
</properties>
<distributionManagement>
<repository>
<id>clojars</id>
<name>Clojars repository</name>
<url>https://clojars.org/repo</url>
</repository>
</distributionManagement>
<modules>
<module>modules</module>
</modules>
<repositories>
<repository>
<id>java.net</id>
<url>http://download.java.net/maven/2</url>
</repository>
<repository>
<id>central</id>
<url>http://repo1.maven.org/maven2/</url>
</repository>
<repository>
<id>JBOSS</id>
<url>https://repository.jboss.org/nexus/content/groups/public-jboss/</url>
</repository>
<repository>
<id>clojars</id>
<url>https://clojars.org/repo</url>
</repository>
</repositories>
</project>