Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.15 KB | None | 0 0
  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. <modelVersion>4.0.0</modelVersion>
  5.  
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.1.1.RELEASE</version>
  10. <relativePath/>
  11. </parent>
  12.  
  13. <groupId>fr.urouen</groupId>
  14. <artifactId>inventory</artifactId>
  15. <version>0.0.1-SNAPSHOT</version>
  16. <packaging>war</packaging>
  17. <description>Inventory Manager</description>
  18.  
  19. <properties>
  20. <java.version>1.8</java.version>
  21. <modelmapper.version>2.3.2</modelmapper.version>
  22. <mysql.version>8.0.13</mysql.version>
  23. <oauth2.version>2.3.4.RELEASE</oauth2.version>
  24. <swagger.version>2.9.2</swagger.version>
  25. </properties>
  26.  
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-web</artifactId>
  31. </dependency>
  32.  
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-security</artifactId>
  36. </dependency>
  37.  
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-data-jpa</artifactId>
  41. </dependency>
  42.  
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-tomcat</artifactId>
  46. <scope>provided</scope>
  47. </dependency>
  48.  
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-test</artifactId>
  52. <scope>test</scope>
  53. </dependency>
  54.  
  55. <dependency>
  56. <groupId>org.modelmapper</groupId>
  57. <artifactId>modelmapper</artifactId>
  58. <version>${modelmapper.version}</version>
  59. </dependency>
  60.  
  61. <dependency>
  62. <groupId>mysql</groupId>
  63. <artifactId>mysql-connector-java</artifactId>
  64. <version>${mysql.version}</version>
  65. </dependency>
  66.  
  67. <dependency>
  68. <groupId>org.springframework.security.oauth</groupId>
  69. <artifactId>spring-security-oauth2</artifactId>
  70. <version>${oauth2.version}</version>
  71. </dependency>
  72.  
  73. <dependency>
  74. <groupId>io.springfox</groupId>
  75. <artifactId>springfox-swagger2</artifactId>
  76. <version>${swagger.version}</version>
  77. </dependency>
  78.  
  79. <dependency>
  80. <groupId>io.springfox</groupId>
  81. <artifactId>springfox-swagger-ui</artifactId>
  82. <version>${swagger.version}</version>
  83. </dependency>
  84. </dependencies>
  85.  
  86. <build>
  87. <plugins>
  88. <plugin>
  89. <groupId>org.springframework.boot</groupId>
  90. <artifactId>spring-boot-maven-plugin</artifactId>
  91. </plugin>
  92. </plugins>
  93. </build>
  94. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement