pom.xml 1.4 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>eis_qnym_java</artifactId>
  7. <groupId>com.prolog.eis</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>eis-business-strategy</artifactId>
  12. <packaging>jar</packaging>
  13. <properties>
  14. <maven.compiler.source>8</maven.compiler.source>
  15. <maven.compiler.target>8</maven.compiler.target>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.prolog.eis</groupId>
  21. <artifactId>eis-business-common</artifactId>
  22. <version>0.0.1-SNAPSHOT</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.prolog.eis</groupId>
  26. <artifactId>eis-business-facade</artifactId>
  27. <version>0.0.1-SNAPSHOT</version>
  28. </dependency>
  29. <!-- <dependency>-->
  30. <!-- <groupId>com.prolog.eis</groupId>-->
  31. <!-- <artifactId>eis-business-service</artifactId>-->
  32. <!-- <version>0.0.1-SNAPSHOT</version>-->
  33. <!-- <scope>compile</scope>-->
  34. <!-- </dependency>-->
  35. </dependencies>
  36. </project>