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