pom.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>de.tudresden.inf.st</groupId>
  5. <artifactId>salespoint-framework</artifactId>
  6. <version>6.1.2.BUILD-SNAPSHOT</version>
  7. <name>Salespoint</name>
  8. <parent>
  9. <groupId>org.springframework.boot</groupId>
  10. <artifactId>spring-boot-starter-parent</artifactId>
  11. <version>1.2.1.RELEASE</version>
  12. </parent>
  13. <properties>
  14. <dev>/dev</dev>
  15. </properties>
  16. <profiles>
  17. <profile>
  18. <id>release</id>
  19. <properties>
  20. <dev></dev>
  21. </properties>
  22. </profile>
  23. </profiles>
  24. <dependencies>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-data-jpa</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-web</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-mail</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-security</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.thymeleaf.extras</groupId>
  47. <artifactId>thymeleaf-extras-springsecurity3</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-test</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.hsqldb</groupId>
  55. <artifactId>hsqldb</artifactId>
  56. <scope>test</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.joda</groupId>
  60. <artifactId>joda-money</artifactId>
  61. <version>0.9.1</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.jadira.usertype</groupId>
  65. <artifactId>usertype.extended</artifactId>
  66. <version>3.2.0.GA</version>
  67. </dependency>
  68. <!-- For changelog creation -->
  69. <dependency>
  70. <groupId>com.jayway.jsonpath</groupId>
  71. <artifactId>json-path</artifactId>
  72. <scope>test</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.httpcomponents</groupId>
  76. <artifactId>httpclient</artifactId>
  77. <scope>test</scope>
  78. </dependency>
  79. </dependencies>
  80. <build>
  81. <extensions>
  82. <extension>
  83. <groupId>org.apache.maven.wagon</groupId>
  84. <artifactId>wagon-ssh</artifactId>
  85. <version>2.6</version>
  86. </extension>
  87. </extensions>
  88. <plugins>
  89. <plugin>
  90. <groupId>org.apache.maven.plugins</groupId>
  91. <artifactId>maven-compiler-plugin</artifactId>
  92. <configuration>
  93. <source>1.8</source>
  94. <target>1.8</target>
  95. <compilerArgument>-proc:none</compilerArgument>
  96. </configuration>
  97. </plugin>
  98. <plugin>
  99. <groupId>org.apache.maven.plugins</groupId>
  100. <artifactId>maven-javadoc-plugin</artifactId>
  101. <executions>
  102. <execution>
  103. <id>package-javadoc</id>
  104. <goals>
  105. <goal>jar</goal>
  106. </goals>
  107. <phase>package</phase>
  108. </execution>
  109. </executions>
  110. <configuration>
  111. <additionalparam>-Xdoclint:none</additionalparam>
  112. <excludePackageNames>org.thymeleaf.*</excludePackageNames>
  113. <outputDirectory>${project.build.directory}/site${dev}/api</outputDirectory>
  114. <show>package</show>
  115. </configuration>
  116. </plugin>
  117. <plugin>
  118. <groupId>org.asciidoctor</groupId>
  119. <artifactId>asciidoctor-maven-plugin</artifactId>
  120. <version>1.5.0</version>
  121. <executions>
  122. <execution>
  123. <id>website</id>
  124. <phase>generate-resources</phase>
  125. <goals>
  126. <goal>process-asciidoc</goal>
  127. </goals>
  128. <configuration>
  129. <sourceDirectory>src/main/asciidoc/site</sourceDirectory>
  130. <outputDirectory>${project.build.directory}/site</outputDirectory>
  131. </configuration>
  132. </execution>
  133. <execution>
  134. <id>reference</id>
  135. <phase>generate-resources</phase>
  136. <goals>
  137. <goal>process-asciidoc</goal>
  138. </goals>
  139. <configuration>
  140. <sourceDocumentName>salespoint-reference.adoc</sourceDocumentName>
  141. <outputDirectory>${project.build.directory}/site${dev}</outputDirectory>
  142. </configuration>
  143. </execution>
  144. </executions>
  145. <configuration>
  146. <doctype>book</doctype>
  147. <backend>html5</backend>
  148. <sourceHighlighter>prettify</sourceHighlighter>
  149. <outputDirectory>${project.build.directory}/site</outputDirectory>
  150. <attributes>
  151. <version>${project.version}</version>
  152. <majorversion>6</majorversion>
  153. <linkcss>true</linkcss>
  154. <numbered>true</numbered>
  155. <icons>font</icons>
  156. <sectanchors>true</sectanchors>
  157. <dev>${dev}</dev>
  158. </attributes>
  159. </configuration>
  160. </plugin>
  161. </plugins>
  162. </build>
  163. <distributionManagement>
  164. <repository>
  165. <id>salespoint</id>
  166. <url>sftp://st.inf.tu-dresden.de:44/home/salespnt/salespoint/repository</url>
  167. </repository>
  168. <site>
  169. <id>salespoint</id>
  170. <url>sftp://st.inf.tu-dresden.de:44/home/salespnt/salespoint</url>
  171. </site>
  172. </distributionManagement>
  173. <repositories>
  174. <repository>
  175. <id>spring-libs-snapshot</id>
  176. <url>https://repo.spring.io/libs-snapshot</url>
  177. </repository>
  178. </repositories>
  179. </project>