pom.xml 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xml:space="preserve">
  3. <!-- Copyright 2018 Steinar Bang -->
  4. <!-- -->
  5. <!-- Licensed under the Apache License, Version 2.0 (the "License"); -->
  6. <!-- you may not use this file except in compliance with the License. -->
  7. <!-- You may obtain a copy of the License at -->
  8. <!-- http://www.apache.org/licenses/LICENSE-2.0 -->
  9. <!-- Unless required by applicable law or agreed to in writing, -->
  10. <!-- software distributed under the License is distributed on an "AS IS" BASIS, -->
  11. <!-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -->
  12. <!-- See the License for the specific language governing permissions and limitations -->
  13. <!-- under the License. -->
  14. <modelVersion>4.0.0</modelVersion>
  15. <groupId>no.priv.bang.handlereg</groupId>
  16. <artifactId>handlereg</artifactId>
  17. <version>1.0.0-SNAPSHOT</version>
  18. <packaging>pom</packaging>
  19. <name>Handleregistrering</name>
  20. <modules>
  21. <module>handlereg.db.liquibase</module>
  22. <module>handlereg.services</module>
  23. <module>handlereg.db.derby.test</module>
  24. <module>handlereg.db.postgresql</module>
  25. <module>handlereg.backend</module>
  26. <module>handlereg.backend.testdata</module>
  27. <module>handlereg.web.security</module>
  28. <module>handlereg.web.api</module>
  29. <module>handlereg.web.frontend</module>
  30. </modules>
  31. <properties>
  32. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  33. <maven.bundle.plugin.version>3.5.1</maven.bundle.plugin.version>
  34. <karaf.version>4.2.5</karaf.version>
  35. <junit.jupiter.version>5.4.2</junit.jupiter.version>
  36. <mockrunner.version>2.0.1</mockrunner.version>
  37. <liquibase.version>3.5.3</liquibase.version>
  38. <liquibase-slf4j.version>2.0.0</liquibase-slf4j.version>
  39. <snakeyaml.version>1.17</snakeyaml.version>
  40. <derby.version>10.11.1.1</derby.version>
  41. <postgresql.version>42.2.8</postgresql.version>
  42. <dependency.osgi.version>6.0.0</dependency.osgi.version>
  43. <osgi.service.version>1.3.0</osgi.service.version>
  44. <osgi.log.version>1.3.0</osgi.log.version>
  45. <osgi.jdbc.version>1.0.0</osgi.jdbc.version>
  46. <osgi-service.version>1.3.0</osgi-service.version>
  47. <pax.web.version>7.3.3</pax.web.version>
  48. <pax.exam.version>4.10.0</pax.exam.version>
  49. <pax.jdbc.version>1.0.1</pax.jdbc.version>
  50. <shiro.version>1.4.1</shiro.version>
  51. <jackson.version>2.9.10</jackson.version>
  52. <jackson.databind.version>2.9.10</jackson.databind.version>
  53. <jersey-feature.version>1.3.0</jersey-feature.version>
  54. <jersey.version>2.28</jersey.version>
  55. <open-iconic.version>1.1.1</open-iconic.version>
  56. <authservice.version>1.5.4</authservice.version>
  57. <sonar.cpd.exclusions>
  58. **/HandleregDerbyTestDatabase.java,
  59. **/HandleregPostgresqlDatabase.java,
  60. </sonar.cpd.exclusions>
  61. </properties>
  62. <dependencyManagement>
  63. <dependencies>
  64. <dependency>
  65. <groupId>org.junit.jupiter</groupId>
  66. <artifactId>junit-jupiter-api</artifactId>
  67. <version>${junit.jupiter.version}</version>
  68. <scope>test</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.junit.jupiter</groupId>
  72. <artifactId>junit-jupiter-engine</artifactId>
  73. <version>${junit.jupiter.version}</version>
  74. <scope>test</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.junit.vintage</groupId>
  78. <artifactId>junit-vintage-engine</artifactId>
  79. <version>${junit.jupiter.version}</version>
  80. <scope>test</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.assertj</groupId>
  84. <artifactId>assertj-core</artifactId>
  85. <version>3.9.0</version>
  86. <scope>test</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.mockito</groupId>
  90. <artifactId>mockito-core</artifactId>
  91. <version>1.10.19</version>
  92. <scope>test</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.mockrunner</groupId>
  96. <artifactId>mockrunner-servlet</artifactId>
  97. <version>${mockrunner.version}</version>
  98. <scope>test</scope>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.osgi</groupId>
  102. <artifactId>org.osgi.core</artifactId>
  103. <version>${dependency.osgi.version}</version>
  104. <scope>provided</scope>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.osgi</groupId>
  108. <artifactId>org.osgi.service.component.annotations</artifactId>
  109. <version>${osgi.service.version}</version>
  110. <scope>provided</scope>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.osgi</groupId>
  114. <artifactId>org.osgi.service.log</artifactId>
  115. <version>${osgi.log.version}</version>
  116. <scope>provided</scope>
  117. </dependency>
  118. <dependency>
  119. <groupId>no.priv.bang.osgi.service.adapters</groupId>
  120. <artifactId>service-mocks</artifactId>
  121. <version>1.0.1</version>
  122. <scope>test</scope>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.osgi</groupId>
  126. <artifactId>org.osgi.service.jdbc</artifactId>
  127. <version>${osgi.jdbc.version}</version>
  128. <scope>provided</scope>
  129. </dependency>
  130. <dependency>
  131. <groupId>no.priv.bang.osgiservice</groupId>
  132. <artifactId>osgiservice.database</artifactId>
  133. <version>${osgi-service.version}</version>
  134. <scope>provided</scope>
  135. </dependency>
  136. <dependency>
  137. <groupId>no.priv.bang.osgiservice</groupId>
  138. <artifactId>osgiservice.users</artifactId>
  139. <version>${osgi-service.version}</version>
  140. <scope>provided</scope>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.ops4j.pax.web</groupId>
  144. <artifactId>pax-web-api</artifactId>
  145. <version>${pax.web.version}</version>
  146. <scope>provided</scope>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.ops4j.pax.web</groupId>
  150. <artifactId>pax-web-runtime</artifactId>
  151. <version>${pax.web.version}</version>
  152. <scope>provided</scope>
  153. </dependency>
  154. <dependency>
  155. <groupId>org.ops4j.pax.web</groupId>
  156. <artifactId>pax-web-extender-whiteboard</artifactId>
  157. <version>${pax.web.version}</version>
  158. <scope>provided</scope>
  159. </dependency>
  160. <dependency>
  161. <groupId>javax.servlet</groupId>
  162. <artifactId>javax.servlet-api</artifactId>
  163. <version>3.1.0</version>
  164. <scope>provided</scope>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.apache.karaf.shell</groupId>
  168. <artifactId>org.apache.karaf.shell.console</artifactId>
  169. <version>${karaf.version}</version>
  170. <scope>provided</scope>
  171. </dependency>
  172. <dependency>
  173. <groupId>org.ops4j.pax.exam</groupId>
  174. <artifactId>pax-exam-container-karaf</artifactId>
  175. <version>${pax.exam.version}</version>
  176. <scope>test</scope>
  177. </dependency>
  178. <dependency>
  179. <groupId>org.apache.karaf</groupId>
  180. <artifactId>apache-karaf-minimal</artifactId>
  181. <version>${karaf.version}</version>
  182. <type>zip</type>
  183. <scope>test</scope>
  184. <exclusions>
  185. <exclusion>
  186. <groupId>*</groupId>
  187. <artifactId>*</artifactId>
  188. </exclusion>
  189. </exclusions>
  190. </dependency>
  191. <dependency>
  192. <groupId>org.apache.karaf.features</groupId>
  193. <artifactId>standard</artifactId>
  194. <version>${karaf.version}</version>
  195. <type>xml</type>
  196. <classifier>features</classifier>
  197. <scope>test</scope>
  198. </dependency>
  199. <dependency>
  200. <groupId>org.ops4j.pax.exam</groupId>
  201. <artifactId>pax-exam-junit4</artifactId>
  202. <version>${pax.exam.version}</version>
  203. <scope>test</scope>
  204. </dependency>
  205. <dependency>
  206. <groupId>org.ops4j.pax.exam</groupId>
  207. <artifactId>pax-exam-link-mvn</artifactId>
  208. <version>${pax.exam.version}</version>
  209. <scope>test</scope>
  210. </dependency>
  211. <dependency>
  212. <groupId>org.ops4j.pax.url</groupId>
  213. <artifactId>pax-url-reference</artifactId>
  214. <version>${dependency.pax.url.version}</version>
  215. </dependency>
  216. <dependency>
  217. <groupId>org.ops4j.pax.jdbc</groupId>
  218. <artifactId>pax-jdbc</artifactId>
  219. <version>${pax.jdbc.version}</version>
  220. <scope>provided</scope>
  221. </dependency>
  222. <dependency>
  223. <groupId>org.ops4j.pax.jdbc</groupId>
  224. <artifactId>pax-jdbc-derby</artifactId>
  225. <version>${pax.jdbc.version}</version>
  226. <scope>provided</scope>
  227. </dependency>
  228. <dependency>
  229. <groupId>org.apache.derby</groupId>
  230. <artifactId>derby</artifactId>
  231. <version>${derby.version}</version>
  232. <scope>provided</scope>
  233. </dependency>
  234. <dependency>
  235. <groupId>org.apache.shiro</groupId>
  236. <artifactId>shiro-core</artifactId>
  237. <version>${shiro.version}</version>
  238. <scope>provided</scope>
  239. </dependency>
  240. <dependency>
  241. <groupId>org.apache.shiro</groupId>
  242. <artifactId>shiro-web</artifactId>
  243. <version>${shiro.version}</version>
  244. <scope>provided</scope>
  245. </dependency>
  246. <dependency>
  247. <groupId>com.fasterxml.jackson.core</groupId>
  248. <artifactId>jackson-annotations</artifactId>
  249. <version>${jackson.version}</version>
  250. <scope>provided</scope>
  251. </dependency>
  252. <dependency>
  253. <groupId>com.fasterxml.jackson.core</groupId>
  254. <artifactId>jackson-core</artifactId>
  255. <version>${jackson.version}</version>
  256. <scope>provided</scope>
  257. </dependency>
  258. <dependency>
  259. <groupId>com.fasterxml.jackson.core</groupId>
  260. <artifactId>jackson-databind</artifactId>
  261. <version>${jackson.version}</version>
  262. <scope>provided</scope>
  263. </dependency>
  264. <dependency>
  265. <groupId>com.fasterxml.jackson.datatype</groupId>
  266. <artifactId>jackson-datatype-jsr310</artifactId>
  267. <version>${jackson.version}</version>
  268. <scope>provided</scope>
  269. </dependency>
  270. <dependency>
  271. <groupId>org.glassfish.jersey.containers</groupId>
  272. <artifactId>jersey-container-servlet</artifactId>
  273. <version>${jersey.version}</version>
  274. <scope>provided</scope>
  275. </dependency>
  276. <dependency>
  277. <groupId>org.apache.servicemix.bundles</groupId>
  278. <artifactId>org.apache.servicemix.bundles.javax-inject</artifactId>
  279. <version>1_3</version>
  280. <scope>provided</scope>
  281. </dependency>
  282. <dependency>
  283. <groupId>org.glassfish.jersey.inject</groupId>
  284. <artifactId>jersey-hk2</artifactId>
  285. <version>${jersey.version}</version>
  286. <scope>provided</scope>
  287. </dependency>
  288. <dependency>
  289. <groupId>org.glassfish.jersey.media</groupId>
  290. <artifactId>jersey-media-moxy</artifactId>
  291. <version>${jersey.version}</version>
  292. <scope>provided</scope>
  293. </dependency>
  294. <dependency>
  295. <groupId>org.glassfish.jersey.media</groupId>
  296. <artifactId>jersey-media-json-jackson</artifactId>
  297. <version>${jersey.version}</version>
  298. <scope>provided</scope>
  299. </dependency>
  300. <dependency>
  301. <groupId>javax.xml.bind</groupId>
  302. <artifactId>jaxb-api</artifactId>
  303. <version>2.3.1</version>
  304. </dependency>
  305. <dependency>
  306. <groupId>org.slf4j</groupId>
  307. <artifactId>slf4j-simple</artifactId>
  308. <version>1.7.25</version>
  309. <scope>test</scope>
  310. </dependency>
  311. <dependency>
  312. <groupId>com.mattbertolini</groupId>
  313. <artifactId>liquibase-slf4j</artifactId>
  314. <version>${liquibase-slf4j.version}</version>
  315. <scope>provided</scope>
  316. </dependency>
  317. <dependency>
  318. <groupId>org.liquibase</groupId>
  319. <artifactId>liquibase-core</artifactId>
  320. <version>${liquibase.version}</version>
  321. <scope>provided</scope>
  322. </dependency>
  323. <dependency>
  324. <groupId>org.postgresql</groupId>
  325. <artifactId>postgresql</artifactId>
  326. <version>${postgresql.version}</version>
  327. <scope>provided</scope>
  328. </dependency>
  329. <dependency>
  330. <groupId>org.webjars.bower</groupId>
  331. <artifactId>open-iconic</artifactId>
  332. <version>${open-iconic.version}</version>
  333. </dependency>
  334. </dependencies>
  335. </dependencyManagement>
  336. <build>
  337. <pluginManagement>
  338. <plugins>
  339. <plugin>
  340. <groupId>org.apache.maven.plugins</groupId>
  341. <artifactId>maven-compiler-plugin</artifactId>
  342. <version>3.8.1</version>
  343. <configuration>
  344. <source>1.8</source>
  345. <target>1.8</target>
  346. </configuration>
  347. </plugin>
  348. <plugin>
  349. <groupId>org.apache.maven.plugins</groupId>
  350. <artifactId>maven-source-plugin</artifactId>
  351. <version>2.4</version>
  352. </plugin>
  353. <plugin>
  354. <groupId>org.apache.maven.plugins</groupId>
  355. <artifactId>maven-javadoc-plugin</artifactId>
  356. <version>2.10.2</version>
  357. </plugin>
  358. <plugin>
  359. <groupId>org.codehaus.mojo</groupId>
  360. <artifactId>cobertura-maven-plugin</artifactId>
  361. <version>2.7</version>
  362. </plugin>
  363. <plugin>
  364. <groupId>org.apache.felix</groupId>
  365. <artifactId>maven-bundle-plugin</artifactId>
  366. <version>${maven.bundle.plugin.version}</version>
  367. <configuration>
  368. <supportedProjectTypes>
  369. <supportedProjectType>jar</supportedProjectType>
  370. <supportedProjectType>bundle</supportedProjectType>
  371. <supportedProjectType>war</supportedProjectType>
  372. </supportedProjectTypes>
  373. <instructions>
  374. <!-- Enable processing of OSGI DS component annotations -->
  375. <_dsannotations>*</_dsannotations>
  376. <!-- Inherit service injections from base class -->
  377. <_dsannotations-options>inherit</_dsannotations-options>
  378. <!-- Enable processing of OSGI metatype annotations -->
  379. <_metatypeannotations>*</_metatypeannotations>
  380. </instructions>
  381. </configuration>
  382. <executions>
  383. <execution>
  384. <id>bundle</id>
  385. <goals>
  386. <goal>bundle</goal>
  387. </goals>
  388. </execution>
  389. </executions>
  390. </plugin>
  391. <plugin>
  392. <groupId>org.apache.maven.plugins</groupId>
  393. <artifactId>maven-clean-plugin</artifactId>
  394. <version>3.1.0</version>
  395. <configuration>
  396. <filesets>
  397. <fileset>
  398. <directory>.</directory>
  399. <includes>
  400. <include>**/*.log</include>
  401. </includes>
  402. <followSymlinks>false</followSymlinks>
  403. </fileset>
  404. </filesets>
  405. </configuration>
  406. </plugin>
  407. <plugin>
  408. <groupId>org.apache.maven.plugins</groupId>
  409. <artifactId>maven-surefire-plugin</artifactId>
  410. <version>2.22.2</version>
  411. <configuration>
  412. <useSystemClassLoader>false</useSystemClassLoader>
  413. </configuration>
  414. </plugin>
  415. <plugin>
  416. <groupId>org.eluder.coveralls</groupId>
  417. <artifactId>coveralls-maven-plugin</artifactId>
  418. <version>4.3.0</version>
  419. </plugin>
  420. <plugin>
  421. <groupId>org.apache.karaf.tooling</groupId>
  422. <artifactId>karaf-maven-plugin</artifactId>
  423. <version>${karaf.version}</version>
  424. <extensions>true</extensions>
  425. <configuration>
  426. <startLevel>80</startLevel>
  427. <includeTransitiveDependency>false</includeTransitiveDependency>
  428. <aggregateFeatures>false</aggregateFeatures>
  429. <includeProjectArtifact>true</includeProjectArtifact>
  430. <primaryFeatureName>${karaf-feature-name}</primaryFeatureName>
  431. </configuration>
  432. <executions>
  433. <execution>
  434. <id>generate-features-file</id>
  435. <phase>package</phase>
  436. <goals>
  437. <goal>features-generate-descriptor</goal>
  438. </goals>
  439. </execution>
  440. </executions>
  441. </plugin>
  442. <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
  443. <plugin>
  444. <groupId>org.eclipse.m2e</groupId>
  445. <artifactId>lifecycle-mapping</artifactId>
  446. <version>1.0.0</version>
  447. <configuration>
  448. <lifecycleMappingMetadata>
  449. <pluginExecutions>
  450. <pluginExecution>
  451. <pluginExecutionFilter>
  452. <groupId>ru.yaal.maven</groupId>
  453. <artifactId>write-text-files-maven-plugin</artifactId>
  454. <versionRange>[1.1,)</versionRange>
  455. <goals>
  456. <goal>
  457. write-text-files
  458. </goal>
  459. </goals>
  460. </pluginExecutionFilter>
  461. <action>
  462. <ignore></ignore>
  463. </action>
  464. </pluginExecution>
  465. </pluginExecutions>
  466. </lifecycleMappingMetadata>
  467. </configuration>
  468. </plugin>
  469. </plugins>
  470. </pluginManagement>
  471. <plugins>
  472. <plugin>
  473. <artifactId>maven-resources-plugin</artifactId>
  474. <version>3.1.0</version>
  475. <executions>
  476. <execution>
  477. <id>filter-resources</id>
  478. <phase>validate</phase>
  479. <goals>
  480. <goal>resources</goal>
  481. </goals>
  482. <configuration>
  483. <resources>
  484. <resource>
  485. <directory>src/main/filtered-resources</directory>
  486. <filtering>true</filtering>
  487. </resource>
  488. </resources>
  489. </configuration>
  490. </execution>
  491. </executions>
  492. </plugin>
  493. <plugin>
  494. <groupId>org.codehaus.mojo</groupId>
  495. <artifactId>build-helper-maven-plugin</artifactId>
  496. <version>3.0.0</version>
  497. <inherited>false</inherited>
  498. <executions>
  499. <execution>
  500. <id>attach-karaf-feature</id>
  501. <phase>package</phase>
  502. <goals>
  503. <goal>attach-artifact</goal>
  504. </goals>
  505. <configuration>
  506. <artifacts>
  507. <artifact>
  508. <file>target/classes/feature.xml</file>
  509. <type>xml</type>
  510. <classifier>features</classifier>
  511. </artifact>
  512. </artifacts>
  513. </configuration>
  514. </execution>
  515. </executions>
  516. </plugin>
  517. <plugin>
  518. <groupId>org.apache.maven.plugins</groupId>
  519. <artifactId>maven-source-plugin</artifactId>
  520. <executions>
  521. <execution>
  522. <id>attach-sources</id>
  523. <goals>
  524. <goal>jar</goal>
  525. </goals>
  526. </execution>
  527. </executions>
  528. </plugin>
  529. <plugin>
  530. <groupId>org.apache.maven.plugins</groupId>
  531. <artifactId>maven-javadoc-plugin</artifactId>
  532. <configuration>
  533. <source>8</source>
  534. <show>private</show>
  535. </configuration>
  536. <executions>
  537. <execution>
  538. <id>attach-javadocs</id>
  539. <goals>
  540. <goal>jar</goal>
  541. </goals>
  542. </execution>
  543. </executions>
  544. </plugin>
  545. <plugin>
  546. <groupId>org.codehaus.mojo</groupId>
  547. <artifactId>cobertura-maven-plugin</artifactId>
  548. <configuration>
  549. <outputDirectory>${basedir}/target</outputDirectory>
  550. <formats>
  551. <format>html</format>
  552. <format>xml</format>
  553. </formats>
  554. <aggregate>true</aggregate>
  555. </configuration>
  556. </plugin>
  557. <plugin>
  558. <groupId>org.eluder.coveralls</groupId>
  559. <artifactId>coveralls-maven-plugin</artifactId>
  560. <configuration>
  561. <coberturaReports>
  562. <coberturaReport>${basedir}/target/coverage.xml</coberturaReport>
  563. </coberturaReports>
  564. </configuration>
  565. </plugin>
  566. </plugins>
  567. <extensions>
  568. <extension>
  569. <groupId>org.apache.maven.wagon</groupId>
  570. <artifactId>wagon-ssh</artifactId>
  571. <version>3.2.0</version>
  572. </extension>
  573. </extensions>
  574. </build>
  575. <distributionManagement>
  576. <repository>
  577. <id>ssh-maven-travis</id>
  578. <url>sftp://maven.bang.priv.no/repository</url>
  579. </repository>
  580. <snapshotRepository>
  581. <id>ssh-maven-travis</id>
  582. <url>sftp://maven.bang.priv.no/repository</url>
  583. </snapshotRepository>
  584. </distributionManagement>
  585. <profiles>
  586. <profile>
  587. <id>release-sign-artifact</id>
  588. <build>
  589. <plugins>
  590. <plugin>
  591. <groupId>org.apache.maven.plugins</groupId>
  592. <artifactId>maven-gpg-plugin</artifactId>
  593. <version>1.6</version>
  594. <executions>
  595. <execution>
  596. <id>sign-artifacts</id>
  597. <phase>verify</phase>
  598. <goals>
  599. <goal>sign</goal>
  600. </goals>
  601. <configuration>
  602. <gpgArguments>
  603. <arg>--pinentry-mode</arg>
  604. <arg>loopback</arg>
  605. </gpgArguments>
  606. </configuration>
  607. </execution>
  608. </executions>
  609. </plugin>
  610. </plugins>
  611. </build>
  612. </profile>
  613. </profiles>
  614. </project>