選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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</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. <dependency>
  23. <!-- https://github.com/ricksbrown/cowsay -->
  24. <groupId>com.github.ricksbrown</groupId>
  25. <artifactId>cowsay</artifactId>
  26. <version>1.1.0</version>
  27. <!-- The "lib" classifier is optional, but it gives you a MUCH smaller jar which is all you need as a Java library -->
  28. <classifier>lib</classifier>
  29. </dependency>
  30. <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
  31. <dependency>
  32. <groupId>mysql</groupId>
  33. <artifactId>mysql-connector-java</artifactId>
  34. <version>8.0.24</version>
  35. </dependency>
  36. <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
  37. <!-- https://projectlombok.org/-->
  38. <dependency>
  39. <groupId>org.projectlombok</groupId>
  40. <artifactId>lombok</artifactId>
  41. <version>1.18.20</version>
  42. <scope>provided</scope>
  43. </dependency>
  44. </dependencies>
  45. </project>