Spaces:
Sleeping
Sleeping
Update pom.xml
Browse files
pom.xml
CHANGED
|
@@ -1,114 +1,114 @@
|
|
| 1 |
-
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
| 3 |
-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
| 4 |
-
<modelVersion>4.0.0</modelVersion>
|
| 5 |
-
<parent>
|
| 6 |
-
<groupId>org.springframework.boot</groupId>
|
| 7 |
-
<artifactId>spring-boot-starter-parent</artifactId>
|
| 8 |
-
<version>3.5.7</version>
|
| 9 |
-
<relativePath/> <!-- lookup parent from repository -->
|
| 10 |
-
</parent>
|
| 11 |
-
<groupId>com.creighton_theater</groupId>
|
| 12 |
-
<artifactId>theater_database</artifactId>
|
| 13 |
-
<version>0.0.1-SNAPSHOT</version>
|
| 14 |
-
<name>theater_database</name>
|
| 15 |
-
<description>Demo project for Spring Boot</description>
|
| 16 |
-
<url/>
|
| 17 |
-
<licenses>
|
| 18 |
-
<license/>
|
| 19 |
-
</licenses>
|
| 20 |
-
<developers>
|
| 21 |
-
<developer/>
|
| 22 |
-
</developers>
|
| 23 |
-
<scm>
|
| 24 |
-
<connection/>
|
| 25 |
-
<developerConnection/>
|
| 26 |
-
<tag/>
|
| 27 |
-
<url/>
|
| 28 |
-
</scm>
|
| 29 |
-
<properties>
|
| 30 |
-
<java.version>
|
| 31 |
-
</properties>
|
| 32 |
-
<dependencies>
|
| 33 |
-
<dependency>
|
| 34 |
-
<groupId>org.springframework.boot</groupId>
|
| 35 |
-
<artifactId>spring-boot-starter-jdbc</artifactId>
|
| 36 |
-
</dependency>
|
| 37 |
-
<dependency>
|
| 38 |
-
<groupId>org.springframework.boot</groupId>
|
| 39 |
-
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
| 40 |
-
</dependency>
|
| 41 |
-
<dependency>
|
| 42 |
-
<groupId>org.springframework.boot</groupId>
|
| 43 |
-
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
| 44 |
-
</dependency>
|
| 45 |
-
<dependency>
|
| 46 |
-
<groupId>org.springframework.boot</groupId>
|
| 47 |
-
<artifactId>spring-boot-starter-web</artifactId>
|
| 48 |
-
</dependency>
|
| 49 |
-
|
| 50 |
-
<dependency>
|
| 51 |
-
<groupId>org.springframework.boot</groupId>
|
| 52 |
-
<artifactId>spring-boot-devtools</artifactId>
|
| 53 |
-
<scope>runtime</scope>
|
| 54 |
-
<optional>true</optional>
|
| 55 |
-
</dependency>
|
| 56 |
-
<!-- MySQL for local development -->
|
| 57 |
-
<dependency>
|
| 58 |
-
<groupId>com.mysql</groupId>
|
| 59 |
-
<artifactId>mysql-connector-j</artifactId>
|
| 60 |
-
<scope>runtime</scope>
|
| 61 |
-
<optional>true</optional>
|
| 62 |
-
</dependency>
|
| 63 |
-
<!-- H2 Database for Hugging Face Spaces deployment -->
|
| 64 |
-
<dependency>
|
| 65 |
-
<groupId>com.h2database</groupId>
|
| 66 |
-
<artifactId>h2</artifactId>
|
| 67 |
-
<scope>runtime</scope>
|
| 68 |
-
</dependency>
|
| 69 |
-
<dependency>
|
| 70 |
-
<groupId>org.projectlombok</groupId>
|
| 71 |
-
<artifactId>lombok</artifactId>
|
| 72 |
-
<optional>true</optional>
|
| 73 |
-
</dependency>
|
| 74 |
-
<dependency>
|
| 75 |
-
<groupId>org.springframework.boot</groupId>
|
| 76 |
-
<artifactId>spring-boot-starter-test</artifactId>
|
| 77 |
-
<scope>test</scope>
|
| 78 |
-
</dependency>
|
| 79 |
-
<dependency>
|
| 80 |
-
<groupId>org.springframework.boot</groupId>
|
| 81 |
-
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
| 82 |
-
</dependency>
|
| 83 |
-
</dependencies>
|
| 84 |
-
|
| 85 |
-
<build>
|
| 86 |
-
<plugins>
|
| 87 |
-
<plugin>
|
| 88 |
-
<groupId>org.apache.maven.plugins</groupId>
|
| 89 |
-
<artifactId>maven-compiler-plugin</artifactId>
|
| 90 |
-
<configuration>
|
| 91 |
-
<annotationProcessorPaths>
|
| 92 |
-
<path>
|
| 93 |
-
<groupId>org.projectlombok</groupId>
|
| 94 |
-
<artifactId>lombok</artifactId>
|
| 95 |
-
</path>
|
| 96 |
-
</annotationProcessorPaths>
|
| 97 |
-
</configuration>
|
| 98 |
-
</plugin>
|
| 99 |
-
<plugin>
|
| 100 |
-
<groupId>org.springframework.boot</groupId>
|
| 101 |
-
<artifactId>spring-boot-maven-plugin</artifactId>
|
| 102 |
-
<configuration>
|
| 103 |
-
<excludes>
|
| 104 |
-
<exclude>
|
| 105 |
-
<groupId>org.projectlombok</groupId>
|
| 106 |
-
<artifactId>lombok</artifactId>
|
| 107 |
-
</exclude>
|
| 108 |
-
</excludes>
|
| 109 |
-
</configuration>
|
| 110 |
-
</plugin>
|
| 111 |
-
</plugins>
|
| 112 |
-
</build>
|
| 113 |
-
|
| 114 |
-
</project>
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
| 3 |
+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
| 4 |
+
<modelVersion>4.0.0</modelVersion>
|
| 5 |
+
<parent>
|
| 6 |
+
<groupId>org.springframework.boot</groupId>
|
| 7 |
+
<artifactId>spring-boot-starter-parent</artifactId>
|
| 8 |
+
<version>3.5.7</version>
|
| 9 |
+
<relativePath/> <!-- lookup parent from repository -->
|
| 10 |
+
</parent>
|
| 11 |
+
<groupId>com.creighton_theater</groupId>
|
| 12 |
+
<artifactId>theater_database</artifactId>
|
| 13 |
+
<version>0.0.1-SNAPSHOT</version>
|
| 14 |
+
<name>theater_database</name>
|
| 15 |
+
<description>Demo project for Spring Boot</description>
|
| 16 |
+
<url/>
|
| 17 |
+
<licenses>
|
| 18 |
+
<license/>
|
| 19 |
+
</licenses>
|
| 20 |
+
<developers>
|
| 21 |
+
<developer/>
|
| 22 |
+
</developers>
|
| 23 |
+
<scm>
|
| 24 |
+
<connection/>
|
| 25 |
+
<developerConnection/>
|
| 26 |
+
<tag/>
|
| 27 |
+
<url/>
|
| 28 |
+
</scm>
|
| 29 |
+
<properties>
|
| 30 |
+
<java.version>21</java.version>
|
| 31 |
+
</properties>
|
| 32 |
+
<dependencies>
|
| 33 |
+
<dependency>
|
| 34 |
+
<groupId>org.springframework.boot</groupId>
|
| 35 |
+
<artifactId>spring-boot-starter-jdbc</artifactId>
|
| 36 |
+
</dependency>
|
| 37 |
+
<dependency>
|
| 38 |
+
<groupId>org.springframework.boot</groupId>
|
| 39 |
+
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
| 40 |
+
</dependency>
|
| 41 |
+
<dependency>
|
| 42 |
+
<groupId>org.springframework.boot</groupId>
|
| 43 |
+
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
| 44 |
+
</dependency>
|
| 45 |
+
<dependency>
|
| 46 |
+
<groupId>org.springframework.boot</groupId>
|
| 47 |
+
<artifactId>spring-boot-starter-web</artifactId>
|
| 48 |
+
</dependency>
|
| 49 |
+
|
| 50 |
+
<dependency>
|
| 51 |
+
<groupId>org.springframework.boot</groupId>
|
| 52 |
+
<artifactId>spring-boot-devtools</artifactId>
|
| 53 |
+
<scope>runtime</scope>
|
| 54 |
+
<optional>true</optional>
|
| 55 |
+
</dependency>
|
| 56 |
+
<!-- MySQL for local development -->
|
| 57 |
+
<dependency>
|
| 58 |
+
<groupId>com.mysql</groupId>
|
| 59 |
+
<artifactId>mysql-connector-j</artifactId>
|
| 60 |
+
<scope>runtime</scope>
|
| 61 |
+
<optional>true</optional>
|
| 62 |
+
</dependency>
|
| 63 |
+
<!-- H2 Database for Hugging Face Spaces deployment -->
|
| 64 |
+
<dependency>
|
| 65 |
+
<groupId>com.h2database</groupId>
|
| 66 |
+
<artifactId>h2</artifactId>
|
| 67 |
+
<scope>runtime</scope>
|
| 68 |
+
</dependency>
|
| 69 |
+
<dependency>
|
| 70 |
+
<groupId>org.projectlombok</groupId>
|
| 71 |
+
<artifactId>lombok</artifactId>
|
| 72 |
+
<optional>true</optional>
|
| 73 |
+
</dependency>
|
| 74 |
+
<dependency>
|
| 75 |
+
<groupId>org.springframework.boot</groupId>
|
| 76 |
+
<artifactId>spring-boot-starter-test</artifactId>
|
| 77 |
+
<scope>test</scope>
|
| 78 |
+
</dependency>
|
| 79 |
+
<dependency>
|
| 80 |
+
<groupId>org.springframework.boot</groupId>
|
| 81 |
+
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
| 82 |
+
</dependency>
|
| 83 |
+
</dependencies>
|
| 84 |
+
|
| 85 |
+
<build>
|
| 86 |
+
<plugins>
|
| 87 |
+
<plugin>
|
| 88 |
+
<groupId>org.apache.maven.plugins</groupId>
|
| 89 |
+
<artifactId>maven-compiler-plugin</artifactId>
|
| 90 |
+
<configuration>
|
| 91 |
+
<annotationProcessorPaths>
|
| 92 |
+
<path>
|
| 93 |
+
<groupId>org.projectlombok</groupId>
|
| 94 |
+
<artifactId>lombok</artifactId>
|
| 95 |
+
</path>
|
| 96 |
+
</annotationProcessorPaths>
|
| 97 |
+
</configuration>
|
| 98 |
+
</plugin>
|
| 99 |
+
<plugin>
|
| 100 |
+
<groupId>org.springframework.boot</groupId>
|
| 101 |
+
<artifactId>spring-boot-maven-plugin</artifactId>
|
| 102 |
+
<configuration>
|
| 103 |
+
<excludes>
|
| 104 |
+
<exclude>
|
| 105 |
+
<groupId>org.projectlombok</groupId>
|
| 106 |
+
<artifactId>lombok</artifactId>
|
| 107 |
+
</exclude>
|
| 108 |
+
</excludes>
|
| 109 |
+
</configuration>
|
| 110 |
+
</plugin>
|
| 111 |
+
</plugins>
|
| 112 |
+
</build>
|
| 113 |
+
|
| 114 |
+
</project>
|