- Timestamp:
- 05/22/26 16:45:47 (4 months ago)
- Branches:
- master
- Children:
- 9803972
- Parents:
- 500b5be
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pom.xml
r500b5be rc613cbf 1 1 <?xml version="1.0" encoding="UTF-8"?> 2 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.14</version>9 <relativePath/> <!-- lookup parent from repository -->10 </parent>11 <groupId>medora</groupId>12 <artifactId>medora5</artifactId>13 <version>0.0.1-SNAPSHOT</version>14 <name>medora5</name>15 <description>medora5</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>17</java.version>31 </properties>32 <dependencies>33 <dependency>34 <groupId>org.springframework.boot</groupId>35 <artifactId>spring-boot-starter-data-jpa</artifactId>36 </dependency>37 <dependency>38 <groupId>org.springframework.boot</groupId>39 <artifactId>spring-boot-starter-security</artifactId>40 </dependency>41 <dependency>42 <groupId>org.springframework.boot</groupId>43 <artifactId>spring-boot-starter-web</artifactId>44 </dependency>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.14</version> 9 <relativePath/> <!-- lookup parent from repository --> 10 </parent> 11 <groupId>medora</groupId> 12 <artifactId>medora5</artifactId> 13 <version>0.0.1-SNAPSHOT</version> 14 <name>medora5</name> 15 <description>medora5</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-data-jpa</artifactId> 36 </dependency> 37 <dependency> 38 <groupId>org.springframework.boot</groupId> 39 <artifactId>spring-boot-starter-security</artifactId> 40 </dependency> 41 <dependency> 42 <groupId>org.springframework.boot</groupId> 43 <artifactId>spring-boot-starter-web</artifactId> 44 </dependency> 45 45 46 <dependency> 47 <groupId>org.postgresql</groupId> 48 <artifactId>postgresql</artifactId> 49 <scope>runtime</scope> 50 </dependency> 51 <dependency> 52 <groupId>org.springframework.boot</groupId> 53 <artifactId>spring-boot-starter-test</artifactId> 54 <scope>test</scope> 55 </dependency> 56 <dependency> 57 <groupId>org.springframework.security</groupId> 58 <artifactId>spring-security-test</artifactId> 59 <scope>test</scope> 60 </dependency> 61 </dependencies> 46 <dependency> 47 <groupId>org.postgresql</groupId> 48 <artifactId>postgresql</artifactId> 49 <scope>runtime</scope> 50 </dependency> 51 <dependency> 52 <groupId>org.springframework.boot</groupId> 53 <artifactId>spring-boot-starter-test</artifactId> 54 <scope>test</scope> 55 </dependency> 56 <dependency> 57 <groupId>org.springframework.security</groupId> 58 <artifactId>spring-security-test</artifactId> 59 <scope>test</scope> 60 </dependency> 61 <dependency> 62 <groupId>org.projectlombok</groupId> 63 <artifactId>lombok</artifactId> 64 <scope>provided</scope> 65 </dependency> 66 <dependency> 67 <groupId>org.jetbrains</groupId> 68 <artifactId>annotations</artifactId> 69 <version>23.0.0</version> 70 <scope>compile</scope> 71 </dependency> 62 72 63 <build> 64 <plugins> 65 <plugin> 66 <groupId>org.springframework.boot</groupId> 67 <artifactId>spring-boot-maven-plugin</artifactId> 68 </plugin> 69 </plugins> 70 </build> 73 <dependency> 74 <groupId>org.springframework.boot</groupId> 75 <artifactId>spring-boot-starter-validation</artifactId> 76 </dependency> 77 </dependencies> 78 79 <build> 80 <plugins> 81 <plugin> 82 <groupId>org.springframework.boot</groupId> 83 <artifactId>spring-boot-maven-plugin</artifactId> 84 </plugin> 85 </plugins> 86 </build> 71 87 72 88 </project>
Note:
See TracChangeset
for help on using the changeset viewer.
