forked from matsim-org/otp-matsim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
100 lines (94 loc) · 4.09 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!--
~ /* *********************************************************************** *
~ * project: org.matsim.*
~ * pom.xml
~ * *
~ * *********************************************************************** *
~ * *
~ * copyright : (C) 2015 by the members listed in the COPYING, *
~ * LICENSE and WARRANTY file. *
~ * email : info at matsim dot org *
~ * *
~ * *********************************************************************** *
~ * *
~ * This program is free software; you can redistribute it and/or modify *
~ * it under the terms of the GNU General Public License as published by *
~ * the Free Software Foundation; either version 2 of the License, or *
~ * (at your option) any later version. *
~ * See also COPYING, LICENSE and WARRANTY file *
~ * *
~ * *********************************************************************** */
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>vsp</groupId>
<artifactId>otp-matsim</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>otp-matsim</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<showWarnings>false</showWarnings>
<showDeprecation>false</showDeprecation>
<encoding>UTF-8</encoding>
<!-- configure initial and maximal memory for compiling -->
<fork>true</fork>
<meminitial>128m</meminitial>
<maxmem>512m</maxmem>
<compilerArguments>
<Xmaxwarns>4000</Xmaxwarns>
<Xmaxerrs>100</Xmaxerrs>
</compilerArguments>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<!-- For OpenTripPlanner -->
<id>conveyal</id>
<name>Conveyal Maven Repository</name>
<url>http://maven.conveyal.com/</url>
</repository>
<repository>
<!-- Geotools is not on Maven central -->
<id>osgeo</id>
<name>Geotools repository</name>
<url>http://download.osgeo.org/webdav/geotools</url>
</repository>
<repository>
<id>matsim</id>
<url>http://dl.bintray.com/matsim/matsim</url>
</repository>
<repository>
<id>ojo-snapshots</id>
<url>http://oss.jfrog.org/libs-snapshot</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.opentripplanner</groupId>
<artifactId>otp</artifactId>
<version>0.19.0</version>
</dependency>
<dependency>
<groupId>org.matsim</groupId>
<artifactId>matsim</artifactId>
<version>0.8.0-SNAPSHOT</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
</dependencies>
</project>