pom.xml 953 B

12345678910111213141516171819202122232425262728293031323334
  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-im-api</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.lc.ibps.api</groupId>
  15. <artifactId>ibps-api-base</artifactId>
  16. </dependency>
  17. </dependencies>
  18. <build>
  19. <plugins>
  20. <plugin>
  21. <artifactId>maven-compiler-plugin</artifactId>
  22. <version>3.3</version>
  23. <configuration>
  24. <source>1.8</source>
  25. <target>1.8</target>
  26. <encoding>UTF-8</encoding>
  27. </configuration>
  28. </plugin>
  29. </plugins>
  30. </build>
  31. </project>