pom.xml 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673
  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/xsd/maven-4.0.0.xsd" xml:space="preserve">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>no.priv.bang.authservice</groupId>
  5. <artifactId>authservice</artifactId>
  6. <version>1.6.0-SNAPSHOT</version>
  7. <packaging>pom</packaging>
  8. <name>Authentication webapp</name>
  9. <description>A drop-in shiro user database for apache karaf web whiteboard, with user administration UI and user self-service password and user info change. In addition can serve as forms based authentication for nginx</description>
  10. <modules>
  11. <module>authservice.definitions</module>
  12. <module>authservice.db.liquibase</module>
  13. <module>authservice.db.derby.test</module>
  14. <module>authservice.db.postgresql</module>
  15. <module>authservice.web.security.dbrealm</module>
  16. <module>authservice.web.security.memorysession</module>
  17. <module>authservice.web.security</module>
  18. <module>authservice.users</module>
  19. <module>authservice.web.users.api</module>
  20. <module>authservice.web.users.frontend</module>
  21. </modules>
  22. <properties>
  23. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  24. <maven.bundle.plugin.version>3.5.1</maven.bundle.plugin.version>
  25. <karaf.version>4.2.5</karaf.version>
  26. <junit.jupiter.version>5.4.2</junit.jupiter.version>
  27. <junit.platform.version>1.4.2</junit.platform.version>
  28. <mockrunner.version>2.0.1</mockrunner.version>
  29. <osgi-service.version>1.4.0</osgi-service.version>
  30. <osgi.version>6.0.0</osgi.version>
  31. <osgi.service.version>1.3.0</osgi.service.version>
  32. <osgi.log.version>1.3.0</osgi.log.version>
  33. <osgi.jdbc.version>1.0.0</osgi.jdbc.version>
  34. <pax.web.version>6.0.3</pax.web.version>
  35. <junit.version>4.12</junit.version> <!-- pax exam can't use junit 5 yet -->
  36. <pax.exam.version>4.13.1</pax.exam.version>
  37. <pax.url.version>2.5.4</pax.url.version>
  38. <pax.jdbc.version>1.3.1</pax.jdbc.version>
  39. <shiro.version>1.4.1</shiro.version>
  40. <liquibase.version>3.5.3</liquibase.version>
  41. <liquibase-slf4j.version>2.0.0</liquibase-slf4j.version>
  42. <snakeyaml.version>1.17</snakeyaml.version>
  43. <derby.version>10.11.1.1</derby.version>
  44. <postgresql.version>42.2.8</postgresql.version>
  45. <jackson.version>2.9.10</jackson.version>
  46. <jackson.databind.version>2.9.10</jackson.databind.version>
  47. <jersey-feature.version>1.3.0</jersey-feature.version>
  48. <jersey.version>2.28</jersey.version>
  49. <open-iconic.version>1.1.1</open-iconic.version>
  50. <sonar.cpd.exclusions>
  51. **/DerbyTestDatabase.java,
  52. **/PostgresqlDatabase.java,
  53. **/AuthserviceServlet.java,
  54. **/UserAdminWebApiServlet.java,
  55. **/UsersResource.java
  56. </sonar.cpd.exclusions>
  57. </properties>
  58. <dependencyManagement>
  59. <dependencies>
  60. <dependency>
  61. <groupId>org.junit.jupiter</groupId>
  62. <artifactId>junit-jupiter-api</artifactId>
  63. <version>${junit.jupiter.version}</version>
  64. <scope>test</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.junit.jupiter</groupId>
  68. <artifactId>junit-jupiter-engine</artifactId>
  69. <version>${junit.jupiter.version}</version>
  70. <scope>test</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.junit.vintage</groupId>
  74. <artifactId>junit-vintage-engine</artifactId>
  75. <version>${junit.jupiter.version}</version>
  76. <scope>test</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.junit.platform</groupId>
  80. <artifactId>junit-platform-launcher</artifactId>
  81. <version>${junit.platform.version}</version>
  82. <scope>test</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.assertj</groupId>
  86. <artifactId>assertj-core</artifactId>
  87. <version>3.9.0</version>
  88. <scope>test</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.mockito</groupId>
  92. <artifactId>mockito-core</artifactId>
  93. <version>1.10.19</version>
  94. <scope>test</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.osgi</groupId>
  98. <artifactId>org.osgi.core</artifactId>
  99. <version>${osgi.version}</version>
  100. <scope>provided</scope>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.osgi</groupId>
  104. <artifactId>org.osgi.service.component.annotations</artifactId>
  105. <version>${osgi.service.version}</version>
  106. <scope>provided</scope>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.osgi</groupId>
  110. <artifactId>org.osgi.service.log</artifactId>
  111. <version>${osgi.log.version}</version>
  112. <scope>provided</scope>
  113. </dependency>
  114. <dependency>
  115. <groupId>no.priv.bang.osgiservice</groupId>
  116. <artifactId>osgiservice.database</artifactId>
  117. <version>${osgi-service.version}</version>
  118. <scope>provided</scope>
  119. </dependency>
  120. <dependency>
  121. <groupId>no.priv.bang.osgiservice</groupId>
  122. <artifactId>osgiservice.users</artifactId>
  123. <version>${osgi-service.version}</version>
  124. <scope>provided</scope>
  125. </dependency>
  126. <dependency>
  127. <groupId>no.priv.bang.osgi.service.adapters</groupId>
  128. <artifactId>service-mocks</artifactId>
  129. <version>1.0.1</version>
  130. <scope>test</scope>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.osgi</groupId>
  134. <artifactId>org.osgi.service.jdbc</artifactId>
  135. <version>${osgi.jdbc.version}</version>
  136. <scope>provided</scope>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.ops4j.pax.web</groupId>
  140. <artifactId>pax-web-api</artifactId>
  141. <version>${pax.web.version}</version>
  142. <scope>provided</scope>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.ops4j.pax.web</groupId>
  146. <artifactId>pax-web-runtime</artifactId>
  147. <version>${pax.web.version}</version>
  148. <scope>provided</scope>
  149. </dependency>
  150. <dependency>
  151. <groupId>org.ops4j.pax.web</groupId>
  152. <artifactId>pax-web-extender-whiteboard</artifactId>
  153. <version>${pax.web.version}</version>
  154. <scope>provided</scope>
  155. </dependency>
  156. <dependency>
  157. <groupId>javax.servlet</groupId>
  158. <artifactId>javax.servlet-api</artifactId>
  159. <version>3.1.0</version>
  160. <scope>provided</scope>
  161. </dependency>
  162. <dependency>
  163. <groupId>com.mockrunner</groupId>
  164. <artifactId>mockrunner-servlet</artifactId>
  165. <version>${mockrunner.version}</version>
  166. <scope>test</scope>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.apache.karaf.shell</groupId>
  170. <artifactId>org.apache.karaf.shell.console</artifactId>
  171. <version>${karaf.version}</version>
  172. <scope>provided</scope>
  173. </dependency>
  174. <dependency>
  175. <groupId>junit</groupId>
  176. <artifactId>junit</artifactId>
  177. <version>${junit.version}</version>
  178. <scope>test</scope>
  179. </dependency>
  180. <dependency>
  181. <groupId>org.ops4j.pax.exam</groupId>
  182. <artifactId>pax-exam-container-karaf</artifactId>
  183. <version>${pax.exam.version}</version>
  184. <scope>test</scope>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.apache.karaf</groupId>
  188. <artifactId>apache-karaf-minimal</artifactId>
  189. <version>${karaf.version}</version>
  190. <type>zip</type>
  191. <scope>test</scope>
  192. <exclusions>
  193. <exclusion>
  194. <groupId>*</groupId>
  195. <artifactId>*</artifactId>
  196. </exclusion>
  197. </exclusions>
  198. </dependency>
  199. <dependency>
  200. <groupId>org.apache.karaf.features</groupId>
  201. <artifactId>standard</artifactId>
  202. <version>${karaf.version}</version>
  203. <type>xml</type>
  204. <classifier>features</classifier>
  205. <scope>test</scope>
  206. </dependency>
  207. <dependency>
  208. <groupId>org.ops4j.pax.exam</groupId>
  209. <artifactId>pax-exam-junit4</artifactId>
  210. <version>${pax.exam.version}</version>
  211. <scope>test</scope>
  212. </dependency>
  213. <dependency>
  214. <groupId>org.ops4j.pax.exam</groupId>
  215. <artifactId>pax-exam-link-mvn</artifactId>
  216. <version>${pax.exam.version}</version>
  217. <scope>test</scope>
  218. </dependency>
  219. <dependency>
  220. <groupId>org.ops4j.pax.url</groupId>
  221. <artifactId>pax-url-reference</artifactId>
  222. <version>${pax.url.version}</version>
  223. </dependency>
  224. <dependency>
  225. <groupId>org.ops4j.pax.jdbc</groupId>
  226. <artifactId>pax-jdbc-features</artifactId>
  227. <version>${pax.jdbc.version}</version>
  228. <type>pom</type>
  229. </dependency>
  230. <dependency>
  231. <groupId>org.ops4j.pax.jdbc</groupId>
  232. <artifactId>pax-jdbc</artifactId>
  233. <version>${pax.jdbc.version}</version>
  234. <scope>provided</scope>
  235. </dependency>
  236. <dependency>
  237. <groupId>org.apache.servicemix.bundles</groupId>
  238. <artifactId>org.apache.servicemix.bundles.javax-inject</artifactId>
  239. <version>1_3</version>
  240. <scope>provided</scope>
  241. </dependency>
  242. <dependency>
  243. <groupId>org.ops4j.pax.jdbc</groupId>
  244. <artifactId>pax-jdbc-derby</artifactId>
  245. <version>${pax.jdbc.version}</version>
  246. <scope>provided</scope>
  247. </dependency>
  248. <dependency>
  249. <groupId>org.apache.derby</groupId>
  250. <artifactId>derby</artifactId>
  251. <version>${derby.version}</version>
  252. <scope>provided</scope>
  253. </dependency>
  254. <dependency>
  255. <groupId>org.postgresql</groupId>
  256. <artifactId>postgresql</artifactId>
  257. <version>${postgresql.version}</version>
  258. <scope>provided</scope>
  259. </dependency>
  260. <dependency>
  261. <groupId>org.apache.shiro</groupId>
  262. <artifactId>shiro-core</artifactId>
  263. <version>${shiro.version}</version>
  264. <scope>provided</scope>
  265. </dependency>
  266. <dependency>
  267. <groupId>org.apache.shiro</groupId>
  268. <artifactId>shiro-web</artifactId>
  269. <version>${shiro.version}</version>
  270. <scope>provided</scope>
  271. </dependency>
  272. <dependency>
  273. <groupId>com.fasterxml.jackson.core</groupId>
  274. <artifactId>jackson-annotations</artifactId>
  275. <version>${jackson.version}</version>
  276. <scope>provided</scope>
  277. </dependency>
  278. <dependency>
  279. <groupId>com.fasterxml.jackson.core</groupId>
  280. <artifactId>jackson-core</artifactId>
  281. <version>${jackson.version}</version>
  282. <scope>provided</scope>
  283. </dependency>
  284. <dependency>
  285. <groupId>com.fasterxml.jackson.core</groupId>
  286. <artifactId>jackson-databind</artifactId>
  287. <version>${jackson.databind.version}</version>
  288. <scope>provided</scope>
  289. </dependency>
  290. <dependency>
  291. <groupId>org.glassfish.jersey.containers</groupId>
  292. <artifactId>jersey-container-servlet</artifactId>
  293. <version>${jersey.version}</version>
  294. <scope>provided</scope>
  295. </dependency>
  296. <dependency>
  297. <groupId>org.glassfish.jersey.inject</groupId>
  298. <artifactId>jersey-hk2</artifactId>
  299. <version>${jersey.version}</version>
  300. <scope>provided</scope>
  301. </dependency>
  302. <dependency>
  303. <groupId>org.glassfish.jersey.media</groupId>
  304. <artifactId>jersey-media-json-jackson</artifactId>
  305. <version>${jersey.version}</version>
  306. <scope>provided</scope>
  307. </dependency>
  308. <dependency>
  309. <groupId>org.slf4j</groupId>
  310. <artifactId>slf4j-simple</artifactId>
  311. <version>1.7.25</version>
  312. <scope>test</scope>
  313. </dependency>
  314. <dependency>
  315. <groupId>com.mattbertolini</groupId>
  316. <artifactId>liquibase-slf4j</artifactId>
  317. <version>${liquibase-slf4j.version}</version>
  318. <scope>provided</scope>
  319. </dependency>
  320. <dependency>
  321. <groupId>org.liquibase</groupId>
  322. <artifactId>liquibase-core</artifactId>
  323. <version>${liquibase.version}</version>
  324. <scope>provided</scope>
  325. </dependency>
  326. <dependency>
  327. <groupId>org.webjars.bower</groupId>
  328. <artifactId>open-iconic</artifactId>
  329. <version>${open-iconic.version}</version>
  330. </dependency>
  331. <dependency>
  332. <groupId>org.jsoup</groupId>
  333. <artifactId>jsoup</artifactId>
  334. <version>1.11.3</version>
  335. </dependency>
  336. <dependency>
  337. <groupId>javax.xml.bind</groupId>
  338. <artifactId>jaxb-api</artifactId>
  339. <version>2.3.1</version>
  340. </dependency>
  341. </dependencies>
  342. </dependencyManagement>
  343. <build>
  344. <pluginManagement>
  345. <plugins>
  346. <plugin>
  347. <groupId>org.apache.maven.plugins</groupId>
  348. <artifactId>maven-compiler-plugin</artifactId>
  349. <version>3.8.1</version>
  350. <configuration>
  351. <source>1.8</source>
  352. <target>1.8</target>
  353. </configuration>
  354. </plugin>
  355. <plugin>
  356. <groupId>org.apache.maven.plugins</groupId>
  357. <artifactId>maven-source-plugin</artifactId>
  358. <version>2.4</version>
  359. </plugin>
  360. <plugin>
  361. <groupId>org.apache.maven.plugins</groupId>
  362. <artifactId>maven-javadoc-plugin</artifactId>
  363. <version>3.0.1</version>
  364. </plugin>
  365. <plugin>
  366. <groupId>org.apache.maven.plugins</groupId>
  367. <artifactId>maven-dependency-plugin</artifactId>
  368. <version>3.1.1</version>
  369. </plugin>
  370. <plugin>
  371. <groupId>org.codehaus.mojo</groupId>
  372. <artifactId>cobertura-maven-plugin</artifactId>
  373. <version>2.7</version>
  374. </plugin>
  375. <plugin>
  376. <groupId>org.apache.felix</groupId>
  377. <artifactId>maven-bundle-plugin</artifactId>
  378. <version>${maven.bundle.plugin.version}</version>
  379. <configuration>
  380. <supportedProjectTypes>
  381. <supportedProjectType>jar</supportedProjectType>
  382. <supportedProjectType>bundle</supportedProjectType>
  383. <supportedProjectType>war</supportedProjectType>
  384. </supportedProjectTypes>
  385. <instructions>
  386. <!-- Enable processing of OSGI DS component annotations -->
  387. <_dsannotations>*</_dsannotations>
  388. <!-- Inherit service injections from base class -->
  389. <_dsannotations-options>inherit</_dsannotations-options>
  390. <!-- Enable processing of OSGI metatype annotations -->
  391. <_metatypeannotations>*</_metatypeannotations>
  392. </instructions>
  393. </configuration>
  394. <executions>
  395. <execution>
  396. <id>bundle</id>
  397. <goals>
  398. <goal>bundle</goal>
  399. </goals>
  400. </execution>
  401. </executions>
  402. </plugin>
  403. <plugin>
  404. <groupId>org.apache.maven.plugins</groupId>
  405. <artifactId>maven-clean-plugin</artifactId>
  406. <version>3.1.0</version>
  407. <configuration>
  408. <filesets>
  409. <fileset>
  410. <directory>.</directory>
  411. <includes>
  412. <include>**/*.log</include>
  413. </includes>
  414. <followSymlinks>false</followSymlinks>
  415. </fileset>
  416. </filesets>
  417. </configuration>
  418. </plugin>
  419. <plugin>
  420. <groupId>org.apache.maven.plugins</groupId>
  421. <artifactId>maven-surefire-plugin</artifactId>
  422. <version>2.22.2</version>
  423. <configuration>
  424. <useSystemClassLoader>false</useSystemClassLoader>
  425. </configuration>
  426. </plugin>
  427. <plugin>
  428. <groupId>org.eluder.coveralls</groupId>
  429. <artifactId>coveralls-maven-plugin</artifactId>
  430. <version>4.3.0</version>
  431. </plugin>
  432. <plugin>
  433. <groupId>org.apache.karaf.tooling</groupId>
  434. <artifactId>karaf-maven-plugin</artifactId>
  435. <version>${karaf.version}</version>
  436. <extensions>true</extensions>
  437. <configuration>
  438. <startLevel>80</startLevel>
  439. <includeTransitiveDependency>false</includeTransitiveDependency>
  440. <aggregateFeatures>false</aggregateFeatures>
  441. <includeProjectArtifact>true</includeProjectArtifact>
  442. <primaryFeatureName>${karaf-feature-name}</primaryFeatureName>
  443. </configuration>
  444. <executions>
  445. <execution>
  446. <id>generate-features-file</id>
  447. <phase>package</phase>
  448. <goals>
  449. <goal>features-generate-descriptor</goal>
  450. </goals>
  451. </execution>
  452. </executions>
  453. </plugin>
  454. </plugins>
  455. </pluginManagement>
  456. <plugins>
  457. <plugin>
  458. <artifactId>maven-resources-plugin</artifactId>
  459. <version>3.1.0</version>
  460. <executions>
  461. <execution>
  462. <id>filter-resources</id>
  463. <phase>validate</phase>
  464. <goals>
  465. <goal>resources</goal>
  466. </goals>
  467. <configuration>
  468. <resources>
  469. <resource>
  470. <directory>src/main/filtered-resources</directory>
  471. <filtering>true</filtering>
  472. </resource>
  473. </resources>
  474. </configuration>
  475. </execution>
  476. </executions>
  477. </plugin>
  478. <plugin>
  479. <groupId>org.codehaus.mojo</groupId>
  480. <artifactId>build-helper-maven-plugin</artifactId>
  481. <version>3.0.0</version>
  482. <inherited>false</inherited>
  483. <executions>
  484. <execution>
  485. <id>attach-karaf-feature</id>
  486. <phase>package</phase>
  487. <goals>
  488. <goal>attach-artifact</goal>
  489. </goals>
  490. <configuration>
  491. <artifacts>
  492. <artifact>
  493. <file>target/classes/feature.xml</file>
  494. <type>xml</type>
  495. <classifier>features</classifier>
  496. </artifact>
  497. </artifacts>
  498. </configuration>
  499. </execution>
  500. </executions>
  501. </plugin>
  502. <plugin>
  503. <groupId>org.apache.maven.plugins</groupId>
  504. <artifactId>maven-source-plugin</artifactId>
  505. <executions>
  506. <execution>
  507. <id>attach-sources</id>
  508. <goals>
  509. <goal>jar</goal>
  510. </goals>
  511. </execution>
  512. </executions>
  513. </plugin>
  514. <plugin>
  515. <groupId>org.apache.maven.plugins</groupId>
  516. <artifactId>maven-javadoc-plugin</artifactId>
  517. <configuration>
  518. <show>private</show>
  519. <source>8</source>
  520. </configuration>
  521. <executions>
  522. <execution>
  523. <id>attach-javadocs</id>
  524. <goals>
  525. <goal>jar</goal>
  526. </goals>
  527. </execution>
  528. <execution>
  529. <id>aggregate-javadocs</id>
  530. <goals>
  531. <goal>aggregate-jar</goal>
  532. </goals>
  533. <phase>prepare-package</phase>
  534. <configuration>
  535. </configuration>
  536. </execution>
  537. </executions>
  538. </plugin>
  539. <plugin>
  540. <groupId>org.codehaus.mojo</groupId>
  541. <artifactId>cobertura-maven-plugin</artifactId>
  542. <configuration>
  543. <outputDirectory>${basedir}/target</outputDirectory>
  544. <formats>
  545. <format>html</format>
  546. <format>xml</format>
  547. </formats>
  548. <aggregate>true</aggregate>
  549. </configuration>
  550. </plugin>
  551. <plugin>
  552. <groupId>org.eluder.coveralls</groupId>
  553. <artifactId>coveralls-maven-plugin</artifactId>
  554. <configuration>
  555. <coberturaReports>
  556. <coberturaReport>${basedir}/target/coverage.xml</coberturaReport>
  557. </coberturaReports>
  558. </configuration>
  559. </plugin>
  560. <plugin>
  561. <groupId>org.apache.maven.plugins</groupId>
  562. <artifactId>maven-release-plugin</artifactId>
  563. <version>2.5.3</version>
  564. <configuration>
  565. <releaseProfiles>release-sign-artifact</releaseProfiles>
  566. </configuration>
  567. </plugin>
  568. <plugin>
  569. <groupId>org.sonatype.plugins</groupId>
  570. <artifactId>nexus-staging-maven-plugin</artifactId>
  571. <version>1.6.8</version>
  572. <extensions>true</extensions>
  573. <configuration>
  574. <serverId>ossrh</serverId>
  575. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  576. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  577. </configuration>
  578. </plugin>
  579. </plugins>
  580. <extensions>
  581. <extension>
  582. <groupId>org.apache.maven.wagon</groupId>
  583. <artifactId>wagon-ftp</artifactId>
  584. <version>1.0-beta-6</version>
  585. </extension>
  586. </extensions>
  587. </build>
  588. <distributionManagement>
  589. <snapshotRepository>
  590. <id>ossrh</id>
  591. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  592. </snapshotRepository>
  593. <repository>
  594. <id>ossrh</id>
  595. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  596. </repository>
  597. </distributionManagement>
  598. <licenses>
  599. <license>
  600. <name>Apache License version 2</name>
  601. <url>http://www.apache.org/licenses/LICENSE-2.0</url>
  602. </license>
  603. </licenses>
  604. <developers>
  605. <developer>
  606. <name>Steinar Bang</name>
  607. <email>sb@dod.no</email>
  608. <url>https://steinar.bang.priv.no/</url>
  609. <organization>steinarb-github</organization>
  610. <organizationUrl>https://github.com/steinarb</organizationUrl>
  611. </developer>
  612. </developers>
  613. <scm>
  614. <url>https://github.com/steinarb/authservice</url>
  615. <connection>scm:git:https://github.com/steinarb/authservice.git</connection>
  616. <tag>HEAD</tag>
  617. </scm>
  618. <issueManagement>
  619. <url>https://github.com/steinarb/authservice/issues</url>
  620. <system>Github issue tracker</system>
  621. </issueManagement>
  622. <ciManagement>
  623. <url>https://travis-ci.org/steinarb/authservice</url>
  624. <system>travis-ci</system>
  625. </ciManagement>
  626. <url>http://steinarb.github.io/authservice/</url>
  627. <profiles>
  628. <profile>
  629. <id>release-sign-artifact</id>
  630. <build>
  631. <plugins>
  632. <plugin>
  633. <groupId>org.apache.maven.plugins</groupId>
  634. <artifactId>maven-gpg-plugin</artifactId>
  635. <version>1.6</version>
  636. <executions>
  637. <execution>
  638. <id>sign-artifacts</id>
  639. <phase>verify</phase>
  640. <goals>
  641. <goal>sign</goal>
  642. </goals>
  643. <configuration>
  644. <gpgArguments>
  645. <arg>--pinentry-mode</arg>
  646. <arg>loopback</arg>
  647. </gpgArguments>
  648. </configuration>
  649. </execution>
  650. </executions>
  651. </plugin>
  652. </plugins>
  653. </build>
  654. </profile>
  655. </profiles>
  656. </project>