up-playgrounds-0.10.0-20180822.073351-27.pom
Checksums
|
MD5
|
864504e78ae7d2e58f200feb0fc32478
|
|
SHA1
|
5263661b53abae912002e29c37cf335209c47d48
|
|
SHA256
|
d0d1c29e1aae0159e208222a4e3bb3bdab60d0125bd8ad8c7443e81bbffb86e9
|
|
SHA512
|
03a88c5a27c06ff755510fbb8556d87e17a50e133ffe9ed327846faa84f84ae7bbb7160be85915dbe74b4a1ed42e6e438e721a8e1ef9a2cf717eefee2115cadf
|
POM
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.matsim.up</groupId>
<artifactId>up-playgrounds</artifactId>
<packaging>pom</packaging>
<version>0.10.0-SNAPSHOT</version>
<name>UP-Playgrounds</name>
<scm>
<url>https://github.com/matsim-up/up-playgrounds.git</url>
<connection>scm:git:git://github.com/matsim-up/up-playgrounds.git</connection>
<developerConnection>scm:git:git@github.com:matsim-up/up-playgrounds.git</developerConnection>
</scm>
<repositories>
<repository>
<id>matsim</id>
<url>https://dl.bintray.com/matsim/matsim</url>
</repository>
<repository>
<id>ojo-snapshots</id>
<url>http://oss.jfrog.org/libs-snapshot</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</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>
<!-- for older jsprit versions. please migrate to new, they are on Maven central -->
<id>jsprit-releases</id>
<url>https://github.com/jsprit/mvn-rep/raw/master/releases</url>
</repository>
<repository>
<!-- The South African specific projects -->
<id>matsim-up-matsim-up</id>
<url>https://packagecloud.io/matsim-up/matsim-up/maven2</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<!-- The South African specific freight (formerly called Digicore) project -->
<id>matsim-up-freight-sa</id>
<url>https://packagecloud.io/matsim-up/freight-sa/maven2</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<build>
<extensions>
<extension>
<groupId>io.packagecloud.maven.wagon</groupId>
<artifactId>maven-packagecloud-wagon</artifactId>
<version>0.0.6</version>
</extension>
</extensions>
<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>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19</version>
<configuration>
<excludes>
<exclude>**/*$*</exclude> <!-- exclude all inner classes -->
<exclude>**/*PerformanceTest.java</exclude>
</excludes>
<forkMode>once</forkMode>
<argLine>-Xmx400m -Djava.awt.headless=true</argLine>
<enableAssertions>false</enableAssertions> <!-- this should be set to true, but we still have some tests that don't work otherwise... -->
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.19.1</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.8</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<modules>
<module>djdebeer</module>
<module>jwjoubert</module>
<module>nmviljoen</module>
<module>onnene</module>
<module>up</module>
</modules>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.matsim</groupId>
<artifactId>matsim</artifactId>
<version>0.10.0</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.matsim</groupId>
<artifactId>matsim</artifactId>
<version>0.10.0</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.matsim</groupId>
<artifactId>matsim-examples</artifactId>
<version>0.10.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.matsim.up</groupId>
<artifactId>matsim-up</artifactId>
<version>0.10.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.matsim.up.freight</groupId>
<artifactId>freight-sa</artifactId>
<version>0.10.0-SNAPSHOT</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>release</id>
<build>
<defaultGoal>assembly:assembly</defaultGoal>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/main/assembly/assembly-release.xml</descriptor>
</descriptors>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>libs/</classpathPrefix>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
</profiles>
<distributionManagement>
<repository>
<id>packagecloud-matsim-up</id>
<url>packagecloud+https://packagecloud.io/matsim-up/up-playgrounds</url>
</repository>
<snapshotRepository>
<id>packagecloud-matsim-up</id>
<url>packagecloud+https://packagecloud.io/matsim-up/up-playgrounds</url>
</snapshotRepository>
</distributionManagement>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.graphstream</groupId>
<artifactId>gs-ui</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>org.graphstream</groupId>
<artifactId>gs-core</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math</artifactId>
<version>2.2</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
</dependencies>
</dependencyManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>