pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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.model</groupId>
  6. <artifactId>ibps-model-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-org-model</artifactId>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.lc.ibps.persist</groupId>
  18. <artifactId>ibps-persist-common</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.lc.ibps.base</groupId>
  22. <artifactId>ibps-base-datasource</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.lc.ibps.base</groupId>
  26. <artifactId>ibps-base-quartz</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.lc.ibps.api</groupId>
  30. <artifactId>ibps-api-org</artifactId>
  31. </dependency>
  32. </dependencies>
  33. <build>
  34. <plugins>
  35. <plugin>
  36. <artifactId>maven-compiler-plugin</artifactId>
  37. <version>3.3</version>
  38. <configuration>
  39. <source>1.8</source>
  40. <target>1.8</target>
  41. <encoding>UTF-8</encoding>
  42. </configuration>
  43. </plugin>
  44. </plugins>
  45. </build>
  46. </project>