Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. 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. <groupId>com.mockitotutorial</groupId>
  6. <artifactId>happyhotel</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>Happy Hotel App</name>
  9. <description>A project to learn mockito</description>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <maven.compiler.source>11</maven.compiler.source>
  13. <maven.compiler.target>11</maven.compiler.target>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.junit.jupiter</groupId>
  18. <artifactId>junit-jupiter-engine</artifactId>
  19. <version>5.7.0</version>
  20. <scope>test</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.mockito</groupId>
  24. <artifactId>mockito-core</artifactId>
  25. <version>3.5.13</version>
  26. <scope>test</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.mockito</groupId>
  30. <artifactId>mockito-junit-jupiter</artifactId>
  31. <version>2.23.0</version>
  32. <scope>test</scope>
  33. </dependency>
  34. </dependencies>
  35. <build>
  36. <plugins>
  37. <plugin>
  38. <artifactId>maven-surefire-plugin</artifactId>
  39. <version>2.19.1</version>
  40. <dependencies>
  41. <dependency>
  42. <groupId>org.junit.platform</groupId>
  43. <artifactId>junit-platform-surefire-provider</artifactId>
  44. <version>1.0.1</version>
  45. </dependency>
  46. </dependencies>
  47. </plugin>
  48. <plugin>
  49. <groupId>org.apache.maven.plugins</groupId>
  50. <artifactId>maven-compiler-plugin</artifactId>
  51. <configuration>
  52. <source>8</source>
  53. <target>8</target>
  54. </configuration>
  55. </plugin>
  56. </plugins>
  57. </build>
  58. </project>