pom.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.jeeplus</groupId>
  7. <artifactId>jeeplus</artifactId>
  8. <version>6.0</version>
  9. <relativePath>../../pom.xml</relativePath>
  10. </parent>
  11. <artifactId>jeeplus-core</artifactId>
  12. <packaging>jar</packaging>
  13. <name>jeeplus-core</name>
  14. <description>Core project for Spring Boot</description>
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  18. <java.version>1.8</java.version>
  19. <lib.path>${basedir}/src/main/webapp/WEB-INF/lib</lib.path>
  20. </properties>
  21. <dependencies>
  22. <!--短信验证码-->
  23. <dependency>
  24. <groupId>aliyun-java-sdk-core</groupId>
  25. <artifactId>aliyun-java-sdk-core</artifactId>
  26. <version>3.3.1</version>
  27. <systemPath>${lib.path}/aliyun-java-sdk-core-3.3.1.jar</systemPath>
  28. <scope>system</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>aliyun-java-sdk-dysmsapi</groupId>
  32. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  33. <version>1.0.0</version>
  34. <systemPath>${lib.path}/aliyun-java-sdk-dysmsapi-1.0.0.jar</systemPath>
  35. <scope>system</scope>
  36. </dependency>
  37. </dependencies>
  38. </project>