You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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