logstash-logback-encoder-7.2.pom 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>net.logstash.logback</groupId>
  5. <artifactId>logstash-logback-encoder</artifactId>
  6. <name>Logstash Logback Encoder</name>
  7. <version>7.2</version>
  8. <description>Provides logback encoders, layouts, and appenders to log in JSON and other formats supported by Jackson</description>
  9. <url>https://github.com/logfellow/logstash-logback-encoder</url>
  10. <inceptionYear>2013</inceptionYear>
  11. <developers>
  12. <developer>
  13. <id>neilprosser</id>
  14. <name>Neil Prosser</name>
  15. <email>neil.prosser@gmail.com</email>
  16. <organization>Nokia</organization>
  17. <organizationUrl>http://music.nokia.com</organizationUrl>
  18. </developer>
  19. <developer>
  20. <id>philsttr</id>
  21. <name>Phil Clay</name>
  22. </developer>
  23. <developer>
  24. <id>lusis</id>
  25. <name>John E. Vincent</name>
  26. <email>lusis.org+github.com@gmail.com</email>
  27. </developer>
  28. <developer>
  29. <id>brenuart</id>
  30. <name>Bertrand Renuart</name>
  31. </developer>
  32. </developers>
  33. <licenses>
  34. <license>
  35. <name>Apache License, Version 2.0</name>
  36. <url>http://www.apache.org/licenses/LICENSE-2.0</url>
  37. </license>
  38. <license>
  39. <name>MIT License</name>
  40. <url>http://www.slf4j.org/license.html</url>
  41. <comments>The portion of LogstashBasicMarker.java that has been copied from
  42. org.slf4j.helpers.BasicMarker is released under the MIT License.</comments>
  43. </license>
  44. </licenses>
  45. <scm>
  46. <connection>scm:git:https://github.com/logfellow/logstash-logback-encoder</connection>
  47. <developerConnection>scm:git:https://github.com/logfellow/logstash-logback-encoder</developerConnection>
  48. <tag>logstash-logback-encoder-7.2</tag>
  49. <url>https://github.com/logfellow/logstash-logback-encoder</url>
  50. </scm>
  51. <build>
  52. <pluginManagement>
  53. <plugins>
  54. <plugin>
  55. <artifactId>maven-clean-plugin</artifactId>
  56. <version>${maven-clean-plugin.version}</version>
  57. <configuration>
  58. <filesets>
  59. <fileset>
  60. <directory>.</directory>
  61. <includes>
  62. <include>dependency-reduced-pom.xml</include>
  63. </includes>
  64. </fileset>
  65. </filesets>
  66. </configuration>
  67. </plugin>
  68. <plugin>
  69. <artifactId>maven-install-plugin</artifactId>
  70. <version>${maven-install-plugin.version}</version>
  71. </plugin>
  72. <plugin>
  73. <artifactId>maven-source-plugin</artifactId>
  74. <version>${maven-source-plugin.version}</version>
  75. </plugin>
  76. <plugin>
  77. <artifactId>maven-surefire-plugin</artifactId>
  78. <version>${maven-surefire-plugin.version}</version>
  79. <configuration>
  80. <reportsDirectory>${project.build.directory}/surefire-reports/jackson-${jackson.version}</reportsDirectory>
  81. </configuration>
  82. </plugin>
  83. <plugin>
  84. <artifactId>maven-javadoc-plugin</artifactId>
  85. <version>${maven-javadoc-plugin.version}</version>
  86. <configuration>
  87. <doclint>all,-accessibility</doclint>
  88. <links>
  89. <link>https://javadoc.io/doc/ch.qos.logback/logback-core/${logback.version}</link>
  90. <link>https://javadoc.io/doc/ch.qos.logback/logback-classic/${logback.version}</link>
  91. <link>https://javadoc.io/doc/ch.qos.logback/logback-access/${logback.version}</link>
  92. <link>https://javadoc.io/doc/com.fasterxml.jackson.core/jackson-core/${jackson.version}</link>
  93. <link>https://javadoc.io/doc/com.fasterxml.jackson.core/jackson-databind/${jackson.version}</link>
  94. </links>
  95. <source>${java.version}</source>
  96. <quiet>true</quiet>
  97. </configuration>
  98. </plugin>
  99. <plugin>
  100. <artifactId>maven-checkstyle-plugin</artifactId>
  101. <version>${maven-checkstyle-plugin.version}</version>
  102. <dependencies>
  103. <dependency>
  104. <groupId>com.puppycrawl.tools</groupId>
  105. <artifactId>checkstyle</artifactId>
  106. <version>${checkstyle.version}</version>
  107. </dependency>
  108. </dependencies>
  109. <configuration>
  110. <configLocation>src/checkstyle/checkstyle.xml</configLocation>
  111. <includeTestSourceDirectory>true</includeTestSourceDirectory>
  112. </configuration>
  113. </plugin>
  114. <plugin>
  115. <groupId>com.mycila</groupId>
  116. <artifactId>license-maven-plugin</artifactId>
  117. <version>${license-maven-plugin.version}</version>
  118. <configuration>
  119. <header>license-header.txt</header>
  120. <mapping>
  121. <java>SLASHSTAR_STYLE</java>
  122. </mapping>
  123. <includes>
  124. <include>src/main/java/**</include>
  125. <include>src/test/java/**</include>
  126. </includes>
  127. <defaultProperties>
  128. <year>2022</year>
  129. </defaultProperties>
  130. </configuration>
  131. </plugin>
  132. <plugin>
  133. <artifactId>maven-release-plugin</artifactId>
  134. <version>${maven-release-plugin.version}</version>
  135. </plugin>
  136. <plugin>
  137. <artifactId>maven-resources-plugin</artifactId>
  138. <version>${maven-resources-plugin.version}</version>
  139. </plugin>
  140. <plugin>
  141. <groupId>org.jacoco</groupId>
  142. <artifactId>jacoco-maven-plugin</artifactId>
  143. <version>0.8.8</version>
  144. <configuration>
  145. <includes>
  146. <include>net/logstash/**</include>
  147. </includes>
  148. <formats>
  149. <format>XML</format>
  150. <format>HTML</format>
  151. </formats>
  152. </configuration>
  153. </plugin>
  154. </plugins>
  155. </pluginManagement>
  156. <plugins>
  157. <plugin>
  158. <artifactId>maven-compiler-plugin</artifactId>
  159. <version>${maven-compiler-plugin.version}</version>
  160. <configuration>
  161. <source>${java.version}</source>
  162. <target>${java.version}</target>
  163. </configuration>
  164. </plugin>
  165. <plugin>
  166. <artifactId>maven-enforcer-plugin</artifactId>
  167. <version>${maven-enforcer-plugin.version}</version>
  168. <executions>
  169. <execution>
  170. <phase>validate</phase>
  171. <goals>
  172. <goal>enforce</goal>
  173. </goals>
  174. <configuration>
  175. <rules>
  176. <requireJavaVersion>
  177. <version>[1.8,)</version>
  178. </requireJavaVersion>
  179. <requireMavenVersion>
  180. <version>[3.5.0,)</version>
  181. </requireMavenVersion>
  182. <enforceBytecodeVersion>
  183. <maxJdkVersion>1.8</maxJdkVersion>
  184. <ignoreClasses>
  185. <ignoreClass>META-INF/versions/*</ignoreClass>
  186. </ignoreClasses>
  187. </enforceBytecodeVersion>
  188. </rules>
  189. </configuration>
  190. </execution>
  191. </executions>
  192. <dependencies>
  193. <dependency>
  194. <groupId>org.codehaus.mojo</groupId>
  195. <artifactId>extra-enforcer-rules</artifactId>
  196. <version>1.5.1</version>
  197. </dependency>
  198. </dependencies>
  199. </plugin>
  200. <plugin>
  201. <groupId>org.codehaus.mojo</groupId>
  202. <artifactId>animal-sniffer-maven-plugin</artifactId>
  203. <version>${animal-sniffer-maven-plugin.version}</version>
  204. <executions>
  205. <execution>
  206. <id>ensure-java-1.8-compatible</id>
  207. <phase>validate</phase>
  208. <goals>
  209. <goal>check</goal>
  210. </goals>
  211. </execution>
  212. </executions>
  213. <configuration>
  214. <signature>
  215. <groupId>org.codehaus.mojo.signature</groupId>
  216. <artifactId>java18</artifactId>
  217. <version>1.0</version>
  218. </signature>
  219. </configuration>
  220. </plugin>
  221. <plugin>
  222. <artifactId>maven-javadoc-plugin</artifactId>
  223. <executions>
  224. <execution>
  225. <phase>package</phase>
  226. <goals>
  227. <goal>jar</goal>
  228. </goals>
  229. </execution>
  230. </executions>
  231. </plugin>
  232. <plugin>
  233. <groupId>com.mycila</groupId>
  234. <artifactId>license-maven-plugin</artifactId>
  235. <executions>
  236. <execution>
  237. <phase>process-sources</phase>
  238. <goals>
  239. <goal>check</goal>
  240. </goals>
  241. </execution>
  242. </executions>
  243. </plugin>
  244. <plugin>
  245. <artifactId>maven-jar-plugin</artifactId>
  246. <version>${maven-jar-plugin.version}</version>
  247. <configuration>
  248. <archive>
  249. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  250. <manifestEntries>
  251. <Automatic-Module-Name>logstash.logback.encoder</Automatic-Module-Name>
  252. </manifestEntries>
  253. </archive>
  254. </configuration>
  255. </plugin>
  256. <plugin>
  257. <artifactId>maven-shade-plugin</artifactId>
  258. <version>${maven-shade-plugin.version}</version>
  259. <executions>
  260. <execution>
  261. <goals>
  262. <goal>shade</goal>
  263. </goals>
  264. </execution>
  265. </executions>
  266. <configuration>
  267. <shadedArtifactAttached>false</shadedArtifactAttached>
  268. <createDependencyReducedPom>true</createDependencyReducedPom>
  269. <createSourcesJar>true</createSourcesJar>
  270. <shadeSourcesContent>true</shadeSourcesContent>
  271. <minimizeJar>true</minimizeJar>
  272. <artifactSet>
  273. <includes>
  274. <include>com.lmax:disruptor</include>
  275. </includes>
  276. </artifactSet>
  277. <filters>
  278. <filter>
  279. <artifact>com.lmax:disruptor</artifact>
  280. <excludes>
  281. <exclude>META-INF/MANIFEST.MF</exclude>
  282. </excludes>
  283. </filter>
  284. </filters>
  285. <relocations>
  286. <relocation>
  287. <pattern>com.lmax.disruptor</pattern>
  288. <shadedPattern>${project.groupId}.encoder.com.lmax.disruptor</shadedPattern>
  289. </relocation>
  290. </relocations>
  291. </configuration>
  292. </plugin>
  293. <plugin>
  294. <groupId>org.apache.felix</groupId>
  295. <artifactId>maven-bundle-plugin</artifactId>
  296. <version>${maven-bundle-plugin.version}</version>
  297. <extensions>true</extensions>
  298. <executions>
  299. <execution>
  300. <id>bundle-manifest</id>
  301. <phase>process-classes</phase>
  302. <goals>
  303. <goal>manifest</goal>
  304. </goals>
  305. </execution>
  306. </executions>
  307. <configuration>
  308. <instructions>
  309. <Export-Package>net.logstash.logback.*</Export-Package>
  310. <Fragment-Host>ch.qos.logback.classic</Fragment-Host>
  311. <Import-Package>!com.lmax.disruptor.*,!ch.qos.logback.classic.*,!ch.qos.logback.core.*,!org.slf4j.*,*</Import-Package>
  312. </instructions>
  313. </configuration>
  314. </plugin>
  315. <plugin>
  316. <artifactId>maven-checkstyle-plugin</artifactId>
  317. <executions>
  318. <execution>
  319. <phase>process-sources</phase>
  320. <goals>
  321. <goal>check</goal>
  322. </goals>
  323. </execution>
  324. </executions>
  325. </plugin>
  326. <plugin>
  327. <groupId>org.jacoco</groupId>
  328. <artifactId>jacoco-maven-plugin</artifactId>
  329. <executions>
  330. <execution>
  331. <id>jacoco-prepare-agent</id>
  332. <phase>process-test-classes</phase>
  333. <goals>
  334. <goal>prepare-agent</goal>
  335. </goals>
  336. </execution>
  337. <execution>
  338. <id>jacoco-report</id>
  339. <phase>verify</phase>
  340. <goals>
  341. <goal>report</goal>
  342. </goals>
  343. </execution>
  344. </executions>
  345. </plugin>
  346. </plugins>
  347. </build>
  348. <profiles>
  349. <profile>
  350. <id>ossrh</id>
  351. <build>
  352. <plugins>
  353. <plugin>
  354. <artifactId>maven-gpg-plugin</artifactId>
  355. <version>3.0.1</version>
  356. <executions>
  357. <execution>
  358. <id>sign-artifacts</id>
  359. <goals>
  360. <goal>sign</goal>
  361. </goals>
  362. </execution>
  363. </executions>
  364. </plugin>
  365. <plugin>
  366. <groupId>org.sonatype.plugins</groupId>
  367. <artifactId>nexus-staging-maven-plugin</artifactId>
  368. <version>1.6.13</version>
  369. <extensions>true</extensions>
  370. <executions>
  371. <execution>
  372. <id>injected-nexus-deploy</id>
  373. <phase>deploy</phase>
  374. <goals>
  375. <goal>deploy</goal>
  376. </goals>
  377. <configuration>
  378. <serverId>ossrh</serverId>
  379. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  380. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  381. </configuration>
  382. </execution>
  383. </executions>
  384. <configuration>
  385. <serverId>ossrh</serverId>
  386. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  387. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  388. </configuration>
  389. </plugin>
  390. </plugins>
  391. </build>
  392. </profile>
  393. <profile>
  394. <id>java15</id>
  395. <properties>
  396. <maven.javadoc.failOnWarnings>false</maven.javadoc.failOnWarnings>
  397. </properties>
  398. </profile>
  399. <profile>
  400. <id>github</id>
  401. <properties>
  402. <maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
  403. </properties>
  404. </profile>
  405. <profile>
  406. <id>m2e</id>
  407. <build>
  408. <directory>target-eclipse</directory>
  409. </build>
  410. </profile>
  411. <profile>
  412. <id>fast</id>
  413. <properties>
  414. <maven.javadoc.skip>true</maven.javadoc.skip>
  415. <license.skip>true</license.skip>
  416. <checkstyle.skip>true</checkstyle.skip>
  417. </properties>
  418. </profile>
  419. </profiles>
  420. <dependencies>
  421. <dependency>
  422. <groupId>ch.qos.logback</groupId>
  423. <artifactId>logback-classic</artifactId>
  424. <version>1.2.11</version>
  425. <scope>compile</scope>
  426. <optional>true</optional>
  427. </dependency>
  428. <dependency>
  429. <groupId>ch.qos.logback</groupId>
  430. <artifactId>logback-access</artifactId>
  431. <version>1.2.11</version>
  432. <scope>compile</scope>
  433. <optional>true</optional>
  434. </dependency>
  435. <dependency>
  436. <groupId>ch.qos.logback</groupId>
  437. <artifactId>logback-core</artifactId>
  438. <version>1.2.11</version>
  439. <scope>provided</scope>
  440. </dependency>
  441. <dependency>
  442. <groupId>javax.servlet</groupId>
  443. <artifactId>javax.servlet-api</artifactId>
  444. <version>4.0.1</version>
  445. <scope>test</scope>
  446. </dependency>
  447. <dependency>
  448. <groupId>com.fasterxml.jackson.core</groupId>
  449. <artifactId>jackson-databind</artifactId>
  450. <version>2.13.3</version>
  451. <scope>compile</scope>
  452. </dependency>
  453. <dependency>
  454. <groupId>com.fasterxml.jackson.dataformat</groupId>
  455. <artifactId>jackson-dataformat-cbor</artifactId>
  456. <version>2.13.3</version>
  457. <scope>compile</scope>
  458. <optional>true</optional>
  459. </dependency>
  460. <dependency>
  461. <groupId>com.fasterxml.jackson.dataformat</groupId>
  462. <artifactId>jackson-dataformat-smile</artifactId>
  463. <version>2.13.3</version>
  464. <scope>compile</scope>
  465. <optional>true</optional>
  466. </dependency>
  467. <dependency>
  468. <groupId>com.fasterxml.jackson.dataformat</groupId>
  469. <artifactId>jackson-dataformat-yaml</artifactId>
  470. <version>2.13.3</version>
  471. <scope>compile</scope>
  472. <optional>true</optional>
  473. </dependency>
  474. <dependency>
  475. <groupId>com.fasterxml.uuid</groupId>
  476. <artifactId>java-uuid-generator</artifactId>
  477. <version>4.0.1</version>
  478. <scope>compile</scope>
  479. <optional>true</optional>
  480. </dependency>
  481. <dependency>
  482. <groupId>org.junit.jupiter</groupId>
  483. <artifactId>junit-jupiter</artifactId>
  484. <version>5.8.2</version>
  485. <scope>test</scope>
  486. <exclusions>
  487. <exclusion>
  488. <artifactId>junit-jupiter-api</artifactId>
  489. <groupId>org.junit.jupiter</groupId>
  490. </exclusion>
  491. <exclusion>
  492. <artifactId>junit-jupiter-params</artifactId>
  493. <groupId>org.junit.jupiter</groupId>
  494. </exclusion>
  495. <exclusion>
  496. <artifactId>junit-jupiter-engine</artifactId>
  497. <groupId>org.junit.jupiter</groupId>
  498. </exclusion>
  499. </exclusions>
  500. </dependency>
  501. <dependency>
  502. <groupId>org.assertj</groupId>
  503. <artifactId>assertj-core</artifactId>
  504. <version>3.22.0</version>
  505. <scope>test</scope>
  506. </dependency>
  507. <dependency>
  508. <groupId>org.mockito</groupId>
  509. <artifactId>mockito-core</artifactId>
  510. <version>4.5.1</version>
  511. <scope>test</scope>
  512. <exclusions>
  513. <exclusion>
  514. <artifactId>byte-buddy</artifactId>
  515. <groupId>net.bytebuddy</groupId>
  516. </exclusion>
  517. <exclusion>
  518. <artifactId>byte-buddy-agent</artifactId>
  519. <groupId>net.bytebuddy</groupId>
  520. </exclusion>
  521. <exclusion>
  522. <artifactId>objenesis</artifactId>
  523. <groupId>org.objenesis</groupId>
  524. </exclusion>
  525. </exclusions>
  526. </dependency>
  527. <dependency>
  528. <groupId>org.mockito</groupId>
  529. <artifactId>mockito-junit-jupiter</artifactId>
  530. <version>4.5.1</version>
  531. <scope>test</scope>
  532. <exclusions>
  533. <exclusion>
  534. <artifactId>junit-jupiter-api</artifactId>
  535. <groupId>org.junit.jupiter</groupId>
  536. </exclusion>
  537. </exclusions>
  538. </dependency>
  539. <dependency>
  540. <groupId>org.awaitility</groupId>
  541. <artifactId>awaitility</artifactId>
  542. <version>4.2.0</version>
  543. <scope>test</scope>
  544. <exclusions>
  545. <exclusion>
  546. <artifactId>hamcrest</artifactId>
  547. <groupId>org.hamcrest</groupId>
  548. </exclusion>
  549. </exclusions>
  550. </dependency>
  551. </dependencies>
  552. <dependencyManagement>
  553. <dependencies>
  554. <dependency>
  555. <groupId>com.fasterxml.jackson</groupId>
  556. <artifactId>jackson-bom</artifactId>
  557. <version>${jackson.version}</version>
  558. <type>pom</type>
  559. <scope>import</scope>
  560. </dependency>
  561. <dependency>
  562. <groupId>org.junit</groupId>
  563. <artifactId>junit-bom</artifactId>
  564. <version>${junit.version}</version>
  565. <type>pom</type>
  566. <scope>import</scope>
  567. </dependency>
  568. </dependencies>
  569. </dependencyManagement>
  570. <distributionManagement>
  571. <repository>
  572. <id>ossrh</id>
  573. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  574. </repository>
  575. <snapshotRepository>
  576. <id>ossrh</id>
  577. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  578. </snapshotRepository>
  579. </distributionManagement>
  580. <properties>
  581. <license-maven-plugin.version>4.1</license-maven-plugin.version>
  582. <assertj.version>3.22.0</assertj.version>
  583. <maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
  584. <animal-sniffer-maven-plugin.version>1.21</animal-sniffer-maven-plugin.version>
  585. <disruptor.version>3.4.4</disruptor.version>
  586. <maven-resources-plugin.version>3.2.0</maven-resources-plugin.version>
  587. <mockito.version>4.5.1</mockito.version>
  588. <maven.javadoc.failOnError>true</maven.javadoc.failOnError>
  589. <maven-javadoc-plugin.version>3.4.0</maven-javadoc-plugin.version>
  590. <maven-source-plugin.version>3.2.1</maven-source-plugin.version>
  591. <maven-clean-plugin.version>3.2.0</maven-clean-plugin.version>
  592. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  593. <junit.version>5.8.2</junit.version>
  594. <maven.javadoc.failOnWarnings>true</maven.javadoc.failOnWarnings>
  595. <maven-bundle-plugin.version>5.1.6</maven-bundle-plugin.version>
  596. <maven-gpg-plugin.version>3.0.1</maven-gpg-plugin.version>
  597. <java-uuid-generator.version>4.0.1</java-uuid-generator.version>
  598. <java.version>1.8</java.version>
  599. <logback.version>1.2.11</logback.version>
  600. <javax-servlet-api.version>4.0.1</javax-servlet-api.version>
  601. <maven-shade-plugin.version>3.3.0</maven-shade-plugin.version>
  602. <checkstyle.version>9.2.1</checkstyle.version>
  603. <nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version>
  604. <maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
  605. <project.scm.id>github</project.scm.id>
  606. <awaitility.version>4.2.0</awaitility.version>
  607. <maven-jar-plugin.version>3.2.2</maven-jar-plugin.version>
  608. <maven-install-plugin.version>3.0.0-M1</maven-install-plugin.version>
  609. <maven-release-plugin.version>2.5.3</maven-release-plugin.version>
  610. <jackson.version>2.13.3</jackson.version>
  611. <maven-enforcer-plugin.version>3.0.0</maven-enforcer-plugin.version>
  612. <maven-checkstyle-plugin.version>3.1.2</maven-checkstyle-plugin.version>
  613. </properties>
  614. </project>