pom.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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.cloud.base</groupId>
  6. <artifactId>ibps-comp-base-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-comp-socket-api</artifactId>
  12. <properties>
  13. <java.version>1.8</java.version>
  14. <maven.compiler.source>1.8</maven.compiler.source>
  15. <maven.compiler.target>1.8</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.lc.ibps.cloud</groupId>
  20. <artifactId>ibps-basic-response</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.lc.ibps.model</groupId>
  24. <artifactId>ibps-socket-model</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>javax.servlet</groupId>
  28. <artifactId>javax.servlet-api</artifactId>
  29. <scope>provided</scope>
  30. </dependency>
  31. </dependencies>
  32. <build>
  33. <plugins>
  34. <plugin>
  35. <artifactId>maven-clean-plugin</artifactId>
  36. <version>3.0.0</version>
  37. <configuration>
  38. <source>1.8</source>
  39. <target>1.8</target>
  40. <encoding>UTF-8</encoding>
  41. </configuration>
  42. </plugin>
  43. <plugin>
  44. <artifactId>maven-compiler-plugin</artifactId>
  45. <version>3.3</version>
  46. <configuration>
  47. <source>1.8</source>
  48. <target>1.8</target>
  49. <fork>true</fork>
  50. <encoding>UTF-8</encoding>
  51. </configuration>
  52. </plugin>
  53. </plugins>
  54. </build>
  55. </project>