logstash-logback-encoder-7.1.1.pom 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612
  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.1.1</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.1.1</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>http://logback.qos.ch/apidocs</link>
  90. <link>https://javadoc.io/doc/com.fasterxml.jackson.core/jackson-core/${jackson.version}</link>
  91. <link>https://javadoc.io/doc/com.fasterxml.jackson.core/jackson-databind/${jackson.version}</link>
  92. </links>
  93. <source>${java.version}</source>
  94. <quiet>true</quiet>
  95. </configuration>
  96. </plugin>
  97. <plugin>
  98. <artifactId>maven-checkstyle-plugin</artifactId>
  99. <version>${maven-checkstyle-plugin.version}</version>
  100. <dependencies>
  101. <dependency>
  102. <groupId>com.puppycrawl.tools</groupId>
  103. <artifactId>checkstyle</artifactId>
  104. <version>${checkstyle.version}</version>
  105. </dependency>
  106. </dependencies>
  107. <configuration>
  108. <configLocation>src/checkstyle/checkstyle.xml</configLocation>
  109. <includeTestSourceDirectory>true</includeTestSourceDirectory>
  110. </configuration>
  111. </plugin>
  112. <plugin>
  113. <groupId>com.mycila</groupId>
  114. <artifactId>license-maven-plugin</artifactId>
  115. <version>${license-maven-plugin.version}</version>
  116. <configuration>
  117. <header>license-header.txt</header>
  118. <mapping>
  119. <java>SLASHSTAR_STYLE</java>
  120. </mapping>
  121. <includes>
  122. <include>src/main/java/**</include>
  123. <include>src/test/java/**</include>
  124. </includes>
  125. <defaultProperties>
  126. <year>2022</year>
  127. </defaultProperties>
  128. </configuration>
  129. </plugin>
  130. <plugin>
  131. <artifactId>maven-release-plugin</artifactId>
  132. <version>${maven-release-plugin.version}</version>
  133. </plugin>
  134. <plugin>
  135. <artifactId>maven-resources-plugin</artifactId>
  136. <version>${maven-resources-plugin.version}</version>
  137. </plugin>
  138. <plugin>
  139. <groupId>org.jacoco</groupId>
  140. <artifactId>jacoco-maven-plugin</artifactId>
  141. <version>0.8.8</version>
  142. <configuration>
  143. <includes>
  144. <include>net/logstash/**</include>
  145. </includes>
  146. <formats>
  147. <format>XML</format>
  148. <format>HTML</format>
  149. </formats>
  150. </configuration>
  151. </plugin>
  152. </plugins>
  153. </pluginManagement>
  154. <plugins>
  155. <plugin>
  156. <artifactId>maven-compiler-plugin</artifactId>
  157. <version>${maven-compiler-plugin.version}</version>
  158. <configuration>
  159. <source>${java.version}</source>
  160. <target>${java.version}</target>
  161. </configuration>
  162. </plugin>
  163. <plugin>
  164. <artifactId>maven-enforcer-plugin</artifactId>
  165. <version>${maven-enforcer-plugin.version}</version>
  166. <executions>
  167. <execution>
  168. <phase>validate</phase>
  169. <goals>
  170. <goal>enforce</goal>
  171. </goals>
  172. <configuration>
  173. <rules>
  174. <requireJavaVersion>
  175. <version>[1.8,)</version>
  176. </requireJavaVersion>
  177. <requireMavenVersion>
  178. <version>[3.5.0,)</version>
  179. </requireMavenVersion>
  180. <enforceBytecodeVersion>
  181. <maxJdkVersion>1.8</maxJdkVersion>
  182. <ignoreClasses>
  183. <ignoreClass>META-INF/versions/*</ignoreClass>
  184. </ignoreClasses>
  185. </enforceBytecodeVersion>
  186. </rules>
  187. </configuration>
  188. </execution>
  189. </executions>
  190. <dependencies>
  191. <dependency>
  192. <groupId>org.codehaus.mojo</groupId>
  193. <artifactId>extra-enforcer-rules</artifactId>
  194. <version>1.5.1</version>
  195. </dependency>
  196. </dependencies>
  197. </plugin>
  198. <plugin>
  199. <groupId>org.codehaus.mojo</groupId>
  200. <artifactId>animal-sniffer-maven-plugin</artifactId>
  201. <version>${animal-sniffer-maven-plugin.version}</version>
  202. <executions>
  203. <execution>
  204. <id>ensure-java-1.8-compatible</id>
  205. <phase>validate</phase>
  206. <goals>
  207. <goal>check</goal>
  208. </goals>
  209. </execution>
  210. </executions>
  211. <configuration>
  212. <signature>
  213. <groupId>org.codehaus.mojo.signature</groupId>
  214. <artifactId>java18</artifactId>
  215. <version>1.0</version>
  216. </signature>
  217. </configuration>
  218. </plugin>
  219. <plugin>
  220. <artifactId>maven-javadoc-plugin</artifactId>
  221. <executions>
  222. <execution>
  223. <phase>package</phase>
  224. <goals>
  225. <goal>jar</goal>
  226. </goals>
  227. </execution>
  228. </executions>
  229. </plugin>
  230. <plugin>
  231. <groupId>com.mycila</groupId>
  232. <artifactId>license-maven-plugin</artifactId>
  233. <executions>
  234. <execution>
  235. <phase>process-sources</phase>
  236. <goals>
  237. <goal>check</goal>
  238. </goals>
  239. </execution>
  240. </executions>
  241. </plugin>
  242. <plugin>
  243. <artifactId>maven-jar-plugin</artifactId>
  244. <version>${maven-jar-plugin.version}</version>
  245. <configuration>
  246. <archive>
  247. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  248. <manifestEntries>
  249. <Automatic-Module-Name>logstash.logback.encoder</Automatic-Module-Name>
  250. </manifestEntries>
  251. </archive>
  252. </configuration>
  253. </plugin>
  254. <plugin>
  255. <artifactId>maven-shade-plugin</artifactId>
  256. <version>${maven-shade-plugin.version}</version>
  257. <executions>
  258. <execution>
  259. <goals>
  260. <goal>shade</goal>
  261. </goals>
  262. </execution>
  263. </executions>
  264. <configuration>
  265. <shadedArtifactAttached>false</shadedArtifactAttached>
  266. <createDependencyReducedPom>true</createDependencyReducedPom>
  267. <createSourcesJar>true</createSourcesJar>
  268. <shadeSourcesContent>true</shadeSourcesContent>
  269. <minimizeJar>true</minimizeJar>
  270. <artifactSet>
  271. <includes>
  272. <include>com.lmax:disruptor</include>
  273. </includes>
  274. </artifactSet>
  275. <filters>
  276. <filter>
  277. <artifact>com.lmax:disruptor</artifact>
  278. <excludes>
  279. <exclude>META-INF/MANIFEST.MF</exclude>
  280. </excludes>
  281. </filter>
  282. </filters>
  283. <relocations>
  284. <relocation>
  285. <pattern>com.lmax.disruptor</pattern>
  286. <shadedPattern>${project.groupId}.encoder.com.lmax.disruptor</shadedPattern>
  287. </relocation>
  288. </relocations>
  289. </configuration>
  290. </plugin>
  291. <plugin>
  292. <groupId>org.apache.felix</groupId>
  293. <artifactId>maven-bundle-plugin</artifactId>
  294. <version>${maven-bundle-plugin.version}</version>
  295. <extensions>true</extensions>
  296. <executions>
  297. <execution>
  298. <id>bundle-manifest</id>
  299. <phase>process-classes</phase>
  300. <goals>
  301. <goal>manifest</goal>
  302. </goals>
  303. </execution>
  304. </executions>
  305. <configuration>
  306. <instructions>
  307. <Export-Package>net.logstash.logback.*</Export-Package>
  308. <Fragment-Host>ch.qos.logback.classic</Fragment-Host>
  309. <Import-Package>!com.lmax.disruptor.*,!ch.qos.logback.classic.*,!ch.qos.logback.core.*,!org.slf4j.*,*</Import-Package>
  310. </instructions>
  311. </configuration>
  312. </plugin>
  313. <plugin>
  314. <artifactId>maven-checkstyle-plugin</artifactId>
  315. <executions>
  316. <execution>
  317. <phase>process-sources</phase>
  318. <goals>
  319. <goal>check</goal>
  320. </goals>
  321. </execution>
  322. </executions>
  323. </plugin>
  324. <plugin>
  325. <groupId>org.jacoco</groupId>
  326. <artifactId>jacoco-maven-plugin</artifactId>
  327. <executions>
  328. <execution>
  329. <id>jacoco-prepare-agent</id>
  330. <phase>process-test-classes</phase>
  331. <goals>
  332. <goal>prepare-agent</goal>
  333. </goals>
  334. </execution>
  335. <execution>
  336. <id>jacoco-report</id>
  337. <phase>verify</phase>
  338. <goals>
  339. <goal>report</goal>
  340. </goals>
  341. </execution>
  342. </executions>
  343. </plugin>
  344. </plugins>
  345. </build>
  346. <profiles>
  347. <profile>
  348. <id>ossrh</id>
  349. <build>
  350. <plugins>
  351. <plugin>
  352. <artifactId>maven-gpg-plugin</artifactId>
  353. <version>3.0.1</version>
  354. <executions>
  355. <execution>
  356. <id>sign-artifacts</id>
  357. <goals>
  358. <goal>sign</goal>
  359. </goals>
  360. </execution>
  361. </executions>
  362. </plugin>
  363. <plugin>
  364. <groupId>org.sonatype.plugins</groupId>
  365. <artifactId>nexus-staging-maven-plugin</artifactId>
  366. <version>1.6.12</version>
  367. <extensions>true</extensions>
  368. <executions>
  369. <execution>
  370. <id>injected-nexus-deploy</id>
  371. <phase>deploy</phase>
  372. <goals>
  373. <goal>deploy</goal>
  374. </goals>
  375. <configuration>
  376. <serverId>ossrh</serverId>
  377. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  378. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  379. </configuration>
  380. </execution>
  381. </executions>
  382. <configuration>
  383. <serverId>ossrh</serverId>
  384. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  385. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  386. </configuration>
  387. </plugin>
  388. </plugins>
  389. </build>
  390. </profile>
  391. <profile>
  392. <id>java15</id>
  393. <properties>
  394. <maven.javadoc.failOnWarnings>false</maven.javadoc.failOnWarnings>
  395. </properties>
  396. </profile>
  397. <profile>
  398. <id>github</id>
  399. <properties>
  400. <maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
  401. </properties>
  402. </profile>
  403. <profile>
  404. <id>m2e</id>
  405. <build>
  406. <directory>target-eclipse</directory>
  407. </build>
  408. </profile>
  409. <profile>
  410. <id>fast</id>
  411. <properties>
  412. <maven.javadoc.skip>true</maven.javadoc.skip>
  413. <license.skip>true</license.skip>
  414. <checkstyle.skip>true</checkstyle.skip>
  415. </properties>
  416. </profile>
  417. </profiles>
  418. <dependencies>
  419. <dependency>
  420. <groupId>ch.qos.logback</groupId>
  421. <artifactId>logback-classic</artifactId>
  422. <version>1.2.11</version>
  423. <scope>compile</scope>
  424. <optional>true</optional>
  425. </dependency>
  426. <dependency>
  427. <groupId>ch.qos.logback</groupId>
  428. <artifactId>logback-access</artifactId>
  429. <version>1.2.11</version>
  430. <scope>compile</scope>
  431. <optional>true</optional>
  432. </dependency>
  433. <dependency>
  434. <groupId>ch.qos.logback</groupId>
  435. <artifactId>logback-core</artifactId>
  436. <version>1.2.11</version>
  437. <scope>provided</scope>
  438. </dependency>
  439. <dependency>
  440. <groupId>javax.servlet</groupId>
  441. <artifactId>javax.servlet-api</artifactId>
  442. <version>4.0.1</version>
  443. <scope>test</scope>
  444. </dependency>
  445. <dependency>
  446. <groupId>com.fasterxml.jackson.core</groupId>
  447. <artifactId>jackson-databind</artifactId>
  448. <version>2.13.2.2</version>
  449. <scope>compile</scope>
  450. </dependency>
  451. <dependency>
  452. <groupId>com.fasterxml.jackson.dataformat</groupId>
  453. <artifactId>jackson-dataformat-cbor</artifactId>
  454. <version>2.13.2</version>
  455. <scope>compile</scope>
  456. <optional>true</optional>
  457. </dependency>
  458. <dependency>
  459. <groupId>com.fasterxml.jackson.dataformat</groupId>
  460. <artifactId>jackson-dataformat-smile</artifactId>
  461. <version>2.13.2</version>
  462. <scope>compile</scope>
  463. <optional>true</optional>
  464. </dependency>
  465. <dependency>
  466. <groupId>com.fasterxml.jackson.dataformat</groupId>
  467. <artifactId>jackson-dataformat-yaml</artifactId>
  468. <version>2.13.2</version>
  469. <scope>compile</scope>
  470. <optional>true</optional>
  471. </dependency>
  472. <dependency>
  473. <groupId>com.fasterxml.uuid</groupId>
  474. <artifactId>java-uuid-generator</artifactId>
  475. <version>4.0.1</version>
  476. <scope>compile</scope>
  477. <optional>true</optional>
  478. </dependency>
  479. <dependency>
  480. <groupId>org.junit.jupiter</groupId>
  481. <artifactId>junit-jupiter</artifactId>
  482. <version>5.8.2</version>
  483. <scope>test</scope>
  484. <exclusions>
  485. <exclusion>
  486. <artifactId>junit-jupiter-api</artifactId>
  487. <groupId>org.junit.jupiter</groupId>
  488. </exclusion>
  489. <exclusion>
  490. <artifactId>junit-jupiter-params</artifactId>
  491. <groupId>org.junit.jupiter</groupId>
  492. </exclusion>
  493. <exclusion>
  494. <artifactId>junit-jupiter-engine</artifactId>
  495. <groupId>org.junit.jupiter</groupId>
  496. </exclusion>
  497. </exclusions>
  498. </dependency>
  499. <dependency>
  500. <groupId>org.assertj</groupId>
  501. <artifactId>assertj-core</artifactId>
  502. <version>3.22.0</version>
  503. <scope>test</scope>
  504. </dependency>
  505. <dependency>
  506. <groupId>org.mockito</groupId>
  507. <artifactId>mockito-core</artifactId>
  508. <version>4.4.0</version>
  509. <scope>test</scope>
  510. <exclusions>
  511. <exclusion>
  512. <artifactId>byte-buddy</artifactId>
  513. <groupId>net.bytebuddy</groupId>
  514. </exclusion>
  515. <exclusion>
  516. <artifactId>byte-buddy-agent</artifactId>
  517. <groupId>net.bytebuddy</groupId>
  518. </exclusion>
  519. <exclusion>
  520. <artifactId>objenesis</artifactId>
  521. <groupId>org.objenesis</groupId>
  522. </exclusion>
  523. </exclusions>
  524. </dependency>
  525. <dependency>
  526. <groupId>org.mockito</groupId>
  527. <artifactId>mockito-junit-jupiter</artifactId>
  528. <version>4.4.0</version>
  529. <scope>test</scope>
  530. <exclusions>
  531. <exclusion>
  532. <artifactId>junit-jupiter-api</artifactId>
  533. <groupId>org.junit.jupiter</groupId>
  534. </exclusion>
  535. </exclusions>
  536. </dependency>
  537. <dependency>
  538. <groupId>org.awaitility</groupId>
  539. <artifactId>awaitility</artifactId>
  540. <version>4.2.0</version>
  541. <scope>test</scope>
  542. <exclusions>
  543. <exclusion>
  544. <artifactId>hamcrest</artifactId>
  545. <groupId>org.hamcrest</groupId>
  546. </exclusion>
  547. </exclusions>
  548. </dependency>
  549. </dependencies>
  550. <dependencyManagement>
  551. <dependencies>
  552. <dependency>
  553. <groupId>com.fasterxml.jackson</groupId>
  554. <artifactId>jackson-bom</artifactId>
  555. <version>${jackson.version}</version>
  556. <type>pom</type>
  557. <scope>import</scope>
  558. </dependency>
  559. <dependency>
  560. <groupId>org.junit</groupId>
  561. <artifactId>junit-bom</artifactId>
  562. <version>${junit.version}</version>
  563. <type>pom</type>
  564. <scope>import</scope>
  565. </dependency>
  566. </dependencies>
  567. </dependencyManagement>
  568. <distributionManagement>
  569. <repository>
  570. <id>ossrh</id>
  571. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  572. </repository>
  573. <snapshotRepository>
  574. <id>ossrh</id>
  575. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  576. </snapshotRepository>
  577. </distributionManagement>
  578. <properties>
  579. <license-maven-plugin.version>4.1</license-maven-plugin.version>
  580. <assertj.version>3.22.0</assertj.version>
  581. <maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
  582. <animal-sniffer-maven-plugin.version>1.21</animal-sniffer-maven-plugin.version>
  583. <disruptor.version>3.4.4</disruptor.version>
  584. <maven-resources-plugin.version>3.2.0</maven-resources-plugin.version>
  585. <mockito.version>4.4.0</mockito.version>
  586. <maven.javadoc.failOnError>true</maven.javadoc.failOnError>
  587. <maven-javadoc-plugin.version>3.3.2</maven-javadoc-plugin.version>
  588. <maven-source-plugin.version>3.2.1</maven-source-plugin.version>
  589. <maven-clean-plugin.version>3.2.0</maven-clean-plugin.version>
  590. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  591. <junit.version>5.8.2</junit.version>
  592. <maven.javadoc.failOnWarnings>true</maven.javadoc.failOnWarnings>
  593. <maven-bundle-plugin.version>5.1.4</maven-bundle-plugin.version>
  594. <maven-gpg-plugin.version>3.0.1</maven-gpg-plugin.version>
  595. <java-uuid-generator.version>4.0.1</java-uuid-generator.version>
  596. <java.version>1.8</java.version>
  597. <logback.version>1.2.11</logback.version>
  598. <javax-servlet-api.version>4.0.1</javax-servlet-api.version>
  599. <maven-shade-plugin.version>3.3.0</maven-shade-plugin.version>
  600. <checkstyle.version>9.2.1</checkstyle.version>
  601. <nexus-staging-maven-plugin.version>1.6.12</nexus-staging-maven-plugin.version>
  602. <maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
  603. <project.scm.id>github</project.scm.id>
  604. <awaitility.version>4.2.0</awaitility.version>
  605. <maven-jar-plugin.version>3.2.2</maven-jar-plugin.version>
  606. <maven-install-plugin.version>3.0.0-M1</maven-install-plugin.version>
  607. <maven-release-plugin.version>2.5.3</maven-release-plugin.version>
  608. <jackson.version>2.13.2.20220328</jackson.version>
  609. <maven-enforcer-plugin.version>3.0.0</maven-enforcer-plugin.version>
  610. <maven-checkstyle-plugin.version>3.1.2</maven-checkstyle-plugin.version>
  611. </properties>
  612. </project>