root / pom.xml

View | Annotate | Download

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