A self hosted chat application with end-to-end encrypted messaging.
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.

195 lines
6.4 KiB

  1. <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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>org.springframework.boot</groupId>
  5. <artifactId>spring-boot-starter-parent</artifactId>
  6. <version>2.1.8.RELEASE</version>
  7. <relativePath /> <!-- lookup parent from repository -->
  8. </parent>
  9. <groupId>org.ros</groupId>
  10. <artifactId>Chatto</artifactId>
  11. <version>0.0.1-SNAPSHOT</version>
  12. <packaging>jar</packaging>
  13. <name>chatto</name>
  14. <description>Demo project for Spring Boot</description>
  15. <properties>
  16. <java.version>11</java.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-data-jpa</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-devtools</artifactId>
  30. <scope>runtime</scope>
  31. <optional>true</optional>
  32. </dependency>
  33. <dependency>
  34. <groupId>mysql</groupId>
  35. <artifactId>mysql-connector-java</artifactId>
  36. <scope>runtime</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-tomcat</artifactId>
  41. <scope>provided</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-test</artifactId>
  46. <scope>test</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-security</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.security</groupId>
  58. <artifactId>spring-security-test</artifactId>
  59. <scope>test</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.github.ulisesbocchio</groupId>
  63. <artifactId>jasypt-spring-boot-starter</artifactId>
  64. <version>2.1.2</version>
  65. </dependency>
  66. <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
  67. <dependency>
  68. <groupId>org.projectlombok</groupId>
  69. <artifactId>lombok</artifactId>
  70. </dependency>
  71. <!-- https://mvnrepository.com/artifact/org.modelmapper/modelmapper -->
  72. <dependency>
  73. <groupId>org.modelmapper</groupId>
  74. <artifactId>modelmapper</artifactId>
  75. <version>2.3.5</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-cache</artifactId>
  80. </dependency>
  81. <!-- https://mvnrepository.com/artifact/org.ehcache/ehcache -->
  82. <dependency>
  83. <groupId>org.ehcache</groupId>
  84. <artifactId>ehcache</artifactId>
  85. </dependency>
  86. <!-- https://mvnrepository.com/artifact/javax.cache/cache-api -->
  87. <dependency>
  88. <groupId>javax.cache</groupId>
  89. <artifactId>cache-api</artifactId>
  90. </dependency>
  91. <!-- <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId>
  92. <version>2.2.11</version> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId>
  93. <artifactId>jaxb-core</artifactId> <version>2.2.11</version> </dependency> -->
  94. <!-- https://mvnrepository.com/artifact/org.thymeleaf.extras/thymeleaf-extras-springsecurity5 -->
  95. <!-- https://mvnrepository.com/artifact/javax.xml.bind/jaxb-api -->
  96. <dependency>
  97. <groupId>javax.xml.bind</groupId>
  98. <artifactId>jaxb-api</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.glassfish.jaxb</groupId>
  102. <artifactId>jaxb-runtime</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.thymeleaf.extras</groupId>
  106. <artifactId>thymeleaf-extras-springsecurity5</artifactId>
  107. </dependency>
  108. <!-- https://mvnrepository.com/artifact/net.sf.ehcache/ehcache -->
  109. <!-- <dependency> <groupId>net.sf.ehcache</groupId> <artifactId>ehcache</artifactId>
  110. </dependency> -->
  111. <!-- <dependency> <groupId>javax.cache</groupId> <artifactId>cache-api</artifactId>
  112. <version>1.1.0</version> </dependency> -->
  113. </dependencies>
  114. <build>
  115. <plugins>
  116. <plugin>
  117. <groupId>org.springframework.boot</groupId>
  118. <artifactId>spring-boot-maven-plugin</artifactId>
  119. </plugin>
  120. <plugin>
  121. <groupId>com.github.eirslett</groupId>
  122. <artifactId>frontend-maven-plugin</artifactId>
  123. <!-- Use the latest released version:
  124. https://repo1.maven.org/maven2/com/github/eirslett/frontend-maven-plugin/ -->
  125. <version>1.9.1</version>
  126. <configuration>
  127. <workingDirectory>src/main/javascript/</workingDirectory>
  128. </configuration>
  129. <executions>
  130. <execution>
  131. <id>install node and yarn</id>
  132. <goals>
  133. <goal>install-node-and-yarn</goal>
  134. </goals>
  135. <configuration>
  136. <!-- See https://nodejs.org/en/download/ for latest node and npm (lts) versions -->
  137. <nodeVersion>v12.10.0</nodeVersion>
  138. <yarnVersion>v1.21.1</yarnVersion>
  139. </configuration>
  140. </execution>
  141. <execution>
  142. <id>yarn install</id>
  143. <goals>
  144. <goal>yarn</goal>
  145. </goals>
  146. </execution>
  147. <execution>
  148. <id>watch</id>
  149. <goals>
  150. <goal>yarn</goal>
  151. </goals>
  152. <phase>none</phase>
  153. <configuration>
  154. <arguments>run watch</arguments>
  155. </configuration>
  156. </execution>
  157. <execution>
  158. <id>grunt browserify</id>
  159. <goals>
  160. <goal>grunt</goal>
  161. </goals>
  162. <!-- optional: the default phase is "generate-resources" -->
  163. <phase>generate-resources</phase>
  164. <configuration>
  165. <!-- optional: if not specified, it will run Grunt's default
  166. task (and you can remove this whole <configuration> section.) -->
  167. <arguments>browserify</arguments>
  168. </configuration>
  169. </execution>
  170. </executions>
  171. </plugin>
  172. </plugins>
  173. </build>
  174. </project>