2024-02-10 17:16:32 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
2024-02-10 17:44:26 +01:00
|
|
|
<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>
|
2024-02-10 17:16:32 +01:00
|
|
|
|
2024-03-04 15:37:37 +01:00
|
|
|
<groupId>fr.u-paris.gla.pathfinder</groupId>
|
2024-02-10 17:44:26 +01:00
|
|
|
<artifactId>project</artifactId>
|
|
|
|
<version>2024.1.0.0-SNAPSHOT</version>
|
2024-02-10 17:16:32 +01:00
|
|
|
|
2024-03-04 15:37:37 +01:00
|
|
|
<name>Pathfinder</name>
|
2024-02-10 17:16:32 +01:00
|
|
|
|
2024-02-10 17:44:26 +01:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
|
|
</properties>
|
2024-02-10 17:16:32 +01:00
|
|
|
|
2024-02-10 17:44:26 +01:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
|
|
|
<version>5.9.1</version>
|
|
|
|
</dependency>
|
2024-02-14 10:08:02 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.opencsv</groupId>
|
|
|
|
<artifactId>opencsv</artifactId>
|
|
|
|
<version>5.4</version>
|
|
|
|
</dependency>
|
2024-02-14 14:34:40 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.json</groupId>
|
|
|
|
<artifactId>json</artifactId>
|
2024-04-17 11:23:48 +02:00
|
|
|
<version>20231013</version>
|
2024-02-14 14:34:40 +01:00
|
|
|
</dependency>
|
2024-02-10 17:44:26 +01:00
|
|
|
</dependencies>
|
2024-02-10 17:16:32 +01:00
|
|
|
|
2024-02-10 17:44:26 +01:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2024-03-05 11:40:30 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copy-dependencies</id>
|
|
|
|
<phase>prepare-package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${project.build.directory}/${project.build.finalName}.lib</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2024-02-10 17:44:26 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>3.3.0</version>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<addClasspath>true</addClasspath>
|
2024-03-05 11:40:30 +01:00
|
|
|
<classpathPrefix>${project.build.finalName}.lib/</classpathPrefix>
|
2024-04-08 14:19:44 +02:00
|
|
|
<mainClass>fr.u_paris.gla.project.itinerary.ItineraryCalculator</mainClass>
|
2024-02-10 17:44:26 +01:00
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2024-04-17 11:23:48 +02:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>3.2.5</version>
|
|
|
|
<configuration>
|
|
|
|
<includes>
|
|
|
|
<include>**/*Test.java</include>
|
|
|
|
</includes>
|
|
|
|
<testFailureIgnore>true</testFailureIgnore>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2024-02-10 17:44:26 +01:00
|
|
|
</plugins>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources-filtered</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
2024-02-10 17:16:32 +01:00
|
|
|
</project>
|