Eine kleine super Übung zum Kennenlernen.
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.

pom.xml 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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>pr.bme.giglbarth</groupId>
  7. <artifactId>testosteroth</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <dependencies>
  10. <dependency>
  11. <groupId>io.javalin</groupId>
  12. <artifactId>javalin</artifactId>
  13. <version>3.6.0</version>
  14. </dependency>
  15. <dependency>
  16. <groupId>org.thymeleaf</groupId>
  17. <artifactId>thymeleaf</artifactId>
  18. <version>3.0.11.RELEASE</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.slf4j</groupId>
  22. <artifactId>slf4j-simple</artifactId>
  23. <version>1.7.28</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.thymeleaf</groupId>
  27. <artifactId>thymeleaf</artifactId>
  28. <version>3.0.11.RELEASE</version>
  29. </dependency>
  30. </dependencies>
  31. <build>
  32. <plugins>
  33. <plugin>
  34. <groupId>org.apache.maven.plugins</groupId>
  35. <artifactId>maven-compiler-plugin</artifactId>
  36. <version>3.8.0</version>
  37. <configuration>
  38. <release>8</release>
  39. </configuration>
  40. </plugin>
  41. </plugins>
  42. </build>
  43. </project>