pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.2.5.RELEASE</version>
  9. <relativePath/>
  10. </parent>
  11. <groupId>eu.fibane</groupId>
  12. <artifactId>parkingtoll</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>parking-toll</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <lambok.version>1.18.12</lambok.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.projectlombok</groupId>
  30. <artifactId>lombok</artifactId>
  31. <version>${lambok.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-test</artifactId>
  36. <scope>test</scope>
  37. <exclusions>
  38. <exclusion>
  39. <groupId>org.junit.vintage</groupId>
  40. <artifactId>junit-vintage-engine</artifactId>
  41. </exclusion>
  42. </exclusions>
  43. </dependency>
  44. </dependencies>
  45. <build>
  46. <plugins>
  47. <plugin>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-maven-plugin</artifactId>
  50. </plugin>
  51. <plugin>
  52. <artifactId>jacoco-maven-plugin</artifactId>
  53. <groupId>org.jacoco</groupId>
  54. <version>0.8.5</version>
  55. <executions>
  56. <execution>
  57. <goals>
  58. <goal>prepare-agent</goal>
  59. </goals>
  60. </execution>
  61. <execution>
  62. <id>report</id>
  63. <phase>test</phase>
  64. <goals>
  65. <goal>report</goal>
  66. </goals>
  67. </execution>
  68. </executions>
  69. </plugin>
  70. <plugin>
  71. <groupId>org.apache.maven.plugins</groupId>
  72. <artifactId>maven-compiler-plugin</artifactId>
  73. <configuration>
  74. <source>11</source>
  75. <target>11</target>
  76. <annotationProcessorPaths>
  77. <path>
  78. <groupId>org.projectlombok</groupId>
  79. <artifactId>lombok</artifactId>
  80. <version>${lambok.version}</version>
  81. </path>
  82. </annotationProcessorPaths>
  83. </configuration>
  84. </plugin>
  85. </plugins>
  86. </build>
  87. </project>