|
| 1 | +<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/maven-v4_0_0.xsd"> |
| 2 | + <parent> |
| 3 | + <groupId>org.matsim</groupId> |
| 4 | + <artifactId>contrib</artifactId> |
| 5 | + <version>12.0-SNAPSHOT</version> |
| 6 | + </parent> |
| 7 | + <modelVersion>4.0.0</modelVersion> |
| 8 | + <groupId>org.matsim.contrib</groupId> |
| 9 | + <artifactId>accessibility</artifactId> |
| 10 | + <name>accessibility</name> |
| 11 | + <build> |
| 12 | + <resources> |
| 13 | + <resource> |
| 14 | + <directory>src/main/resources</directory> |
| 15 | + <excludes> |
| 16 | + <exclude>**/revision.txt</exclude> |
| 17 | + </excludes> |
| 18 | + </resource> |
| 19 | + <resource> |
| 20 | + <directory>src/main/resources</directory> |
| 21 | + <includes> |
| 22 | + <include>**/revision.txt</include> |
| 23 | + </includes> |
| 24 | + <filtering>true</filtering> |
| 25 | + </resource> |
| 26 | + </resources> |
| 27 | + <plugins> |
| 28 | + <plugin> |
| 29 | + <artifactId>maven-assembly-plugin</artifactId> |
| 30 | + </plugin> |
| 31 | + </plugins> |
| 32 | + </build> |
| 33 | + |
| 34 | + <repositories> |
| 35 | + <repository> |
| 36 | + <id>jitpack.io</id> |
| 37 | + <url>https://jitpack.io</url> |
| 38 | + </repository> |
| 39 | + </repositories> |
| 40 | + |
| 41 | + <dependencies> |
| 42 | + <dependency> |
| 43 | + <groupId>org.matsim.contrib</groupId> |
| 44 | + <artifactId>matrixbasedptrouter</artifactId> |
| 45 | + <version>12.0-SNAPSHOT</version> |
| 46 | + </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>org.matsim.contrib</groupId> |
| 49 | + <artifactId>roadpricing</artifactId> |
| 50 | + <version>12.0-SNAPSHOT</version> |
| 51 | + </dependency> |
| 52 | + <dependency> |
| 53 | + <groupId>net.sf.trove4j</groupId> |
| 54 | + <artifactId>trove4j</artifactId> |
| 55 | + <version>3.0.3</version> |
| 56 | + </dependency> |
| 57 | + <dependency> |
| 58 | + <groupId>org.openstreetmap.osmosis</groupId> |
| 59 | + <artifactId>osmosis-core</artifactId> |
| 60 | + <version>0.47</version> |
| 61 | + <exclusions> |
| 62 | + <!-- needed to compile in IntelliJ with Eclipse compiler --> |
| 63 | + <!-- see: https://bugs.eclipse.org/bugs/show_bug.cgi?id=536928 --> |
| 64 | + <exclusion> |
| 65 | + <artifactId>xml-apis</artifactId> |
| 66 | + <groupId>xml-apis</groupId> |
| 67 | + </exclusion> |
| 68 | + </exclusions> |
| 69 | + </dependency> |
| 70 | + <dependency> |
| 71 | + <groupId>org.openstreetmap.osmosis</groupId> |
| 72 | + <artifactId>osmosis-xml</artifactId> |
| 73 | + <version>0.47</version> |
| 74 | + </dependency> |
| 75 | + <dependency> |
| 76 | + <groupId>org.matsim.contrib</groupId> |
| 77 | + <artifactId>analysis</artifactId> |
| 78 | + <version>12.0-SNAPSHOT</version> |
| 79 | + </dependency> |
| 80 | +<!-- <dependency>--> |
| 81 | +<!-- <groupId>org.matsim.contrib</groupId>--> |
| 82 | +<!-- <artifactId>dvrp</artifactId>--> |
| 83 | +<!-- <version>12.0-SNAPSHOT</version>--> |
| 84 | +<!-- </dependency>--> |
| 85 | + <dependency> |
| 86 | + <groupId>org.apache.commons</groupId> |
| 87 | + <artifactId>commons-math</artifactId> |
| 88 | + <version>2.2</version> |
| 89 | + </dependency> |
| 90 | + <!-- This dependency is required to be able to push to the GeoServer --> |
| 91 | + <dependency> |
| 92 | + <groupId>org.geotools.jdbc</groupId> |
| 93 | + <artifactId>gt-jdbc-postgis</artifactId> |
| 94 | + <version>21.5</version> |
| 95 | + </dependency> |
| 96 | + </dependencies> |
| 97 | +</project> |
0 commit comments