mxparser-1.2.2.pom 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639
  1. <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">
  2. <!--
  3. Copyright (C) 2020 XStream committers.
  4. All rights reserved.
  5. The software in this package is published under the terms of the BSD
  6. style license a copy of which has been included with this distribution in
  7. the LICENSE.txt file.
  8. Created on 16. December 2020 by Joerg Schaible
  9. -->
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>io.github.x-stream</groupId>
  12. <artifactId>mxparser</artifactId>
  13. <packaging>jar</packaging>
  14. <version>1.2.2</version>
  15. <name>MXParser</name>
  16. <url>http://x-stream.github.io/mxparser</url>
  17. <description>
  18. MXParser is a fork of xpp3_min 1.1.7 containing only the parser with merged changes of the Plexus fork.
  19. </description>
  20. <inceptionYear>2020</inceptionYear>
  21. <licenses>
  22. <license>
  23. <name>Indiana University Extreme! Lab Software License</name>
  24. <url>https://raw.githubusercontent.com/x-stream/mxparser/master/LICENSE.txt</url>
  25. <distribution>repo</distribution>
  26. </license>
  27. </licenses>
  28. <developers>
  29. <developer>
  30. <id>mxparser</id>
  31. <name>XStream Committers</name>
  32. <url>http://x-stream.github.io/team.html</url>
  33. </developer>
  34. </developers>
  35. <profiles>
  36. <profile>
  37. <id>validate-changes</id>
  38. <activation>
  39. <file>
  40. <exists>changes.xml</exists>
  41. </file>
  42. </activation>
  43. <build>
  44. <plugins>
  45. <plugin>
  46. <groupId>org.apache.maven.plugins</groupId>
  47. <artifactId>maven-changes-plugin</artifactId>
  48. <executions>
  49. <execution>
  50. <id>validate-changes</id>
  51. <phase>package</phase>
  52. <goals>
  53. <goal>changes-validate</goal>
  54. </goals>
  55. </execution>
  56. </executions>
  57. <configuration>
  58. <xmlPath>${basedir}/changes.xml</xmlPath>
  59. <failOnError>true</failOnError>
  60. </configuration>
  61. </plugin>
  62. </plugins>
  63. </build>
  64. </profile>
  65. <profile>
  66. <id>mxparser-release</id>
  67. <properties>
  68. <version.java.enforced>[1.8,1.9)</version.java.enforced>
  69. </properties>
  70. <build>
  71. <plugins>
  72. <plugin>
  73. <groupId>org.apache.maven.plugins</groupId>
  74. <artifactId>maven-gpg-plugin</artifactId>
  75. <executions>
  76. <execution>
  77. <id>sign-artifacts</id>
  78. <phase>verify</phase>
  79. <goals>
  80. <goal>sign</goal>
  81. </goals>
  82. </execution>
  83. </executions>
  84. </plugin>
  85. </plugins>
  86. </build>
  87. </profile>
  88. </profiles>
  89. <issueManagement>
  90. <system>github</system>
  91. <url>https://github.com/x-stream/mxparser/issues/</url>
  92. </issueManagement>
  93. <ciManagement>
  94. <system>GitHub Action</system>
  95. <url>https://github.com/x-stream/mxparser/actions?query=workflow%3A%22CI+with+Maven%22</url>
  96. </ciManagement>
  97. <dependencyManagement>
  98. <dependencies>
  99. <dependency>
  100. <groupId>xmlpull</groupId>
  101. <artifactId>xmlpull</artifactId>
  102. <version>${version.xmlpull}</version>
  103. </dependency>
  104. <!-- always test-scoped -->
  105. <dependency>
  106. <groupId>junit</groupId>
  107. <artifactId>junit</artifactId>
  108. <version>${version.junit}</version>
  109. <scope>test</scope>
  110. </dependency>
  111. </dependencies>
  112. </dependencyManagement>
  113. <build>
  114. <pluginManagement>
  115. <plugins>
  116. <plugin>
  117. <groupId>org.apache.maven.plugins</groupId>
  118. <artifactId>maven-antrun-plugin</artifactId>
  119. <version>${version.plugin.maven.antrun}</version>
  120. </plugin>
  121. <plugin>
  122. <groupId>org.apache.maven.plugins</groupId>
  123. <artifactId>maven-changes-plugin</artifactId>
  124. <version>${version.plugin.maven.changes}</version>
  125. </plugin>
  126. <plugin>
  127. <groupId>org.apache.maven.plugins</groupId>
  128. <artifactId>maven-clean-plugin</artifactId>
  129. <version>${version.plugin.maven.clean}</version>
  130. </plugin>
  131. <plugin>
  132. <groupId>org.apache.maven.plugins</groupId>
  133. <artifactId>maven-compiler-plugin</artifactId>
  134. <version>${version.plugin.maven.compiler}</version>
  135. <configuration>
  136. <source>${version.java.source}</source>
  137. <target>${version.java.target}</target>
  138. </configuration>
  139. </plugin>
  140. <plugin>
  141. <groupId>org.apache.maven.plugins</groupId>
  142. <artifactId>maven-deploy-plugin</artifactId>
  143. <version>${version.plugin.maven.deploy}</version>
  144. </plugin>
  145. <plugin>
  146. <groupId>org.apache.maven.plugins</groupId>
  147. <artifactId>maven-eclipse-plugin</artifactId>
  148. <configuration>
  149. <downloadSources>true</downloadSources>
  150. <projectNameTemplate>[artifactId]</projectNameTemplate>
  151. </configuration>
  152. </plugin>
  153. <plugin>
  154. <groupId>org.apache.maven.plugins</groupId>
  155. <artifactId>maven-gpg-plugin</artifactId>
  156. <version>${version.plugin.maven.gpg}</version>
  157. <configuration>
  158. <keyname>${gpg.keyname}</keyname>
  159. <passphraseServerId>${gpg.keyname}</passphraseServerId>
  160. </configuration>
  161. </plugin>
  162. <plugin>
  163. <groupId>org.apache.maven.plugins</groupId>
  164. <artifactId>maven-install-plugin</artifactId>
  165. <version>${version.plugin.maven.install}</version>
  166. </plugin>
  167. <plugin>
  168. <groupId>org.apache.maven.plugins</groupId>
  169. <artifactId>maven-jar-plugin</artifactId>
  170. <version>${version.plugin.maven.jar}</version>
  171. <configuration>
  172. <archive>
  173. <manifest>
  174. <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
  175. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  176. </manifest>
  177. <manifestEntries>
  178. <Specification-Version>${project.info.majorVersion}.${project.info.minorVersion}</Specification-Version>
  179. <Bundle-License>Indiana University Extreme! Lab Software License</Bundle-License>
  180. <Automatic-Module-Name>${jar.module.name}</Automatic-Module-Name>
  181. <X-Compile-Source>${version.java.source}</X-Compile-Source>
  182. <X-Compile-Target>${version.java.target}</X-Compile-Target>
  183. <X-Builder>Maven ${maven.version}</X-Builder>
  184. <X-Build-Time>${maven.build.timestamp}</X-Build-Time>
  185. <X-Build-Os>${os.name}</X-Build-Os>
  186. </manifestEntries>
  187. </archive>
  188. </configuration>
  189. </plugin>
  190. <plugin>
  191. <groupId>org.apache.maven.plugins</groupId>
  192. <artifactId>maven-javadoc-plugin</artifactId>
  193. <version>${version.plugin.maven.javadoc}</version>
  194. <executions>
  195. <execution>
  196. <id>attach-javadocs</id>
  197. <goals>
  198. <goal>jar</goal>
  199. </goals>
  200. </execution>
  201. </executions>
  202. <configuration>
  203. <detectJavaApiLink>false</detectJavaApiLink>
  204. <additionalparam>${javadoc.xdoclint}</additionalparam>
  205. <source>${version.java.source}</source>
  206. <links>
  207. <link>${javadoc.link.javase}</link>
  208. </links>
  209. <archive>
  210. <manifest>
  211. <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
  212. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  213. </manifest>
  214. <manifestEntries>
  215. <Specification-Version>${project.info.majorVersion}.${project.info.minorVersion}</Specification-Version>
  216. <Bundle-License>Indiana University Extreme! Lab Software License</Bundle-License>
  217. </manifestEntries>
  218. </archive>
  219. </configuration>
  220. </plugin>
  221. <plugin>
  222. <groupId>org.apache.maven.plugins</groupId>
  223. <artifactId>maven-jxr-plugin</artifactId>
  224. <version>${version.plugin.maven.jxr}</version>
  225. </plugin>
  226. <plugin>
  227. <groupId>org.apache.maven.plugins</groupId>
  228. <artifactId>maven-release-plugin</artifactId>
  229. <version>${version.plugin.maven.release}</version>
  230. <configuration>
  231. <mavenExecutorId>forked-path</mavenExecutorId>
  232. <goals>deploy site-deploy</goals>
  233. <autoVersionSubmodules>true</autoVersionSubmodules>
  234. <useReleaseProfile>false</useReleaseProfile>
  235. <arguments>-Pmxparser-release</arguments>
  236. </configuration>
  237. </plugin>
  238. <plugin>
  239. <groupId>org.apache.maven.plugins</groupId>
  240. <artifactId>maven-resources-plugin</artifactId>
  241. <version>${version.plugin.maven.resources}</version>
  242. </plugin>
  243. <plugin>
  244. <groupId>org.apache.maven.plugins</groupId>
  245. <artifactId>maven-scm-publish-plugin</artifactId>
  246. <version>${version.plugin.maven.scm-publish}</version>
  247. <configuration>
  248. <checkinComment>Update site docs for version ${project.version}.</checkinComment>
  249. <content>${project.build.directory}/site</content>
  250. <localCheckout>true</localCheckout>
  251. <scmBranch>gh-pages</scmBranch>
  252. <serverId>github</serverId>
  253. </configuration>
  254. </plugin>
  255. <plugin>
  256. <groupId>org.apache.maven.plugins</groupId>
  257. <artifactId>maven-site-plugin</artifactId>
  258. <version>${version.plugin.maven.site}</version>
  259. <configuration>
  260. <skipDeploy>true</skipDeploy>
  261. </configuration>
  262. </plugin>
  263. <plugin>
  264. <groupId>org.apache.maven.plugins</groupId>
  265. <artifactId>maven-source-plugin</artifactId>
  266. <version>${version.plugin.maven.source}</version>
  267. <executions>
  268. <execution>
  269. <id>attach-sources</id>
  270. <phase>package</phase>
  271. <goals>
  272. <goal>jar-no-fork</goal>
  273. </goals>
  274. </execution>
  275. </executions>
  276. <configuration>
  277. <archive>
  278. <manifest>
  279. <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
  280. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  281. </manifest>
  282. <manifestEntries>
  283. <Specification-Version>${project.info.majorVersion}.${project.info.minorVersion}</Specification-Version>
  284. <Bundle-ManifestVersion>2</Bundle-ManifestVersion>
  285. <Bundle-Name>${project.name} Sources</Bundle-Name>
  286. <Bundle-SymbolicName>${project.artifactId}.sources</Bundle-SymbolicName>
  287. <Bundle-Vendor>${project.organization.name} Sources</Bundle-Vendor>
  288. <Bundle-Version>${project.info.osgiVersion} Sources</Bundle-Version>
  289. <Bundle-License>Indiana University Extreme! Lab Software License</Bundle-License>
  290. <Eclipse-SourceBundle>${project.artifactId};version=${project.info.osgiVersion}</Eclipse-SourceBundle>
  291. <X-Compile-Source>${version.java.source}</X-Compile-Source>
  292. <X-Compile-Target>${version.java.target}</X-Compile-Target>
  293. <X-Builder>Maven ${maven.version}</X-Builder>
  294. <X-Build-Time>${maven.build.timestamp}</X-Build-Time>
  295. <X-Build-Os>${os.name}</X-Build-Os>
  296. </manifestEntries>
  297. </archive>
  298. </configuration>
  299. </plugin>
  300. <plugin>
  301. <groupId>org.apache.maven.plugins</groupId>
  302. <artifactId>maven-surefire-plugin</artifactId>
  303. <version>${version.plugin.maven.surefire}</version>
  304. <configuration>
  305. <forkMode>once</forkMode>
  306. <printSummary>true</printSummary>
  307. <useFile>false</useFile>
  308. <systemProperties>
  309. <property>
  310. <name>java.awt.headless</name>
  311. <value>true</value>
  312. </property>
  313. </systemProperties>
  314. </configuration>
  315. </plugin>
  316. <plugin>
  317. <groupId>org.apache.maven.plugins</groupId>
  318. <artifactId>maven-surefire-report-plugin</artifactId>
  319. <version>${version.plugin.maven.surefire}</version>
  320. </plugin>
  321. <plugin>
  322. <groupId>org.codehaus.mojo</groupId>
  323. <artifactId>build-helper-maven-plugin</artifactId>
  324. <version>${version.plugin.mojo.build-helper}</version>
  325. </plugin>
  326. <plugin>
  327. <groupId>org.apache.felix</groupId>
  328. <artifactId>maven-bundle-plugin</artifactId>
  329. <version>${version.plugin.felix.bundle}</version>
  330. <configuration>
  331. <manifestLocation>${project.build.directory}/OSGi</manifestLocation>
  332. <instructions>
  333. <_noee>true</_noee>
  334. <_nouses>true</_nouses>
  335. <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
  336. <Bundle-License>Indiana University Extreme! Lab Software License</Bundle-License>
  337. <Specification-Version>${project.info.majorVersion}.${project.info.minorVersion}</Specification-Version><!-- FELIX-3392 -->
  338. </instructions>
  339. <archive>
  340. <manifest>
  341. <addDefaultSpecificationEntries>false</addDefaultSpecificationEntries><!-- FELIX-3392 -->
  342. </manifest>
  343. </archive>
  344. </configuration>
  345. </plugin>
  346. </plugins>
  347. </pluginManagement>
  348. <plugins>
  349. <plugin>
  350. <groupId>org.codehaus.mojo</groupId>
  351. <artifactId>build-helper-maven-plugin</artifactId>
  352. <executions>
  353. <execution>
  354. <id>versions</id>
  355. <phase>initialize</phase>
  356. <goals>
  357. <goal>maven-version</goal>
  358. <goal>parse-version</goal>
  359. </goals>
  360. <configuration>
  361. <propertyPrefix>project.info</propertyPrefix>
  362. </configuration>
  363. </execution>
  364. <execution>
  365. <id>include-license</id>
  366. <phase>generate-resources</phase>
  367. <goals>
  368. <goal>add-resource</goal>
  369. </goals>
  370. <configuration>
  371. <resources>
  372. <resource>
  373. <directory>${project.build.directory}/generated-resources</directory>
  374. </resource>
  375. </resources>
  376. </configuration>
  377. </execution>
  378. </executions>
  379. </plugin>
  380. <plugin>
  381. <groupId>org.apache.maven.plugins</groupId>
  382. <artifactId>maven-antrun-plugin</artifactId>
  383. <executions>
  384. <execution>
  385. <id>copy-license</id>
  386. <phase>generate-resources</phase>
  387. <goals>
  388. <goal>run</goal>
  389. </goals>
  390. <configuration>
  391. <target>
  392. <copy file="LICENSE.txt" tofile="${project.build.directory}/generated-resources/META-INF/LICENSE" overwrite="false" failonerror="true" />
  393. </target>
  394. </configuration>
  395. </execution>
  396. </executions>
  397. </plugin>
  398. <plugin>
  399. <groupId>org.apache.maven.plugins</groupId>
  400. <artifactId>maven-javadoc-plugin</artifactId>
  401. </plugin>
  402. <plugin>
  403. <groupId>org.apache.maven.plugins</groupId>
  404. <artifactId>maven-scm-publish-plugin</artifactId>
  405. <executions>
  406. <execution>
  407. <id>push-site</id>
  408. <phase>site-deploy</phase>
  409. <goals>
  410. <goal>publish-scm</goal>
  411. </goals>
  412. </execution>
  413. </executions>
  414. </plugin>
  415. <plugin>
  416. <groupId>org.apache.maven.plugins</groupId>
  417. <artifactId>maven-source-plugin</artifactId>
  418. </plugin>
  419. <plugin>
  420. <groupId>org.apache.felix</groupId>
  421. <artifactId>maven-bundle-plugin</artifactId>
  422. <executions>
  423. <execution>
  424. <id>bundle-manifest</id>
  425. <phase>process-classes</phase>
  426. <goals>
  427. <goal>manifest</goal>
  428. </goals>
  429. </execution>
  430. </executions>
  431. <configuration>
  432. <instructions combine.children="append">
  433. <Export-Package>${bundle.export.package}</Export-Package>
  434. <Import-Package>${bundle.import.package}</Import-Package>
  435. </instructions>
  436. </configuration>
  437. </plugin>
  438. <plugin>
  439. <groupId>org.apache.maven.plugins</groupId>
  440. <artifactId>maven-compiler-plugin</artifactId>
  441. <executions>
  442. <execution>
  443. <id>default-testCompile</id>
  444. <goals>
  445. <goal>testCompile</goal>
  446. </goals>
  447. <configuration>
  448. <source>${version.java.test.source}</source>
  449. <target>${version.java.test.target}</target>
  450. </configuration>
  451. </execution>
  452. </executions>
  453. </plugin>
  454. <plugin>
  455. <groupId>org.apache.maven.plugins</groupId>
  456. <artifactId>maven-jar-plugin</artifactId>
  457. <executions>
  458. <execution>
  459. <id>default-jar</id>
  460. <goals>
  461. <goal>jar</goal>
  462. </goals>
  463. <configuration>
  464. <archive combine.children="append">
  465. <manifestFile>${project.build.directory}/OSGi/MANIFEST.MF</manifestFile>
  466. </archive>
  467. </configuration>
  468. </execution>
  469. </executions>
  470. </plugin>
  471. </plugins>
  472. </build>
  473. <reporting>
  474. <plugins>
  475. <plugin>
  476. <groupId>org.apache.maven.plugins</groupId>
  477. <artifactId>maven-project-info-reports-plugin</artifactId>
  478. <version>${version.plugin.maven.project-info-reports}</version>
  479. <reportSets>
  480. <reportSet>
  481. <reports>
  482. <report>index</report>
  483. <report>summary</report>
  484. <report>dependencies</report>
  485. <report>issue-management</report>
  486. <report>licenses</report>
  487. <report>scm</report>
  488. </reports>
  489. </reportSet>
  490. </reportSets>
  491. <configuration>
  492. <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
  493. </configuration>
  494. </plugin>
  495. <plugin>
  496. <groupId>org.apache.maven.plugins</groupId>
  497. <artifactId>maven-changes-plugin</artifactId>
  498. <version>${version.plugin.maven.changes}</version>
  499. <reportSets>
  500. <reportSet>
  501. <reports>
  502. <report>changes-report</report>
  503. </reports>
  504. </reportSet>
  505. </reportSets>
  506. <configuration>
  507. <xmlPath>${basedir}/changes.xml</xmlPath>
  508. </configuration>
  509. </plugin>
  510. <plugin>
  511. <groupId>org.apache.maven.plugins</groupId>
  512. <artifactId>maven-javadoc-plugin</artifactId>
  513. <version>${version.plugin.maven.javadoc}</version>
  514. <reportSets>
  515. <reportSet>
  516. <reports>
  517. <report>javadoc-no-fork</report>
  518. </reports>
  519. </reportSet>
  520. </reportSets>
  521. <configuration>
  522. <detectJavaApiLink>false</detectJavaApiLink>
  523. <additionalparam>${javadoc.xdoclint}</additionalparam>
  524. <source>${version.java.source}</source>
  525. <links>
  526. <link>${javadoc.link.javase}</link>
  527. </links>
  528. </configuration>
  529. </plugin>
  530. <plugin>
  531. <groupId>org.apache.maven.plugins</groupId>
  532. <artifactId>maven-jxr-plugin</artifactId>
  533. <version>${version.plugin.maven.jxr}</version>
  534. <reportSets>
  535. <reportSet>
  536. <reports>
  537. <report>jxr</report>
  538. </reports>
  539. </reportSet>
  540. </reportSets>
  541. </plugin>
  542. <plugin>
  543. <groupId>org.apache.maven.plugins</groupId>
  544. <artifactId>maven-surefire-report-plugin</artifactId>
  545. <version>${version.plugin.maven.surefire}</version>
  546. <reportSets>
  547. <reportSet>
  548. <reports>
  549. <report>report-only</report>
  550. </reports>
  551. </reportSet>
  552. </reportSets>
  553. </plugin>
  554. </plugins>
  555. </reporting>
  556. <dependencies>
  557. <dependency>
  558. <groupId>xmlpull</groupId>
  559. <artifactId>xmlpull</artifactId>
  560. </dependency>
  561. <!-- test-scoped -->
  562. <dependency>
  563. <groupId>junit</groupId>
  564. <artifactId>junit</artifactId>
  565. </dependency>
  566. </dependencies>
  567. <distributionManagement>
  568. <repository>
  569. <id>ossrh-staging</id>
  570. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
  571. </repository>
  572. <snapshotRepository>
  573. <id>ossrh-snapshots</id>
  574. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  575. </snapshotRepository>
  576. <site>
  577. <id>github</id>
  578. <url>scm:git:ssh://git@github.com/x-stream/mxparser.git</url>
  579. </site>
  580. </distributionManagement>
  581. <scm>
  582. <url>https://github.com/x-stream/mxparser</url>
  583. <developerConnection>scm:git:ssh://git@github.com/x-stream/mxparser.git</developerConnection>
  584. <connection>scm:git:ssh://git@github.com/x-stream/mxparser.git</connection>
  585. <tag>v-1.2.2</tag>
  586. </scm>
  587. <properties>
  588. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  589. <version.java.source>1.4</version.java.source>
  590. <version.java.target>1.4</version.java.target>
  591. <version.java.test.source>1.5</version.java.test.source>
  592. <version.java.test.target>1.5</version.java.test.target>
  593. <version.plugin.felix.bundle>2.3.7</version.plugin.felix.bundle>
  594. <version.plugin.maven.antrun>3.0.0</version.plugin.maven.antrun>
  595. <version.plugin.maven.changes>2.12.1</version.plugin.maven.changes>
  596. <version.plugin.maven.clean>3.1.0</version.plugin.maven.clean>
  597. <version.plugin.maven.compiler>3.8.0</version.plugin.maven.compiler>
  598. <version.plugin.maven.deploy>3.0.0-M1</version.plugin.maven.deploy>
  599. <version.plugin.maven.gpg>1.6</version.plugin.maven.gpg>
  600. <version.plugin.maven.install>3.0.0-M1</version.plugin.maven.install>
  601. <version.plugin.maven.jar>3.2.0</version.plugin.maven.jar>
  602. <version.plugin.maven.javadoc>3.2.0</version.plugin.maven.javadoc>
  603. <version.plugin.maven.jxr>2.5</version.plugin.maven.jxr>
  604. <version.plugin.maven.project-info-reports>3.1.0</version.plugin.maven.project-info-reports>
  605. <version.plugin.maven.release>2.5.3</version.plugin.maven.release>
  606. <version.plugin.maven.resources>3.2.0</version.plugin.maven.resources>
  607. <version.plugin.maven.scm-publish>3.0.0</version.plugin.maven.scm-publish>
  608. <version.plugin.maven.site>3.9.1</version.plugin.maven.site>
  609. <version.plugin.maven.source>3.2.1</version.plugin.maven.source>
  610. <version.plugin.maven.surefire>3.0.0-M5</version.plugin.maven.surefire>
  611. <version.plugin.mojo.build-helper>3.2.0</version.plugin.mojo.build-helper>
  612. <version.xmlpull>1.1.3.1</version.xmlpull>
  613. <version.junit>4.13.1</version.junit>
  614. <bundle.export.package>${jar.module.name};-noimport:=true</bundle.export.package>
  615. <bundle.import.package>*</bundle.import.package>
  616. <jar.module.name>io.github.xstream.mxparser</jar.module.name>
  617. <javadoc.link.javase>http://docs.oracle.com/javase/8/docs/api/</javadoc.link.javase>
  618. <javadoc.xdoclint />
  619. </properties>
  620. </project>