pom.xml 4.9 KB

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