You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 20KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Licensed to the Apache Software Foundation (ASF) under one
  4. ~ or more contributor license agreements. See the NOTICE file
  5. ~ distributed with this work for additional information
  6. ~ regarding copyright ownership. The ASF licenses this file
  7. ~ to you under the Apache License, Version 2.0 (the
  8. ~ "License"); you may not use this file except in compliance
  9. ~ with the License. You may obtain a copy of the License at
  10. ~
  11. ~ http://www.apache.org/licenses/LICENSE-2.0
  12. ~
  13. ~ Unless required by applicable law or agreed to in writing,
  14. ~ software distributed under the License is distributed on an
  15. ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16. ~ KIND, either express or implied. See the License for the
  17. ~ specific language governing permissions and limitations
  18. ~ under the License.
  19. -->
  20. <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">
  21. <modelVersion>4.0.0</modelVersion>
  22. <parent>
  23. <groupId>org.apache.archiva</groupId>
  24. <artifactId>archiva-web</artifactId>
  25. <version>3.0.0-SNAPSHOT</version>
  26. </parent>
  27. <artifactId>archiva-web-common</artifactId>
  28. <packaging>jar</packaging>
  29. <name>Archiva Web :: Web Common</name>
  30. <properties>
  31. <enunciate.docsDir>${project.build.outputDirectory}/rest-docs-archiva-ui</enunciate.docsDir>
  32. <site.staging.base>${project.parent.parent.basedir}</site.staging.base>
  33. </properties>
  34. <dependencies>
  35. <dependency>
  36. <groupId>org.apache.archiva</groupId>
  37. <artifactId>metadata-repository-api</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.archiva.configuration</groupId>
  41. <artifactId>archiva-configuration-provider</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.archiva</groupId>
  45. <artifactId>archiva-security-common</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.archiva</groupId>
  49. <artifactId>archiva-rss</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.apache.archiva</groupId>
  53. <artifactId>archiva-security</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.apache.archiva.redback</groupId>
  57. <artifactId>redback-common-integrations</artifactId>
  58. <exclusions>
  59. <exclusion>
  60. <groupId>stax</groupId>
  61. <artifactId>stax-api</artifactId>
  62. </exclusion>
  63. </exclusions>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.archiva</groupId>
  67. <artifactId>archiva-scheduler-repository</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.apache.archiva.redback</groupId>
  71. <artifactId>redback-rbac-model</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.apache.archiva.redback</groupId>
  75. <artifactId>redback-rbac-role-manager</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.apache.archiva.redback</groupId>
  79. <artifactId>redback-system</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.apache.archiva</groupId>
  83. <artifactId>archiva-repository-layer</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.apache.archiva</groupId>
  87. <artifactId>archiva-rest-api</artifactId>
  88. <exclusions>
  89. <exclusion>
  90. <groupId>org.eclipse.jetty</groupId>
  91. <artifactId>jetty-server</artifactId>
  92. </exclusion>
  93. <exclusion>
  94. <groupId>org.eclipse.jetty</groupId>
  95. <artifactId>jetty-continuation</artifactId>
  96. </exclusion>
  97. <exclusion>
  98. <groupId>org.eclipse.jetty</groupId>
  99. <artifactId>jetty-http</artifactId>
  100. </exclusion>
  101. <exclusion>
  102. <groupId>org.eclipse.jetty</groupId>
  103. <artifactId>jetty-io</artifactId>
  104. </exclusion>
  105. <exclusion>
  106. <groupId>org.eclipse.jetty</groupId>
  107. <artifactId>jetty-util</artifactId>
  108. </exclusion>
  109. <exclusion>
  110. <groupId>org.eclipse.jetty</groupId>
  111. <artifactId>jetty-security</artifactId>
  112. </exclusion>
  113. <exclusion>
  114. <groupId>commons-logging</groupId>
  115. <artifactId>commons-logging</artifactId>
  116. </exclusion>
  117. <exclusion>
  118. <groupId>org.apache.geronimo.specs</groupId>
  119. <artifactId>geronimo-servlet_3.0_spec</artifactId>
  120. </exclusion>
  121. <exclusion>
  122. <groupId>org.apache.geronimo.specs</groupId>
  123. <artifactId>geronimo-javamail_1.4_spec</artifactId>
  124. </exclusion>
  125. <exclusion>
  126. <groupId>org.apache.geronimo.specs</groupId>
  127. <artifactId>geronimo-servlet_2.5_spec</artifactId>
  128. </exclusion>
  129. </exclusions>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.apache.archiva</groupId>
  133. <artifactId>archiva-rest-services</artifactId>
  134. <exclusions>
  135. <exclusion>
  136. <groupId>org.eclipse.jetty</groupId>
  137. <artifactId>jetty-server</artifactId>
  138. </exclusion>
  139. <exclusion>
  140. <groupId>org.eclipse.jetty</groupId>
  141. <artifactId>jetty-continuation</artifactId>
  142. </exclusion>
  143. <exclusion>
  144. <groupId>org.eclipse.jetty</groupId>
  145. <artifactId>jetty-http</artifactId>
  146. </exclusion>
  147. <exclusion>
  148. <groupId>org.eclipse.jetty</groupId>
  149. <artifactId>jetty-io</artifactId>
  150. </exclusion>
  151. <exclusion>
  152. <groupId>org.eclipse.jetty</groupId>
  153. <artifactId>jetty-util</artifactId>
  154. </exclusion>
  155. <exclusion>
  156. <groupId>org.eclipse.jetty</groupId>
  157. <artifactId>jetty-security</artifactId>
  158. </exclusion>
  159. <exclusion>
  160. <groupId>commons-logging</groupId>
  161. <artifactId>commons-logging</artifactId>
  162. </exclusion>
  163. <exclusion>
  164. <groupId>org.apache.geronimo.specs</groupId>
  165. <artifactId>geronimo-servlet_3.0_spec</artifactId>
  166. </exclusion>
  167. <exclusion>
  168. <groupId>org.apache.geronimo.specs</groupId>
  169. <artifactId>geronimo-javamail_1.4_spec</artifactId>
  170. </exclusion>
  171. <exclusion>
  172. <groupId>org.apache.geronimo.specs</groupId>
  173. <artifactId>geronimo-servlet_2.5_spec</artifactId>
  174. </exclusion>
  175. </exclusions>
  176. </dependency>
  177. <dependency>
  178. <groupId>org.apache.archiva</groupId>
  179. <artifactId>archiva-storage-api</artifactId>
  180. </dependency>
  181. <dependency>
  182. <groupId>org.apache.archiva</groupId>
  183. <artifactId>archiva-model</artifactId>
  184. </dependency>
  185. <dependency>
  186. <groupId>org.apache.archiva</groupId>
  187. <artifactId>archiva-common</artifactId>
  188. </dependency>
  189. <dependency>
  190. <groupId>org.apache.archiva</groupId>
  191. <artifactId>archiva-storage-fs</artifactId>
  192. </dependency>
  193. <dependency>
  194. <groupId>org.apache.archiva</groupId>
  195. <artifactId>archiva-repository-api</artifactId>
  196. </dependency>
  197. <dependency>
  198. <groupId>org.apache.archiva</groupId>
  199. <artifactId>archiva-repository-admin-api</artifactId>
  200. </dependency>
  201. <dependency>
  202. <groupId>org.apache.archiva</groupId>
  203. <artifactId>archiva-scheduler-repository-api</artifactId>
  204. </dependency>
  205. <dependency>
  206. <groupId>org.apache.archiva</groupId>
  207. <artifactId>archiva-checksum</artifactId>
  208. </dependency>
  209. <dependency>
  210. <groupId>org.apache.archiva</groupId>
  211. <artifactId>archiva-scheduler-api</artifactId>
  212. </dependency>
  213. <dependency>
  214. <groupId>org.apache.archiva</groupId>
  215. <artifactId>metadata-model</artifactId>
  216. </dependency>
  217. <dependency>
  218. <groupId>org.apache.archiva</groupId>
  219. <artifactId>archiva-filelock</artifactId>
  220. </dependency>
  221. <dependency>
  222. <groupId>org.apache.archiva.maven</groupId>
  223. <artifactId>archiva-maven-model</artifactId>
  224. </dependency>
  225. <dependency>
  226. <groupId>org.apache.archiva.redback</groupId>
  227. <artifactId>redback-users-api</artifactId>
  228. </dependency>
  229. <dependency>
  230. <groupId>org.apache.archiva.redback</groupId>
  231. <artifactId>redback-configuration</artifactId>
  232. </dependency>
  233. <dependency>
  234. <groupId>org.apache.archiva.redback</groupId>
  235. <artifactId>redback-policy</artifactId>
  236. </dependency>
  237. <dependency>
  238. <groupId>org.apache.archiva.redback</groupId>
  239. <artifactId>redback-authentication-api</artifactId>
  240. </dependency>
  241. <dependency>
  242. <groupId>org.apache.archiva.redback</groupId>
  243. <artifactId>redback-integrations-security</artifactId>
  244. </dependency>
  245. <dependency>
  246. <groupId>org.apache.archiva.redback</groupId>
  247. <artifactId>redback-rest-api</artifactId>
  248. </dependency>
  249. <dependency>
  250. <groupId>org.apache.archiva.redback</groupId>
  251. <artifactId>redback-users-jpa</artifactId>
  252. </dependency>
  253. <dependency>
  254. <groupId>org.apache.archiva.redback</groupId>
  255. <artifactId>redback-common-ldap</artifactId>
  256. </dependency>
  257. <dependency>
  258. <groupId>org.apache.archiva.redback</groupId>
  259. <artifactId>redback-keys-api</artifactId>
  260. </dependency>
  261. <dependency>
  262. <groupId>org.apache.archiva.redback</groupId>
  263. <artifactId>redback-authorization-api</artifactId>
  264. </dependency>
  265. <dependency>
  266. <groupId>org.apache.archiva.components.registry</groupId>
  267. <artifactId>archiva-components-spring-registry-api</artifactId>
  268. </dependency>
  269. <dependency>
  270. <groupId>org.apache.archiva.components.cache</groupId>
  271. <artifactId>archiva-components-spring-cache-api</artifactId>
  272. </dependency>
  273. <dependency>
  274. <groupId>org.apache.archiva.components</groupId>
  275. <artifactId>archiva-components-spring-taskqueue</artifactId>
  276. </dependency>
  277. <dependency>
  278. <groupId>org.apache.archiva.components</groupId>
  279. <artifactId>archiva-components-spring-quartz</artifactId>
  280. </dependency>
  281. <dependency>
  282. <groupId>jakarta.inject</groupId>
  283. <artifactId>jakarta.inject-api</artifactId>
  284. </dependency>
  285. <dependency>
  286. <groupId>jakarta.activation</groupId>
  287. <artifactId>jakarta.activation-api</artifactId>
  288. </dependency>
  289. <dependency>
  290. <groupId>org.apache.maven.wagon</groupId>
  291. <artifactId>wagon-provider-api</artifactId>
  292. </dependency>
  293. <dependency>
  294. <groupId>org.apache.maven</groupId>
  295. <artifactId>maven-model</artifactId>
  296. </dependency>
  297. <dependency>
  298. <groupId>commons-io</groupId>
  299. <artifactId>commons-io</artifactId>
  300. </dependency>
  301. <dependency>
  302. <groupId>org.apache.commons</groupId>
  303. <artifactId>commons-lang3</artifactId>
  304. </dependency>
  305. <dependency>
  306. <groupId>org.apache.commons</groupId>
  307. <artifactId>commons-collections4</artifactId>
  308. </dependency>
  309. <dependency>
  310. <groupId>commons-codec</groupId>
  311. <artifactId>commons-codec</artifactId>
  312. </dependency>
  313. <dependency>
  314. <groupId>jakarta.ws.rs</groupId>
  315. <artifactId>jakarta.ws.rs-api</artifactId>
  316. </dependency>
  317. <dependency>
  318. <groupId>org.quartz-scheduler</groupId>
  319. <artifactId>quartz</artifactId>
  320. </dependency>
  321. <dependency>
  322. <groupId>org.springframework</groupId>
  323. <artifactId>spring-core</artifactId>
  324. </dependency>
  325. <dependency>
  326. <groupId>org.springframework</groupId>
  327. <artifactId>spring-beans</artifactId>
  328. </dependency>
  329. <dependency>
  330. <groupId>org.springframework</groupId>
  331. <artifactId>spring-context</artifactId>
  332. </dependency>
  333. <dependency>
  334. <groupId>org.jsoup</groupId>
  335. <artifactId>jsoup</artifactId>
  336. </dependency>
  337. <dependency>
  338. <groupId>jakarta.servlet</groupId>
  339. <artifactId>jakarta.servlet-api</artifactId>
  340. </dependency>
  341. <dependency>
  342. <groupId>org.springframework</groupId>
  343. <artifactId>spring-web</artifactId>
  344. </dependency>
  345. <dependency>
  346. <groupId>org.apache.commons</groupId>
  347. <artifactId>commons-text</artifactId>
  348. </dependency>
  349. <dependency>
  350. <groupId>com.rometools</groupId>
  351. <artifactId>rome</artifactId>
  352. </dependency>
  353. <dependency>
  354. <groupId>org.apache.cxf</groupId>
  355. <artifactId>cxf-core</artifactId>
  356. </dependency>
  357. <dependency>
  358. <groupId>org.apache.cxf</groupId>
  359. <artifactId>cxf-rt-frontend-jaxrs</artifactId>
  360. </dependency>
  361. <dependency>
  362. <groupId>org.apache.cxf</groupId>
  363. <artifactId>cxf-rt-transports-http</artifactId>
  364. </dependency>
  365. <dependency>
  366. <groupId>com.fasterxml.jackson.jaxrs</groupId>
  367. <artifactId>jackson-jaxrs-json-provider</artifactId>
  368. </dependency>
  369. <dependency>
  370. <groupId>jakarta.mail</groupId>
  371. <artifactId>jakarta.mail-api</artifactId>
  372. <scope>provided</scope>
  373. </dependency>
  374. <dependency>
  375. <groupId>jakarta.annotation</groupId>
  376. <artifactId>jakarta.annotation-api</artifactId>
  377. </dependency>
  378. <dependency>
  379. <groupId>org.springframework</groupId>
  380. <artifactId>spring-test</artifactId>
  381. <scope>test</scope>
  382. </dependency>
  383. <dependency>
  384. <groupId>jakarta.persistence</groupId>
  385. <artifactId>jakarta.persistence-api</artifactId>
  386. <scope>test</scope>
  387. </dependency>
  388. <dependency>
  389. <groupId>jakarta.transaction</groupId>
  390. <artifactId>jakarta.transaction-api</artifactId>
  391. <scope>test</scope>
  392. </dependency>
  393. <dependency>
  394. <groupId>org.apache.archiva.redback</groupId>
  395. <artifactId>redback-rbac-jpa</artifactId>
  396. <version>${redback.version}</version>
  397. <scope>test</scope>
  398. </dependency>
  399. <dependency>
  400. <groupId>org.apache.archiva</groupId>
  401. <artifactId>archiva-test-utils</artifactId>
  402. <version>${project.version}</version>
  403. <scope>test</scope>
  404. <exclusions>
  405. <exclusion>
  406. <groupId>org.slf4j</groupId>
  407. <artifactId>slf4j-simple</artifactId>
  408. </exclusion>
  409. </exclusions>
  410. </dependency>
  411. <dependency>
  412. <groupId>org.apache.maven.wagon</groupId>
  413. <artifactId>wagon-http</artifactId>
  414. <scope>test</scope>
  415. <exclusions>
  416. <exclusion>
  417. <groupId>commons-logging</groupId>
  418. <artifactId>commons-logging</artifactId>
  419. </exclusion>
  420. </exclusions>
  421. </dependency>
  422. <dependency>
  423. <groupId>org.apache.maven.wagon</groupId>
  424. <artifactId>wagon-http-lightweight</artifactId>
  425. <scope>test</scope>
  426. </dependency>
  427. <dependency>
  428. <groupId>org.apache.cxf</groupId>
  429. <artifactId>cxf-rt-rs-client</artifactId>
  430. <scope>test</scope>
  431. </dependency>
  432. <dependency>
  433. <groupId>org.eclipse.jetty</groupId>
  434. <artifactId>jetty-server</artifactId>
  435. <scope>test</scope>
  436. </dependency>
  437. <dependency>
  438. <groupId>org.eclipse.jetty</groupId>
  439. <artifactId>jetty-servlet</artifactId>
  440. <scope>test</scope>
  441. </dependency>
  442. <!-- override transitive from cxf -->
  443. <dependency>
  444. <groupId>org.eclipse.jetty</groupId>
  445. <artifactId>jetty-util</artifactId>
  446. <version>${jetty.version}</version>
  447. <scope>test</scope>
  448. </dependency>
  449. <dependency>
  450. <groupId>org.eclipse.jetty</groupId>
  451. <artifactId>jetty-security</artifactId>
  452. <version>${jetty.version}</version>
  453. <scope>test</scope>
  454. </dependency>
  455. <dependency>
  456. <groupId>org.apache.archiva.redback</groupId>
  457. <artifactId>redback-rest-services</artifactId>
  458. <classifier>tests</classifier>
  459. <scope>test</scope>
  460. </dependency>
  461. <dependency>
  462. <groupId>org.apache.archiva</groupId>
  463. <artifactId>archiva-webdav</artifactId>
  464. <scope>test</scope>
  465. </dependency>
  466. <dependency>
  467. <groupId>org.apache.archiva</groupId>
  468. <artifactId>archiva-repository-admin-default</artifactId>
  469. <scope>test</scope>
  470. </dependency>
  471. <dependency>
  472. <groupId>org.apache.archiva</groupId>
  473. <artifactId>metadata-store-jcr</artifactId>
  474. <scope>test</scope>
  475. </dependency>
  476. <dependency>
  477. <groupId>org.assertj</groupId>
  478. <artifactId>assertj-core</artifactId>
  479. <scope>test</scope>
  480. </dependency>
  481. <dependency>
  482. <groupId>org.hsqldb</groupId>
  483. <artifactId>hsqldb</artifactId>
  484. <scope>test</scope>
  485. </dependency>
  486. <!-- Needed for JDK >= 9 -->
  487. <dependency>
  488. <groupId>jakarta.xml.bind</groupId>
  489. <artifactId>jakarta.xml.bind-api</artifactId>
  490. <scope>test</scope>
  491. </dependency>
  492. <dependency>
  493. <groupId>org.glassfish.jaxb</groupId>
  494. <artifactId>jaxb-runtime</artifactId>
  495. <scope>test</scope>
  496. </dependency>
  497. </dependencies>
  498. <build>
  499. <resources>
  500. <resource>
  501. <directory>src/main/resources</directory>
  502. </resource>
  503. <resource>
  504. <directory>src/main/filtered-resources</directory>
  505. <filtering>true</filtering>
  506. </resource>
  507. </resources>
  508. <pluginManagement>
  509. <plugins>
  510. <plugin>
  511. <groupId>org.apache.rat</groupId>
  512. <artifactId>apache-rat-plugin</artifactId>
  513. <configuration>
  514. <excludes>
  515. <exclude>src/test/repositories/test-repo/**</exclude>
  516. <exclude>src/test/repositories/snapshot-repo/**</exclude>
  517. </excludes>
  518. </configuration>
  519. </plugin>
  520. </plugins>
  521. </pluginManagement>
  522. <plugins>
  523. <plugin>
  524. <groupId>org.apache.maven.plugins</groupId>
  525. <artifactId>maven-jar-plugin</artifactId>
  526. <executions>
  527. <execution>
  528. <goals>
  529. <goal>test-jar</goal>
  530. </goals>
  531. </execution>
  532. </executions>
  533. </plugin>
  534. <plugin>
  535. <groupId>org.apache.maven.plugins</groupId>
  536. <artifactId>maven-surefire-plugin</artifactId>
  537. <configuration>
  538. <reuseForks>false</reuseForks>
  539. <argLine>-Xms1024m -Xmx2048m -server</argLine>
  540. <systemPropertyVariables>
  541. <appserver.base>${project.build.directory}/appserver-base</appserver.base>
  542. <plexus.home>${project.build.directory}/appserver-base</plexus.home>
  543. <derby.system.home>${project.build.directory}/appserver-base</derby.system.home>
  544. <archiva.user.configFileName>${basedir}/target/archiva.xml</archiva.user.configFileName>
  545. <test.resources.path>${project.build.testOutputDirectory}</test.resources.path>
  546. <redback.jdbc.url>${redbackTestJdbcUrl}</redback.jdbc.url>
  547. <redback.jdbc.driver.name>${redbackTestJdbcDriver}</redback.jdbc.driver.name>
  548. <basedir>${basedir}</basedir>
  549. <expectedVersion>${project.version}</expectedVersion>
  550. <archiva.logMissingI18n>true</archiva.logMissingI18n>
  551. <java.awt.headless>true</java.awt.headless>
  552. <archiva.repositorySessionFactory.id>test</archiva.repositorySessionFactory.id>
  553. <openjpa.Log>${openjpa.Log}</openjpa.Log>
  554. </systemPropertyVariables>
  555. </configuration>
  556. </plugin>
  557. <!-- Conflicts with the client libraries. Found no other exclude entry that worked -->
  558. <plugin>
  559. <groupId>org.jacoco</groupId>
  560. <artifactId>jacoco-maven-plugin</artifactId>
  561. <version>${jacoco.plugin.version}</version>
  562. <configuration>
  563. <excludes>
  564. <exclude>**/*org/apache/archiva/web/model/*</exclude>
  565. <exclude>**/archiva-web-common-json-client.jar*</exclude>
  566. </excludes>
  567. </configuration>
  568. </plugin>
  569. </plugins>
  570. </build>
  571. <!--
  572. The jaxb dependency is needed by the enunciate plugin starting with JDK9.
  573. Adding to the plugin dependency is not sufficient, so I have to add it as project dependency.
  574. Using provided scope to avoid adding it to packaging.
  575. -->
  576. <profiles>
  577. <profile>
  578. <id>jdk9+</id>
  579. <activation>
  580. <jdk>[1.9,)</jdk>
  581. </activation>
  582. <dependencies>
  583. <dependency>
  584. <groupId>jakarta.xml.bind</groupId>
  585. <artifactId>jakarta.xml.bind-api</artifactId>
  586. </dependency>
  587. </dependencies>
  588. </profile>
  589. </profiles>
  590. </project>