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.

81 lines
2.4 KiB

2 years ago
2 years ago
2 years ago
1 year ago
2 years ago
2 years ago
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
  6. >
  7. <modelVersion>4.0.0</modelVersion>
  8. <groupId>com.dreamworks</groupId>
  9. <artifactId>boditech</artifactId>
  10. <version>0.0.105</version>
  11. <name>boditech</name>
  12. <description>boditech</description>
  13. <parent>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-parent</artifactId>
  16. <version>3.1.5</version>
  17. <relativePath/> <!-- lookup parent from repository -->
  18. </parent>
  19. <properties>
  20. <java.version>17</java.version>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.mybatis.spring.boot</groupId>
  29. <artifactId>mybatis-spring-boot-starter</artifactId>
  30. <version>3.0.2</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.mysql</groupId>
  34. <artifactId>mysql-connector-j</artifactId>
  35. <scope>runtime</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.java-websocket</groupId>
  39. <artifactId>Java-WebSocket</artifactId>
  40. <version>1.5.4</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-websocket</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.fazecast</groupId>
  48. <artifactId>jSerialComm</artifactId>
  49. <version>2.6.2</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-aop</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.jetbrains</groupId>
  57. <artifactId>annotations</artifactId>
  58. <version>RELEASE</version>
  59. <scope>compile</scope>
  60. </dependency>
  61. </dependencies>
  62. <build>
  63. <plugins>
  64. <plugin>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-maven-plugin</artifactId>
  67. </plugin>
  68. <plugin>
  69. <groupId>org.codehaus.mojo</groupId>
  70. <artifactId>versions-maven-plugin</artifactId>
  71. <configuration>
  72. <generateBackupPoms>false</generateBackupPoms>
  73. </configuration>
  74. </plugin>
  75. </plugins>
  76. </build>
  77. </project>