pom.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>com.sunwin</groupId>
  6. <artifactId>swismp</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <groupId>com.sunwin.swismp</groupId>
  11. <artifactId>swismp-base</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <name>swismp-base</name>
  14. <description>swismp-base</description>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.fasterxml.jackson.core</groupId>
  21. <artifactId>jackson-annotations</artifactId>
  22. <version>2.2.3</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.alibaba</groupId>
  26. <artifactId>dubbo</artifactId>
  27. <version>2.6.0</version>
  28. <scope>compile</scope>
  29. </dependency>
  30. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  31. <dependency>
  32. <groupId>org.apache.commons</groupId>
  33. <artifactId>commons-lang3</artifactId>
  34. <version>3.8.1</version>
  35. </dependency>
  36. </dependencies>
  37. </project>