2023-08-18 11:39:27 -04: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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>hotel_alura</groupId>
|
|
|
|
<artifactId>hotel_alura</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
<version>8.0.33</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.mchange</groupId>
|
|
|
|
<artifactId>c3p0</artifactId>
|
|
|
|
<version>0.9.5.5</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.mchange</groupId>
|
|
|
|
<artifactId>mchange-commons-java</artifactId>
|
|
|
|
<version>0.2.20</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.toedter</groupId>
|
|
|
|
<artifactId>jcalendar</artifactId>
|
|
|
|
<version>1.4</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.jgoodies</groupId>
|
|
|
|
<artifactId>jgoodies-common</artifactId>
|
|
|
|
<version>1.8.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.jgoodies</groupId>
|
|
|
|
<artifactId>jgoodies-looks</artifactId>
|
|
|
|
<version>2.7.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.13.2</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.cdimascio</groupId>
|
|
|
|
<artifactId>dotenv-java</artifactId>
|
|
|
|
<version>3.0.0</version>
|
|
|
|
</dependency>
|
2023-09-03 16:06:35 -03:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mindrot</groupId>
|
|
|
|
<artifactId>jbcrypt</artifactId>
|
|
|
|
<version>0.4</version>
|
|
|
|
</dependency>
|
2023-08-18 11:39:27 -04:00
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<sourceDirectory>src</sourceDirectory>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
<configuration>
|
|
|
|
<release>17</release>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|