Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. <groupId>be.syntra</groupId>
  7. <artifactId>jordiquote-spring-xml</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  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</artifactId>
  19. <version>5.7.1</version>
  20. <scope>test</scope>
  21. </dependency>
  22. <!-- https://mvnrepository.com/artifact/org.springframework/spring -->
  23. <!-- https://mvnrepository.com/artifact/org.springframework/spring-core -->
  24. <dependency>
  25. <groupId>org.springframework</groupId>
  26. <artifactId>spring-context</artifactId>
  27. <version>5.2.13.RELEASE</version>
  28. </dependency>
  29. <dependency>
  30. <!-- https://github.com/ricksbrown/cowsay -->
  31. <groupId>com.github.ricksbrown</groupId>
  32. <artifactId>cowsay</artifactId>
  33. <version>1.1.0</version>
  34. <!-- The "lib" classifier is optional, but it gives you a MUCH smaller jar which is all you need as a Java library -->
  35. <classifier>lib</classifier>
  36. </dependency>
  37. <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
  38. <dependency>
  39. <groupId>mysql</groupId>
  40. <artifactId>mysql-connector-java</artifactId>
  41. <version>8.0.24</version>
  42. </dependency>
  43. <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
  44. <!-- https://projectlombok.org/-->
  45. <dependency>
  46. <groupId>org.projectlombok</groupId>
  47. <artifactId>lombok</artifactId>
  48. <version>1.18.20</version>
  49. <scope>provided</scope>
  50. </dependency>
  51. </dependencies>
  52. </project>