pom.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. <parent>
  6. <artifactId>720yun_fd_base</artifactId>
  7. <groupId>com.gis</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>gis_oss</artifactId>
  12. <version>1.0.0</version>
  13. <packaging>jar</packaging>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.gis</groupId>
  17. <artifactId>gis_common</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>commons-fileupload</groupId>
  21. <artifactId>commons-fileupload</artifactId>
  22. <version>1.4</version>
  23. <scope>compile</scope>
  24. </dependency>
  25. <!-- 中文转拼音 -->
  26. <dependency>
  27. <groupId>com.belerweb</groupId>
  28. <artifactId>pinyin4j</artifactId>
  29. <version>2.5.1</version>
  30. </dependency>
  31. </dependencies>
  32. </project>