root / pom.xml

View | Annotate | Download

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