java服务器-体脂秤算法SDK
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.elink</groupId>
  7. <artifactId>algorithm-lib</artifactId>
  8. <version>1.0</version>
  9. <packaging>jar</packaging>
  10. <name>algorithm-lib</name>
  11. <url>http://maven.apache.org</url>
  12. <parent>
  13. <groupId>org.springframework.boot</groupId>
  14. <artifactId>spring-boot-starter-parent</artifactId>
  15. <version>1.5.6.RELEASE</version>
  16. </parent>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <java.version>1.8</java.version>
  21. <spring-cloud.version>Dalston.RELEASE</spring-cloud.version>
  22. </properties>
  23. <dependencies>
  24. <dependency>
  25. <groupId>com.sun.jna</groupId>
  26. <artifactId>jna</artifactId>
  27. <version>3.0.9</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.alibaba</groupId>
  31. <artifactId>fastjson</artifactId>
  32. <version>1.2.59</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-web</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-test</artifactId>
  41. <scope>test</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.cloud</groupId>
  45. <artifactId>spring-cloud-starter-feign</artifactId>
  46. </dependency>
  47. </dependencies>
  48. <dependencyManagement>
  49. <dependencies>
  50. <dependency>
  51. <groupId>org.springframework.cloud</groupId>
  52. <artifactId>spring-cloud-dependencies</artifactId>
  53. <version>${spring-cloud.version}</version>
  54. <type>pom</type>
  55. <scope>import</scope>
  56. </dependency>
  57. </dependencies>
  58. </dependencyManagement>
  59. <build>
  60. <plugins>
  61. <plugin>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-maven-plugin</artifactId>
  64. <configuration>
  65. <mainClass>com.elink.aicare.AicareDemoAppApplication</mainClass>
  66. <layout>JAR</layout>
  67. </configuration>
  68. </plugin>
  69. <plugin>
  70. <groupId>org.apache.maven.plugins</groupId>
  71. <artifactId>maven-compiler-plugin</artifactId>
  72. <configuration>
  73. <source>8</source>
  74. <target>8</target>
  75. </configuration>
  76. </plugin>
  77. </plugins>
  78. <!--打包时将resource下的文件一起打包-->
  79. <resources>
  80. <resource>
  81. <directory>src/main/resources</directory>
  82. <includes>
  83. <include>**/**</include>
  84. </includes>
  85. <filtering>false</filtering>
  86. </resource>
  87. </resources>
  88. </build>
  89. <repositories>
  90. <repository>
  91. <id>spring-snapshots</id>
  92. <url>http://repo.spring.io/libs-snapshot</url>
  93. </repository>
  94. </repositories>
  95. <pluginRepositories>
  96. <pluginRepository>
  97. <id>spring-snapshots</id>
  98. <url>http://repo.spring.io/libs-snapshot</url>
  99. </pluginRepository>
  100. </pluginRepositories>
  101. </project>