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.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. </dependencies>
  26. <build>
  27. <plugins>
  28. <plugin>
  29. <groupId>org.apache.maven.plugins</groupId>
  30. <artifactId>maven-compiler-plugin</artifactId>
  31. <version>3.8.0</version>
  32. <configuration>
  33. <release>8</release>
  34. </configuration>
  35. </plugin>
  36. </plugins>
  37. </build>
  38. </project>