pom.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. <parent>
  5. <groupId>com.lc.ibps.components</groupId>
  6. <artifactId>ibps-component-root</artifactId>
  7. <version>3.3.7-LC.RELEASE</version>
  8. <relativePath>../../pom.xml</relativePath>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ibps-component-upload-api</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.lc.ibps.persist</groupId>
  15. <artifactId>ibps-persist-core</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.lc.ibps.api</groupId>
  19. <artifactId>ibps-api-base</artifactId>
  20. </dependency>
  21. </dependencies>
  22. <build>
  23. <plugins>
  24. <plugin>
  25. <artifactId>maven-compiler-plugin</artifactId>
  26. <version>3.3</version>
  27. <configuration>
  28. <source>1.8</source>
  29. <target>1.8</target>
  30. <encoding>UTF-8</encoding>
  31. </configuration>
  32. </plugin>
  33. </plugins>
  34. </build>
  35. </project>