|
| 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.4.2</version> |
| 9 | + <relativePath/> |
| 10 | + </parent> |
| 11 | + <groupId>org.coderic.springboot</groupId> |
| 12 | + <artifactId>parent</artifactId> |
| 13 | + <version>0.0.1-SNAPSHOT</version> |
| 14 | + <name>Coderic Spring Boot parent</name> |
| 15 | + <description>Coderic Spring Boot parent</description> |
| 16 | + <url>https://github.com/Coderic/org.coderic.springboot.parent</url> |
| 17 | + <organization> |
| 18 | + <name>Coderic</name> |
| 19 | + <url>https://coderic.org/</url> |
| 20 | + </organization> |
| 21 | + <inceptionYear>2025</inceptionYear> |
| 22 | + <licenses> |
| 23 | + <license> |
| 24 | + <name>Apache license</name> |
| 25 | + <url>./LICENSE</url> |
| 26 | + </license> |
| 27 | + </licenses> |
| 28 | + <developers> |
| 29 | + <developer> |
| 30 | + <id>neftaliyagua</id> |
| 31 | + <name>Neftali Yagua</name> |
| 32 | + |
| 33 | + <organization>Coderic</organization> |
| 34 | + <organizationUrl>https://coderic.org</organizationUrl> |
| 35 | + <roles> |
| 36 | + <role>PMC Chair</role> |
| 37 | + </roles> |
| 38 | + <timezone>America/Caracas</timezone> |
| 39 | + </developer> |
| 40 | + </developers> |
| 41 | + <scm> |
| 42 | + <connection>scm:git:https://github.com/Coderic/org.coderic.springboot.parent.git</connection> |
| 43 | + <developerConnection>scm:git:https://github.com/Coderic/org.coderic.springboot.parent.git</developerConnection> |
| 44 | + <url>https://github.com/Coderic/org.coderic.springboot.parent</url> |
| 45 | + <tag>HEAD</tag> |
| 46 | + </scm> |
| 47 | + <ciManagement> |
| 48 | + <system>GitHub</system> |
| 49 | + <url>https://github.com/Coderic/org.coderic.springboot.parent/actions</url> |
| 50 | + </ciManagement> |
| 51 | + <issueManagement> |
| 52 | + <system>GitHub</system> |
| 53 | + <url>https://github.com/Coderic/org.coderic.springboot.parent/issues</url> |
| 54 | + </issueManagement> |
| 55 | + <distributionManagement> |
| 56 | + <snapshotRepository> |
| 57 | + <id>github</id> |
| 58 | + <url>https://maven.pkg.github.com/Coderic/org.coderic.springboot.parent</url> |
| 59 | + </snapshotRepository> |
| 60 | + <repository> |
| 61 | + <id>github</id> |
| 62 | + <url>https://maven.pkg.github.com/Coderic/org.coderic.springboot.parent</url> |
| 63 | + </repository> |
| 64 | + </distributionManagement> |
| 65 | + <properties> |
| 66 | + <java.version>21</java.version> |
| 67 | + <maven.compiler.release>21</maven.compiler.release> |
| 68 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 69 | + </properties> |
| 70 | + <dependencyManagement> |
| 71 | + <dependencies> |
| 72 | + <dependency> |
| 73 | + <groupId>org.springframework.boot</groupId> |
| 74 | + <artifactId>spring-boot-starter-web</artifactId> |
| 75 | + </dependency> |
| 76 | + <dependency> |
| 77 | + <groupId>org.springframework.boot</groupId> |
| 78 | + <artifactId>spring-boot-starter-test</artifactId> |
| 79 | + <scope>test</scope> |
| 80 | + </dependency> |
| 81 | + <dependency> |
| 82 | + <groupId>org.springframework.boot</groupId> |
| 83 | + <artifactId>spring-boot-starter-oauth2-resource-server</artifactId> |
| 84 | + </dependency> |
| 85 | + <dependency> |
| 86 | + <groupId>org.springdoc</groupId> |
| 87 | + <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> |
| 88 | + <version>2.8.5</version> |
| 89 | + </dependency> |
| 90 | + <dependency> |
| 91 | + <groupId>net.minidev</groupId> |
| 92 | + <artifactId>json-smart</artifactId> |
| 93 | + <version>2.5.2</version> |
| 94 | + </dependency> |
| 95 | + <dependency> |
| 96 | + <groupId>org.springframework.boot</groupId> |
| 97 | + <artifactId>spring-boot-devtools</artifactId> |
| 98 | + <optional>true</optional> |
| 99 | + </dependency> |
| 100 | + </dependencies> |
| 101 | + </dependencyManagement> |
| 102 | + <build> |
| 103 | + <pluginManagement> |
| 104 | + <plugins> |
| 105 | + <plugin> |
| 106 | + <artifactId>maven-clean-plugin</artifactId> |
| 107 | + <version>3.4.0</version> |
| 108 | + </plugin> |
| 109 | + <plugin> |
| 110 | + <artifactId>maven-resources-plugin</artifactId> |
| 111 | + <version>3.3.1</version> |
| 112 | + </plugin> |
| 113 | + <plugin> |
| 114 | + <artifactId>maven-compiler-plugin</artifactId> |
| 115 | + <version>3.13.0</version> |
| 116 | + </plugin> |
| 117 | + <plugin> |
| 118 | + <artifactId>maven-surefire-plugin</artifactId> |
| 119 | + <version>3.3.0</version> |
| 120 | + </plugin> |
| 121 | + <plugin> |
| 122 | + <artifactId>maven-war-plugin</artifactId> |
| 123 | + <version>3.4.0</version> |
| 124 | + </plugin> |
| 125 | + <plugin> |
| 126 | + <artifactId>maven-jar-plugin</artifactId> |
| 127 | + <version>3.4.2</version> |
| 128 | + </plugin> |
| 129 | + <plugin> |
| 130 | + <artifactId>maven-install-plugin</artifactId> |
| 131 | + <version>3.1.2</version> |
| 132 | + </plugin> |
| 133 | + <plugin> |
| 134 | + <artifactId>maven-deploy-plugin</artifactId> |
| 135 | + <version>3.1.2</version> |
| 136 | + </plugin> |
| 137 | + <plugin> |
| 138 | + <artifactId>maven-compiler-plugin</artifactId> |
| 139 | + </plugin> |
| 140 | + <plugin> |
| 141 | + <artifactId>maven-site-plugin</artifactId> |
| 142 | + <version>3.21.0</version> |
| 143 | + </plugin> |
| 144 | + <plugin> |
| 145 | + <artifactId>maven-project-info-reports-plugin</artifactId> |
| 146 | + <version>3.9.0</version> |
| 147 | + </plugin> |
| 148 | + <plugin> |
| 149 | + <artifactId>maven-release-plugin</artifactId> |
| 150 | + <version>3.1.1</version> |
| 151 | + </plugin> |
| 152 | + <plugin> |
| 153 | + <artifactId>maven-gpg-plugin</artifactId> |
| 154 | + <version>3.2.7</version> |
| 155 | + </plugin> |
| 156 | + <plugin> |
| 157 | + <artifactId>maven-surefire-report-plugin</artifactId> |
| 158 | + <version>3.5.2</version> |
| 159 | + </plugin> |
| 160 | + <plugin> |
| 161 | + <artifactId>maven-project-info-reports-plugin</artifactId> |
| 162 | + <version>3.9.0</version> |
| 163 | + </plugin> |
| 164 | + <plugin> |
| 165 | + <artifactId>maven-changes-plugin</artifactId> |
| 166 | + <version>2.12.1</version> |
| 167 | + </plugin> |
| 168 | + <plugin> |
| 169 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 170 | + <version>3.10.1</version> |
| 171 | + </plugin> |
| 172 | + <plugin> |
| 173 | + <groupId>org.apache.tomcat.maven</groupId> |
| 174 | + <artifactId>tomcat7-maven-plugin</artifactId> |
| 175 | + <version>2.2</version> |
| 176 | + </plugin> |
| 177 | + </plugins> |
| 178 | + </pluginManagement> |
| 179 | + </build> |
| 180 | + <repositories> |
| 181 | + <repository> |
| 182 | + <id>spring-milestones</id> |
| 183 | + <name>Spring Milestones</name> |
| 184 | + <url>https://repo.spring.io/milestone</url> |
| 185 | + <snapshots> |
| 186 | + <enabled>false</enabled> |
| 187 | + </snapshots> |
| 188 | + </repository> |
| 189 | + </repositories> |
| 190 | + <reporting> |
| 191 | + <plugins> |
| 192 | + <plugin> |
| 193 | + <groupId>org.apache.maven.plugins</groupId> |
| 194 | + <artifactId>maven-surefire-report-plugin</artifactId> |
| 195 | + <version>3.5.2</version> |
| 196 | + </plugin> |
| 197 | + <plugin> |
| 198 | + <groupId>org.apache.maven.plugins</groupId> |
| 199 | + <artifactId>maven-project-info-reports-plugin</artifactId> |
| 200 | + <version>3.9.0</version> |
| 201 | + </plugin> |
| 202 | + <plugin> |
| 203 | + <groupId>org.apache.maven.plugins</groupId> |
| 204 | + <artifactId>maven-changes-plugin</artifactId> |
| 205 | + <version>2.12.1</version> |
| 206 | + <configuration> |
| 207 | + <includeOpenIssues>true</includeOpenIssues> |
| 208 | + <onlyMilestoneIssues>false</onlyMilestoneIssues> |
| 209 | + </configuration> |
| 210 | + <reportSets> |
| 211 | + <reportSet> |
| 212 | + <reports> |
| 213 | + <report>github-report</report> |
| 214 | + </reports> |
| 215 | + </reportSet> |
| 216 | + </reportSets> |
| 217 | + </plugin> |
| 218 | + <plugin> |
| 219 | + <groupId>org.apache.maven.plugins</groupId> |
| 220 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 221 | + <version>3.10.1</version> |
| 222 | + <reportSets> |
| 223 | + <reportSet> |
| 224 | + <reports> |
| 225 | + <report>javadoc</report> |
| 226 | + </reports> |
| 227 | + </reportSet> |
| 228 | + <reportSet> |
| 229 | + <id>aggregate</id> |
| 230 | + <inherited>false</inherited> |
| 231 | + <reports> |
| 232 | + <report>aggregate</report> |
| 233 | + </reports> |
| 234 | + </reportSet> |
| 235 | + </reportSets> |
| 236 | + <configuration> |
| 237 | + <show>protected</show> |
| 238 | + <show>package</show> |
| 239 | + <show>private</show> |
| 240 | + <show>public</show> |
| 241 | + <failOnError>false</failOnError> |
| 242 | + </configuration> |
| 243 | + </plugin> |
| 244 | + </plugins> |
| 245 | + </reporting> |
| 246 | +</project> |
0 commit comments