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.

140 lines
4.3 KiB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.1.8.RELEASE</version>
  9. <relativePath /> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>org.ros</groupId>
  12. <artifactId>Chatto</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <packaging>jar</packaging>
  15. <name>chatto</name>
  16. <description>Demo project for Spring Boot</description>
  17. <properties>
  18. <java.version>11</java.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-data-jpa</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-web</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-devtools</artifactId>
  32. <scope>runtime</scope>
  33. <optional>true</optional>
  34. </dependency>
  35. <dependency>
  36. <groupId>mysql</groupId>
  37. <artifactId>mysql-connector-java</artifactId>
  38. <scope>runtime</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-tomcat</artifactId>
  43. <scope>provided</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-test</artifactId>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-security</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework.security</groupId>
  60. <artifactId>spring-security-test</artifactId>
  61. <scope>test</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.github.ulisesbocchio</groupId>
  65. <artifactId>jasypt-spring-boot-starter</artifactId>
  66. <version>2.1.2</version>
  67. </dependency>
  68. <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
  69. <dependency>
  70. <groupId>org.projectlombok</groupId>
  71. <artifactId>lombok</artifactId>
  72. </dependency>
  73. <!-- https://mvnrepository.com/artifact/org.modelmapper/modelmapper -->
  74. <dependency>
  75. <groupId>org.modelmapper</groupId>
  76. <artifactId>modelmapper</artifactId>
  77. <version>2.3.5</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-starter-cache</artifactId>
  82. </dependency>
  83. <!-- https://mvnrepository.com/artifact/org.ehcache/ehcache -->
  84. <dependency>
  85. <groupId>org.ehcache</groupId>
  86. <artifactId>ehcache</artifactId>
  87. </dependency>
  88. <!-- https://mvnrepository.com/artifact/javax.cache/cache-api -->
  89. <dependency>
  90. <groupId>javax.cache</groupId>
  91. <artifactId>cache-api</artifactId>
  92. </dependency>
  93. <!-- <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId>
  94. <version>2.2.11</version> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId>
  95. <artifactId>jaxb-core</artifactId> <version>2.2.11</version> </dependency> -->
  96. <!-- https://mvnrepository.com/artifact/org.thymeleaf.extras/thymeleaf-extras-springsecurity5 -->
  97. <!-- https://mvnrepository.com/artifact/javax.xml.bind/jaxb-api -->
  98. <dependency>
  99. <groupId>javax.xml.bind</groupId>
  100. <artifactId>jaxb-api</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.glassfish.jaxb</groupId>
  104. <artifactId>jaxb-runtime</artifactId>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.thymeleaf.extras</groupId>
  108. <artifactId>thymeleaf-extras-springsecurity5</artifactId>
  109. </dependency>
  110. <!-- https://mvnrepository.com/artifact/net.sf.ehcache/ehcache -->
  111. <!-- <dependency> <groupId>net.sf.ehcache</groupId> <artifactId>ehcache</artifactId>
  112. </dependency> -->
  113. <!-- <dependency> <groupId>javax.cache</groupId> <artifactId>cache-api</artifactId>
  114. <version>1.1.0</version> </dependency> -->
  115. </dependencies>
  116. <build>
  117. <plugins>
  118. <plugin>
  119. <groupId>org.springframework.boot</groupId>
  120. <artifactId>spring-boot-maven-plugin</artifactId>
  121. </plugin>
  122. </plugins>
  123. </build>
  124. </project>