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.

44 lines
1.4 KiB

11 months ago
11 months ago
11 months ago
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>org.progmethoden</groupId>
  4. <artifactId>java-chat</artifactId>
  5. <version>0.0.1-SNAPSHOT</version>
  6. <dependencies>
  7. <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
  8. <dependency>
  9. <groupId>com.google.code.gson</groupId>
  10. <artifactId>gson</artifactId>
  11. <version>2.10.1</version>
  12. </dependency>
  13. <dependency>
  14. <groupId>junit</groupId>
  15. <artifactId>junit</artifactId>
  16. <version>4.13.2</version>
  17. <scope>test</scope>
  18. </dependency>
  19. <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
  20. <dependency>
  21. <groupId>org.junit.jupiter</groupId>
  22. <artifactId>junit-jupiter-api</artifactId>
  23. <version>5.10.2</version>
  24. <scope>test</scope>
  25. </dependency>
  26. </dependencies>
  27. <build>
  28. <plugins>
  29. <plugin>
  30. <groupId>org.apache.maven.plugins</groupId>
  31. <artifactId>maven-compiler-plugin</artifactId>
  32. <version>3.1</version>
  33. <configuration>
  34. <source>8</source>
  35. <target>8</target>
  36. </configuration>
  37. </plugin>
  38. </plugins>
  39. </build>
  40. </project>