|
| 1 | + |
| 2 | +<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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + |
| 5 | + <groupId>io.beanmapper</groupId> |
| 6 | + <artifactId>beanmapper-spring-boot-starter</artifactId> |
| 7 | + <version>6.0.1-RC1</version> |
| 8 | + <packaging>jar</packaging> |
| 9 | + |
| 10 | + <name>42 BeanMapper Spring Boot Starter</name> |
| 11 | + <description>Spring boot starter/autoconfig for BeanMapper</description> |
| 12 | + <inceptionYear>2017</inceptionYear> |
| 13 | + <url>https://www.42.nl</url> |
| 14 | + |
| 15 | + <organization> |
| 16 | + <name>42 BV</name> |
| 17 | + <url>https://www.42.nl</url> |
| 18 | + </organization> |
| 19 | + |
| 20 | + <licenses> |
| 21 | + <license> |
| 22 | + <name>The Apache Software License, Version 2.0</name> |
| 23 | + <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 24 | + <distribution>repo</distribution> |
| 25 | + </license> |
| 26 | + </licenses> |
| 27 | + |
| 28 | + <scm> |
| 29 | + <url>https://github.com/42BV/beanmapper-spring-boot-starter</url> |
| 30 | + <connection>scm:git:git@github.com:42BV/beanmapper-spring-boot-starter.git</connection> |
| 31 | + <developerConnection>scm:git:git@github.com:42BV/beanmapper-spring-boot-starter.git</developerConnection> |
| 32 | + <tag>HEAD</tag> |
| 33 | + </scm> |
| 34 | + |
| 35 | + <developers> |
| 36 | + <developer> |
| 37 | + <name>Bas de Vos</name> |
| 38 | + <organization>42 B.V.</organization> |
| 39 | + <organizationUrl>https://www.42.nl</organizationUrl> |
| 40 | + </developer> |
| 41 | + <developer> |
| 42 | + <name>Robert Bor</name> |
| 43 | + <organization>42 B.V.</organization> |
| 44 | + <organizationUrl>https://www.42.nl</organizationUrl> |
| 45 | + </developer> |
| 46 | + <developer> |
| 47 | + <name>Marcus Talbot</name> |
| 48 | + <organization>42 B.V.</organization> |
| 49 | + <organizationUrl>https://www.42.nl</organizationUrl> |
| 50 | + </developer> |
| 51 | + </developers> |
| 52 | + |
| 53 | + <properties> |
| 54 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 55 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 56 | + <maven.compiler.source>21</maven.compiler.source> |
| 57 | + <maven.compiler.target>21</maven.compiler.target> |
| 58 | + |
| 59 | + <spring.boot.version>3.5.4</spring.boot.version> |
| 60 | + <beanmapper.spring.version>6.0.1</beanmapper.spring.version> |
| 61 | + <dependency-check-maven.version>12.1.3</dependency-check-maven.version> |
| 62 | + <jacoco-maven-plugin.version>0.8.13</jacoco-maven-plugin.version> |
| 63 | + <central-publishing-maven-plugin.version>0.8.0</central-publishing-maven-plugin.version> |
| 64 | + <maven-gpg-plugin.version>3.2.8</maven-gpg-plugin.version> |
| 65 | + <maven-source-plugin.version>3.2.1</maven-source-plugin.version> |
| 66 | + <maven-javadoc-plugin.version>3.11.2</maven-javadoc-plugin.version> |
| 67 | + </properties> |
| 68 | + |
| 69 | + <dependencies> |
| 70 | + <dependency> |
| 71 | + <groupId>org.springframework.boot</groupId> |
| 72 | + <artifactId>spring-boot-autoconfigure</artifactId> |
| 73 | + </dependency> |
| 74 | + <dependency> |
| 75 | + <groupId>org.springframework.boot</groupId> |
| 76 | + <artifactId>spring-boot-configuration-processor</artifactId> |
| 77 | + <optional>true</optional> |
| 78 | + </dependency> |
| 79 | + <dependency> |
| 80 | + <groupId>org.springframework.boot</groupId> |
| 81 | + <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 82 | + <optional>true</optional> |
| 83 | + </dependency> |
| 84 | + <dependency> |
| 85 | + <groupId>org.springframework.boot</groupId> |
| 86 | + <artifactId>spring-boot-starter-web</artifactId> |
| 87 | + <optional>true</optional> |
| 88 | + </dependency> |
| 89 | + <dependency> |
| 90 | + <groupId>org.springframework.boot</groupId> |
| 91 | + <artifactId>spring-boot-starter-security</artifactId> |
| 92 | + <optional>true</optional> |
| 93 | + </dependency> |
| 94 | + <dependency> |
| 95 | + <groupId>io.beanmapper</groupId> |
| 96 | + <artifactId>beanmapper-spring</artifactId> |
| 97 | + <version>${beanmapper.spring.version}</version> |
| 98 | + </dependency> |
| 99 | + |
| 100 | + <!-- TEST dependencies --> |
| 101 | + <dependency> |
| 102 | + <groupId>org.springframework.boot</groupId> |
| 103 | + <artifactId>spring-boot-starter-test</artifactId> |
| 104 | + <scope>test</scope> |
| 105 | + </dependency> |
| 106 | + <dependency> |
| 107 | + <groupId>org.junit.vintage</groupId> |
| 108 | + <artifactId>junit-vintage-engine</artifactId> |
| 109 | + <scope>test</scope> |
| 110 | + <exclusions> |
| 111 | + <exclusion> |
| 112 | + <groupId>org.hamcrest</groupId> |
| 113 | + <artifactId>hamcrest-core</artifactId> |
| 114 | + </exclusion> |
| 115 | + </exclusions> |
| 116 | + </dependency> |
| 117 | + </dependencies> |
| 118 | + |
| 119 | + <dependencyManagement> |
| 120 | + <dependencies> |
| 121 | + <dependency> |
| 122 | + <groupId>org.springframework.boot</groupId> |
| 123 | + <artifactId>spring-boot-dependencies</artifactId> |
| 124 | + <version>${spring.boot.version}</version> |
| 125 | + <type>pom</type> |
| 126 | + <scope>import</scope> |
| 127 | + </dependency> |
| 128 | + </dependencies> |
| 129 | + </dependencyManagement> |
| 130 | + |
| 131 | + <build> |
| 132 | + <plugins> |
| 133 | + <plugin> |
| 134 | + <groupId>org.jacoco</groupId> |
| 135 | + <artifactId>jacoco-maven-plugin</artifactId> |
| 136 | + <version>${jacoco-maven-plugin.version}</version> |
| 137 | + <executions> |
| 138 | + <execution> |
| 139 | + <goals> |
| 140 | + <goal>prepare-agent</goal> |
| 141 | + </goals> |
| 142 | + </execution> |
| 143 | + <execution> |
| 144 | + <id>report</id> |
| 145 | + <phase>test</phase> |
| 146 | + <goals> |
| 147 | + <goal>report</goal> |
| 148 | + </goals> |
| 149 | + </execution> |
| 150 | + </executions> |
| 151 | + </plugin> |
| 152 | + |
| 153 | + <plugin> |
| 154 | + <groupId>org.owasp</groupId> |
| 155 | + <artifactId>dependency-check-maven</artifactId> |
| 156 | + <version>${dependency-check-maven.version}</version> |
| 157 | + <configuration> |
| 158 | + <failBuildOnAnyVulnerability>true</failBuildOnAnyVulnerability> |
| 159 | + <skipProvidedScope>true</skipProvidedScope> |
| 160 | + <skipTestScope>true</skipTestScope> |
| 161 | + <skipRuntimeScope>true</skipRuntimeScope> |
| 162 | + <assemblyAnalyzerEnabled>false</assemblyAnalyzerEnabled> |
| 163 | + <suppressionFile>owasp-suppressions.xml</suppressionFile> |
| 164 | + </configuration> |
| 165 | + </plugin> |
| 166 | + </plugins> |
| 167 | + </build> |
| 168 | + |
| 169 | + <profiles> |
| 170 | + <profile> |
| 171 | + <id>release</id> |
| 172 | + <build> |
| 173 | + <plugins> |
| 174 | + <plugin> |
| 175 | + <groupId>org.apache.maven.plugins</groupId> |
| 176 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 177 | + <version>${maven-javadoc-plugin.version}</version> |
| 178 | + <executions> |
| 179 | + <execution> |
| 180 | + <id>attach-javadocs</id> |
| 181 | + <goals> |
| 182 | + <goal>jar</goal> |
| 183 | + </goals> |
| 184 | + </execution> |
| 185 | + </executions> |
| 186 | + </plugin> |
| 187 | + |
| 188 | + <plugin> |
| 189 | + <groupId>org.apache.maven.plugins</groupId> |
| 190 | + <artifactId>maven-source-plugin</artifactId> |
| 191 | + <version>${maven-source-plugin.version}</version> |
| 192 | + <executions> |
| 193 | + <execution> |
| 194 | + <id>attach-sources</id> |
| 195 | + <goals> |
| 196 | + <goal>jar-no-fork</goal> |
| 197 | + </goals> |
| 198 | + </execution> |
| 199 | + </executions> |
| 200 | + </plugin> |
| 201 | + |
| 202 | + <plugin> |
| 203 | + <groupId>org.apache.maven.plugins</groupId> |
| 204 | + <artifactId>maven-gpg-plugin</artifactId> |
| 205 | + <version>${maven-gpg-plugin.version}</version> |
| 206 | + <executions> |
| 207 | + <execution> |
| 208 | + <id>sign-artifacts</id> |
| 209 | + <phase>verify</phase> |
| 210 | + <goals> |
| 211 | + <goal>sign</goal> |
| 212 | + </goals> |
| 213 | + </execution> |
| 214 | + </executions> |
| 215 | + </plugin> |
| 216 | + |
| 217 | + <plugin> |
| 218 | + <groupId>org.sonatype.central</groupId> |
| 219 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 220 | + <version>${central-publishing-maven-plugin.version}</version> |
| 221 | + <extensions>true</extensions> |
| 222 | + <configuration> |
| 223 | + <publishingServerId>central</publishingServerId> |
| 224 | + </configuration> |
| 225 | + </plugin> |
| 226 | + </plugins> |
| 227 | + </build> |
| 228 | + </profile> |
| 229 | + </profiles> |
| 230 | + |
| 231 | +</project> |
0 commit comments