Advertisement
Guest User

Service pom

a guest
Jan 14th, 2017
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>hr.croz.bspoljaric</groupId>
  6. <artifactId>croz-parent</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>croz-service</artifactId>
  10. <packaging>war</packaging>
  11. <name>croz-service</name>
  12. <description>Service module</description>
  13. <properties>
  14. <failOnMissingWebXml>false</failOnMissingWebXml>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>hr.croz.bspoljaric</groupId>
  19. <artifactId>croz-dao</artifactId>
  20. <version>${project.version}</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework</groupId>
  24. <artifactId>spring-jdbc</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework</groupId>
  28. <artifactId>spring-context</artifactId>
  29. </dependency>
  30. </dependencies>
  31. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement