[3e572eb] | 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.2.2</version>
|
---|
| 9 | <relativePath/> <!-- lookup parent from repository -->
|
---|
| 10 | </parent>
|
---|
| 11 | <groupId>com.example</groupId>
|
---|
| 12 | <artifactId>Cookbook</artifactId>
|
---|
| 13 | <version>0.0.1-SNAPSHOT</version>
|
---|
| 14 | <name>Cookbook</name>
|
---|
| 15 | <description>Cookbook</description>
|
---|
| 16 | <properties>
|
---|
| 17 | <java.version>21</java.version>
|
---|
| 18 | </properties>
|
---|
| 19 | <dependencies>
|
---|
| 20 | <dependency>
|
---|
| 21 | <groupId>org.springframework.boot</groupId>
|
---|
| 22 | <artifactId>spring-boot-starter-jdbc</artifactId>
|
---|
| 23 | </dependency>
|
---|
| 24 | <dependency>
|
---|
| 25 | <groupId>org.springframework.boot</groupId>
|
---|
| 26 | <artifactId>spring-boot-starter-thymeleaf</artifactId>
|
---|
| 27 | </dependency>
|
---|
| 28 | <dependency>
|
---|
| 29 | <groupId>org.springframework.boot</groupId>
|
---|
| 30 | <artifactId>spring-boot-starter-web</artifactId>
|
---|
| 31 | </dependency>
|
---|
| 32 |
|
---|
| 33 | <dependency>
|
---|
| 34 | <groupId>org.postgresql</groupId>
|
---|
| 35 | <artifactId>postgresql</artifactId>
|
---|
| 36 | <scope>runtime</scope>
|
---|
| 37 | </dependency>
|
---|
| 38 | <dependency>
|
---|
| 39 | <groupId>org.springframework.boot</groupId>
|
---|
| 40 | <artifactId>spring-boot-starter-test</artifactId>
|
---|
| 41 | <scope>test</scope>
|
---|
| 42 | </dependency>
|
---|
[501396e] | 43 | <!-- https://mvnrepository.com/artifact/com.jcraft/jsch -->
|
---|
| 44 | <dependency>
|
---|
| 45 | <groupId>com.jcraft</groupId>
|
---|
| 46 | <artifactId>jsch</artifactId>
|
---|
| 47 | <version>0.1.55</version>
|
---|
| 48 | </dependency>
|
---|
| 49 |
|
---|
| 50 | <!-- https://mvnrepository.com/artifact/org.json/json -->
|
---|
| 51 | <dependency>
|
---|
| 52 | <groupId>org.json</groupId>
|
---|
| 53 | <artifactId>json</artifactId>
|
---|
| 54 | <version>20231013</version>
|
---|
| 55 | </dependency>
|
---|
| 56 |
|
---|
[3e572eb] | 57 | </dependencies>
|
---|
| 58 |
|
---|
| 59 | <build>
|
---|
| 60 | <plugins>
|
---|
| 61 | <plugin>
|
---|
| 62 | <groupId>org.springframework.boot</groupId>
|
---|
| 63 | <artifactId>spring-boot-maven-plugin</artifactId>
|
---|
| 64 | </plugin>
|
---|
| 65 | </plugins>
|
---|
| 66 | </build>
|
---|
| 67 |
|
---|
| 68 | </project>
|
---|