Guest User

pom_boot

a guest
Mar 18th, 2015
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.65 KB | None | 0 0
  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. <modelVersion>4.0.0</modelVersion>
  6. <packaging>war</packaging>
  7. <groupId>com.ang</groupId>
  8. <artifactId>AngularProject</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. <properties>
  11. <spring.boot>1.2.2.RELEASE</spring.boot>
  12. <spring.core>4.1.5.RELEASE</spring.core>
  13. <spring.mongo>1.6.2.RELEASE</spring.mongo>
  14. </properties>
  15. <parent>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-parent</artifactId>
  18. <version>1.2.2.RELEASE</version>
  19. </parent>
  20.  
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-web</artifactId>
  25. <version>${spring.boot}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework</groupId>
  29. <artifactId>spring-core</artifactId>
  30. <version>${spring.core}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.data</groupId>
  34. <artifactId>spring-data-mongodb</artifactId>
  35. <version>${spring.mongo}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.fasterxml.jackson.core</groupId>
  39. <artifactId>jackson-core</artifactId>
  40. <version>2.5.1</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.fasterxml.jackson.core</groupId>
  44. <artifactId>jackson-databind</artifactId>
  45. <version>2.5.1</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.fasterxml.jackson.core</groupId>
  49. <artifactId>jackson-annotations</artifactId>
  50. <version>2.5.1</version>
  51. </dependency>
  52.  
  53. </dependencies>
  54. <build>
  55. <plugins>
  56. <plugin>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-maven-plugin</artifactId>
  59. </plugin>
  60. </plugins>
  61. </build>
  62.  
  63. <repositories>
  64. <repository>
  65. <id>spring-releases</id>
  66. <url>https://repo.spring.io/libs-release</url>
  67. </repository>
  68. </repositories>
  69. <pluginRepositories>
  70. <pluginRepository>
  71. <id>spring-releases</id>
  72. <url>https://repo.spring.io/libs-release</url>
  73. </pluginRepository>
  74. </pluginRepositories>
  75. </project>
Advertisement
Add Comment
Please, Sign In to add comment