mirror of
https://github.com/graphhopper/jsprit.git
synced 2020-01-24 07:45:05 +01:00
115 lines
4.5 KiB
XML
115 lines
4.5 KiB
XML
|
|
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
~ Copyright (C) 2014 Stefan Schroeder
|
|
~
|
|
~ This library is free software; you can redistribute it and/or
|
|
~ modify it under the terms of the GNU Lesser General Public
|
|
~ License as published by the Free Software Foundation; either
|
|
~ version 3.0 of the License, or (at your option) any later version.
|
|
~
|
|
~ This library is distributed in the hope that it will be useful,
|
|
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
~ Lesser General Public License for more details.
|
|
~
|
|
~ You should have received a copy of the GNU Lesser General Public
|
|
~ License along with this library. If not, see <http://www.gnu.org/licenses />.
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
|
|
|
|
<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">
|
|
<parent>
|
|
<groupId>jsprit</groupId>
|
|
<artifactId>jsprit</artifactId>
|
|
<version>1.6.3-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>jsprit-core</artifactId>
|
|
<name>jsprit-core</name>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.eclipse.m2e</groupId>
|
|
<artifactId>lifecycle-mapping</artifactId>
|
|
<version>1.0.0</version>
|
|
<configuration>
|
|
<lifecycleMappingMetadata>
|
|
<pluginExecutions>
|
|
<pluginExecution>
|
|
<pluginExecutionFilter>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
<versionRange>[1.0.0,)</versionRange>
|
|
<goals>
|
|
<goal>enforce</goal>
|
|
</goals>
|
|
</pluginExecutionFilter>
|
|
<action>
|
|
<ignore />
|
|
</action>
|
|
</pluginExecution>
|
|
</pluginExecutions>
|
|
</lifecycleMappingMetadata>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
<plugins>
|
|
<!--<plugin>-->
|
|
<!--<artifactId>maven-surefire-plugin</artifactId>-->
|
|
<!--<version>2.18.1</version>-->
|
|
<!--<configuration>-->
|
|
<!--<excludedGroups>IntegrationTest</excludedGroups>-->
|
|
<!--</configuration>-->
|
|
<!--</plugin>-->
|
|
<!--<plugin>-->
|
|
<!--<artifactId>maven-failsafe-plugin</artifactId>-->
|
|
<!--<version>2.18.1</version>-->
|
|
<!--<configuration>-->
|
|
<!--<includes>-->
|
|
<!--<include>**/*.java</include>-->
|
|
<!--</includes>-->
|
|
<!--<groups>IntegrationTest</groups>-->
|
|
<!--</configuration>-->
|
|
<!--<executions>-->
|
|
<!--<execution>-->
|
|
<!--<goals>-->
|
|
<!--<goal>integration-test</goal>-->
|
|
<!--<goal>verify</goal>-->
|
|
<!--</goals>-->
|
|
<!--</execution>-->
|
|
<!--</executions>-->
|
|
<!--</plugin>-->
|
|
</plugins>
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>commons-configuration</groupId>
|
|
<artifactId>commons-configuration</artifactId>
|
|
<version>1.9</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>xerces</groupId>
|
|
<artifactId>xercesImpl</artifactId>
|
|
<version>2.11.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-math3</artifactId>
|
|
<version>3.4</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
</project>
|