|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | + |
| 3 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + |
| 7 | + <groupId>com.shortthirdman</groupId> |
| 8 | + <artifactId>quickstart-challenges</artifactId> |
| 9 | + <version>1.0.0-SNAPSHOT</version> |
| 10 | + <name>Quickstart-Challenges</name> |
| 11 | + <url>http://www.example.com</url> |
| 12 | + |
| 13 | + <properties> |
| 14 | + <java.version>21</java.version> |
| 15 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 16 | + <project.reporting.outputDirectory>target/reports</project.reporting.outputDirectory> |
| 17 | + <maven.compiler.source>${java.version}</maven.compiler.source> |
| 18 | + <maven.compiler.target>${java.version}</maven.compiler.target> |
| 19 | + <junit-jupiter.version>5.10.2</junit-jupiter.version> |
| 20 | + <commons-lang3.version>3.14.0</commons-lang3.version> |
| 21 | + <lombok.version>1.18.32</lombok.version> |
| 22 | + <gson.version>2.10.1</gson.version> |
| 23 | + <assertj-core.version>3.25.3</assertj-core.version> |
| 24 | + <jacoco.version>0.8.9</jacoco.version> |
| 25 | + </properties> |
| 26 | + |
| 27 | + <dependencies> |
| 28 | + <dependency> |
| 29 | + <groupId>org.apache.commons</groupId> |
| 30 | + <artifactId>commons-lang3</artifactId> |
| 31 | + <version>${commons-lang3.version}</version> |
| 32 | + </dependency> |
| 33 | + <dependency> |
| 34 | + <groupId>commons-lang</groupId> |
| 35 | + <artifactId>commons-lang</artifactId> |
| 36 | + <version>2.6</version> |
| 37 | + </dependency> |
| 38 | + <dependency> |
| 39 | + <groupId>com.google.code.gson</groupId> |
| 40 | + <artifactId>gson</artifactId> |
| 41 | + <version>${gson.version}</version> |
| 42 | + </dependency> |
| 43 | + <dependency> |
| 44 | + <groupId>org.projectlombok</groupId> |
| 45 | + <artifactId>lombok</artifactId> |
| 46 | + <version>${lombok.version}</version> |
| 47 | + <scope>provided</scope> |
| 48 | + </dependency> |
| 49 | + <dependency> |
| 50 | + <groupId>org.projectlombok</groupId> |
| 51 | + <artifactId>lombok-utils</artifactId> |
| 52 | + <version>1.18.12</version> |
| 53 | + </dependency> |
| 54 | + |
| 55 | + <dependency> |
| 56 | + <groupId>org.assertj</groupId> |
| 57 | + <artifactId>assertj-core</artifactId> |
| 58 | + <version>${assertj-core.version}</version> |
| 59 | + <scope>test</scope> |
| 60 | + </dependency> |
| 61 | + |
| 62 | + <dependency> |
| 63 | + <groupId>org.junit.jupiter</groupId> |
| 64 | + <artifactId>junit-jupiter-api</artifactId> |
| 65 | + <scope>test</scope> |
| 66 | + </dependency> |
| 67 | + <dependency> |
| 68 | + <groupId>org.junit.jupiter</groupId> |
| 69 | + <artifactId>junit-jupiter-engine</artifactId> |
| 70 | + <scope>test</scope> |
| 71 | + </dependency> |
| 72 | + <dependency> |
| 73 | + <groupId>org.junit.jupiter</groupId> |
| 74 | + <artifactId>junit-jupiter-params</artifactId> |
| 75 | + <scope>test</scope> |
| 76 | + </dependency> |
| 77 | + <dependency> |
| 78 | + <groupId>org.junit.platform</groupId> |
| 79 | + <artifactId>junit-platform-runner</artifactId> |
| 80 | + <version>1.10.2</version> |
| 81 | + <scope>test</scope> |
| 82 | + </dependency> |
| 83 | + <dependency> |
| 84 | + <groupId>org.junit.platform</groupId> |
| 85 | + <artifactId>junit-platform-suite-engine</artifactId> |
| 86 | + <version>1.10.2</version> |
| 87 | + <scope>test</scope> |
| 88 | + </dependency> |
| 89 | + </dependencies> |
| 90 | + |
| 91 | + <dependencyManagement> |
| 92 | + <dependencies> |
| 93 | + <dependency> |
| 94 | + <groupId>org.junit</groupId> |
| 95 | + <artifactId>junit-bom</artifactId> |
| 96 | + <version>${junit-jupiter.version}</version> |
| 97 | + <scope>import</scope> |
| 98 | + <type>pom</type> |
| 99 | + </dependency> |
| 100 | + </dependencies> |
| 101 | + </dependencyManagement> |
| 102 | + |
| 103 | + <profiles> |
| 104 | + <profile> |
| 105 | + <id>release</id> |
| 106 | + <activation> |
| 107 | + <activeByDefault>false</activeByDefault> |
| 108 | + </activation> |
| 109 | + <build> |
| 110 | + <plugins> |
| 111 | + <plugin> |
| 112 | + <groupId>org.apache.maven.plugins</groupId> |
| 113 | + <artifactId>maven-source-plugin</artifactId> |
| 114 | + <version>3.3.1</version> |
| 115 | + <configuration> |
| 116 | + <outputDirectory>${basedir}/target</outputDirectory> |
| 117 | + <finalName>${project.artifactId}-${project.version}</finalName> |
| 118 | + <attach>true</attach> |
| 119 | + </configuration> |
| 120 | + <executions> |
| 121 | + <execution> |
| 122 | + <id>attach-sources</id> |
| 123 | + <phase>package</phase> |
| 124 | + <goals> |
| 125 | + <goal>jar-no-fork</goal> |
| 126 | + <goal>test-jar-no-fork</goal> |
| 127 | + </goals> |
| 128 | + </execution> |
| 129 | + </executions> |
| 130 | + </plugin> |
| 131 | + </plugins> |
| 132 | + </build> |
| 133 | + </profile> |
| 134 | + </profiles> |
| 135 | + |
| 136 | + <build> |
| 137 | + <pluginManagement> |
| 138 | + <plugins> |
| 139 | + <plugin> |
| 140 | + <artifactId>maven-compiler-plugin</artifactId> |
| 141 | + <version>3.13.0</version> |
| 142 | + <configuration> |
| 143 | + <source>${java.version}</source> |
| 144 | + <target>${java.version}</target> |
| 145 | + <fork>true</fork> |
| 146 | + <encoding>${project.build.sourceEncoding}</encoding> |
| 147 | + </configuration> |
| 148 | + </plugin> |
| 149 | + <plugin> |
| 150 | + <groupId>org.apache.maven.plugins</groupId> |
| 151 | + <artifactId>maven-help-plugin</artifactId> |
| 152 | + <version>3.0.1</version> |
| 153 | + <executions> |
| 154 | + <execution> |
| 155 | + <id>show-profiles</id> |
| 156 | + <phase>compile</phase> |
| 157 | + <goals> |
| 158 | + <goal>active-profiles</goal> |
| 159 | + </goals> |
| 160 | + </execution> |
| 161 | + </executions> |
| 162 | + </plugin> |
| 163 | + <plugin> |
| 164 | + <artifactId>maven-surefire-plugin</artifactId> |
| 165 | + <version>2.22.2</version> |
| 166 | + <configuration> |
| 167 | + <encoding>${project.build.sourceEncoding}</encoding> |
| 168 | + <reportFormat>brief</reportFormat> |
| 169 | + <printSummary>true</printSummary> |
| 170 | + <properties> |
| 171 | + <configurationParameters> |
| 172 | + junit.jupiter.extensions.autodetection.enabled = true |
| 173 | + junit.jupiter.testinstance.lifecycle.default = per_class |
| 174 | + junit.jupiter.execution.parallel.enabled = true |
| 175 | + </configurationParameters> |
| 176 | + </properties> |
| 177 | + </configuration> |
| 178 | + </plugin> |
| 179 | + <plugin> |
| 180 | + <groupId>org.apache.maven.plugins</groupId> |
| 181 | + <artifactId>maven-failsafe-plugin</artifactId> |
| 182 | + <version>3.5.0</version> |
| 183 | + <configuration> |
| 184 | + <threadCount>10</threadCount> |
| 185 | + </configuration> |
| 186 | + </plugin> |
| 187 | + <plugin> |
| 188 | + <groupId>org.jacoco</groupId> |
| 189 | + <artifactId>jacoco-maven-plugin</artifactId> |
| 190 | + <version>${jacoco.version}</version> |
| 191 | + <configuration> |
| 192 | +<!-- <dataFile>${project.build.directory}/jacoco.exec</dataFile>--> |
| 193 | +<!-- <outputDirectory>${project.reporting.outputDirectory}/jacocoHtml</outputDirectory>--> |
| 194 | + <title>${project.name} ${project.version}</title> |
| 195 | + </configuration> |
| 196 | + <executions> |
| 197 | + <execution> |
| 198 | + <id>coverage-initialize</id> |
| 199 | + <goals> |
| 200 | + <goal>prepare-agent</goal> |
| 201 | + </goals> |
| 202 | + <phase>pre-clean</phase> |
| 203 | + </execution> |
| 204 | + <execution> |
| 205 | + <id>coverage-report</id> |
| 206 | + <phase>post-integration-test</phase> |
| 207 | + <goals> |
| 208 | + <goal>report</goal> |
| 209 | + </goals> |
| 210 | + </execution> |
| 211 | + <execution> |
| 212 | + <id>coverage-check</id> |
| 213 | + <goals> |
| 214 | + <goal>check</goal> |
| 215 | + </goals> |
| 216 | + <phase>test</phase> |
| 217 | + <configuration> |
| 218 | + <rules> |
| 219 | + <rule> |
| 220 | + <element>PACKAGE</element> |
| 221 | + <excludes> |
| 222 | + <exclude>com.shortthirdman.quickstart.common.*</exclude> |
| 223 | + </excludes> |
| 224 | + <limits> |
| 225 | + <limit> |
| 226 | + <counter>LINE</counter> |
| 227 | + <value>COVEREDRATIO</value> |
| 228 | + <minimum>0.6</minimum> |
| 229 | + </limit> |
| 230 | + <limit> |
| 231 | + <counter>INSTRUCTION</counter> |
| 232 | + <value>COVEREDRATIO</value> |
| 233 | + <minimum>0.6</minimum> |
| 234 | + </limit> |
| 235 | + </limits> |
| 236 | + </rule> |
| 237 | + <rule> |
| 238 | + <element>BUNDLE</element> |
| 239 | + <limits> |
| 240 | + <limit> |
| 241 | + <counter>INSTRUCTION</counter> |
| 242 | + <value>COVEREDRATIO</value> |
| 243 | + <minimum>0.80</minimum> |
| 244 | + </limit> |
| 245 | + <limit> |
| 246 | + <counter>CLASS</counter> |
| 247 | + <value>MISSEDCOUNT</value> |
| 248 | + <maximum>1</maximum> |
| 249 | + </limit> |
| 250 | + </limits> |
| 251 | + </rule> |
| 252 | + </rules> |
| 253 | + </configuration> |
| 254 | + </execution> |
| 255 | + </executions> |
| 256 | + </plugin> |
| 257 | + </plugins> |
| 258 | + </pluginManagement> |
| 259 | + </build> |
| 260 | +</project> |
0 commit comments