root / pom.xml

View | Annotate | Download

1
<?xml version="1.0" encoding="UTF-8"?>
2
<!--
3
  ~ Copyright 2009 Andrey Khalzov, and individual contributors as indicated by the @author tag.
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,
12
  ~ software 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 limitations under the License.
15
  -->
16
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
17
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
18
    <modelVersion>4.0.0</modelVersion>
19
    <groupId>org.wannatrak</groupId>
20
    <artifactId>wannatrak-test</artifactId>
21
22
    <packaging>pom</packaging>
23
24
    <version>0.1</version>
25
26
    <name>Wannatrak Testing Tools</name>
27
    <description>Tools for GPS Tracking Systems Testing</description>
28
29
    <modules>
30
        <module>client</module>
31
        <module>encoder</module>
32
        <module>generator</module>
33
        <module>simulator</module>
34
    </modules>
35
36
    <licenses>
37
        <license>
38
            <name>The Apache Software License, Version 2.0</name>
39
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
40
            <distribution>repo</distribution>
41
        </license>
42
    </licenses>
43
44
    <distributionManagement>
45
        <repository>
46
            <id>internal</id>
47
            <url>http://archiva.wannatrak.org/repository/internal/</url>
48
        </repository>
49
        <snapshotRepository>
50
            <id>snapshots</id>
51
            <url>http://archiva.wannatrak.org/repository/snapshots/</url>
52
        </snapshotRepository>
53
    </distributionManagement>
54
55
    <developers>
56
        <developer>
57
            <id>halls</id>
58
            <name>Andrey Khalzov</name>
59
            <email>andrey.khalzov@wannatrak.org</email>
60
            <timezone>+4</timezone>
61
            <roles>
62
                <role>Lead</role>
63
                <role>Developer</role>
64
            </roles>
65
        </developer>
66
    </developers>
67
68
    <inceptionYear>2009</inceptionYear>
69
70
    <issueManagement>
71
        <system>Redmine</system>
72
        <url>http://www.wannatrak.org/projects/wannatrak-test/issues</url>
73
    </issueManagement>
74
75
    <scm>
76
        <url>http://www.wannatrak.org/repositories/show/wannatrak-test</url>
77
        <connection>scm:bazaar:http://bzr.wannatrak.org/wannatrak-test/main</connection>
78
        <developerConnection>scm:bazaar:sftp://username:password@wannatrak.org/~/wannatrak-test</developerConnection>
79
        <tag>HEAD</tag>
80
    </scm>
81
82
    <properties>
83
        <maven.compiler.source>1.6</maven.compiler.source>
84
        <maven.compiler.target>1.6</maven.compiler.target>
85
    </properties>
86
87
    <repositories>
88
        <repository>
89
            <id>internal</id>
90
            <name>Wannatrak Internal Repository</name>
91
            <url>http://archiva.wannatrak.org/repository/internal/</url>
92
            <releases>
93
                <enabled>true</enabled>
94
            </releases>
95
            <snapshots>
96
                <enabled>false</enabled>
97
            </snapshots>
98
        </repository>
99
100
        <repository>
101
            <id>snapshots</id>
102
            <name>Wannatrak Snapshot Repository</name>
103
            <url>http://archiva.wannatrak.org/repository/snapshots/</url>
104
            <releases>
105
                <enabled>false</enabled>
106
            </releases>
107
            <snapshots>
108
                <enabled>true</enabled>
109
            </snapshots>
110
        </repository>
111
112
        <repository>
113
            <id>ibiblio</id>
114
            <name>Ibiblio repository</name>
115
            <url>http://mirrors.ibiblio.org/pub/mirrors/maven2/</url>
116
        </repository>
117
    </repositories>
118
</project>