root / pom.xml

View | Annotate | Download

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