32 lines
1.1 KiB
XML
32 lines
1.1 KiB
XML
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>red_metro</groupId>
|
|
<artifactId>red_metro</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<dependencies>
|
|
<!-- Librería OpenCSV -->
|
|
<!-- https://mvnrepository.com/artifact/com.opencsv/opencsv -->
|
|
<dependency>
|
|
<groupId>com.opencsv</groupId>
|
|
<artifactId>opencsv</artifactId>
|
|
<version>5.12.0</version>
|
|
</dependency>
|
|
|
|
<!-- Conector MySQL -->
|
|
<!-- https://mvnrepository.com/artifact/com.mysql/mysql-connector-j -->
|
|
<dependency>
|
|
<groupId>com.mysql</groupId>
|
|
<artifactId>mysql-connector-j</artifactId>
|
|
<version>9.5.0</version>
|
|
</dependency>
|
|
|
|
<!-- JACKSON XML -->
|
|
<!-- https://mvnrepository.com/artifact/tools.jackson.dataformat/jackson-dataformat-xml -->
|
|
<dependency>
|
|
<groupId>tools.jackson.dataformat</groupId>
|
|
<artifactId>jackson-dataformat-xml</artifactId>
|
|
<version>3.0.2</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</project> |