Advertisement
Guest User

app1

a guest
Jun 20th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.11 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. <groupId>id.co.sigma</groupId>
  7. <artifactId>app1</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <packaging>pom</packaging>
  10.  
  11. <modules>
  12. <module>controller</module>
  13. <module>dao</module>
  14. <module>service</module>
  15. </modules>
  16.  
  17. <properties>
  18. <!-- Project Name -->
  19. <project.name>simple-app</project.name>
  20. <!-- Library version properties -->
  21. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  22. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  23. <java.version>1.8</java.version>
  24. <spring.boot.version>2.0.2.RELEASE</spring.boot.version>
  25. <java.ws.rs.version>2.0</java.ws.rs.version>
  26. <jdbc.dependency.groupId>postgresql</jdbc.dependency.groupId>
  27. <jdbc.dependency.artifactId>postgresql</jdbc.dependency.artifactId>
  28. <jdbc.dependency.version>9.1-901-1.jdbc4</jdbc.dependency.version>
  29. </properties>
  30.  
  31. <dependencyManagement>
  32. <dependencies>
  33. <dependency>
  34. <!-- import dependency management from spring-boot -->
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-dependencies</artifactId>
  37. <version>${spring.boot.version}</version>
  38. <type>pom</type>
  39. <scope>import</scope>
  40. </dependency>
  41.  
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-data-jpa</artifactId>
  45. <version>${spring.boot.version}</version>
  46. </dependency>
  47.  
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-test</artifactId>
  51. <version>${spring.boot.version}</version>
  52. <scope>test</scope>
  53. </dependency>
  54.  
  55. <!-- modules -->
  56.  
  57. </dependencies>
  58. </dependencyManagement>
  59.  
  60. <build>
  61. <plugins>
  62. <plugin>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-maven-plugin</artifactId>
  65. </plugin>
  66. </plugins>
  67. </build>
  68.  
  69.  
  70. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement