pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>pl.dmcs</groupId>
  6. <artifactId>Task4</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <properties>
  10. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  11. <maven.compiler.source>11</maven.compiler.source>
  12. <maven.compiler.target>11</maven.compiler.target>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>pl.dmcs</groupId>
  17. <artifactId>app</artifactId>
  18. <version>1.0</version>
  19. </dependency>
  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. <dependency>
  27. <groupId>org.junit.jupiter</groupId>
  28. <artifactId>junit-jupiter-engine</artifactId>
  29. <version>5.10.2</version>
  30. <scope>test</scope>
  31. </dependency>
  32. </dependencies>
  33. <build>
  34. <plugins>
  35. <plugin>
  36. <artifactId>maven-compiler-plugin</artifactId>
  37. <version>3.12.1</version>
  38. <configuration>
  39. <source>11</source>
  40. <target>11</target>
  41. </configuration>
  42. </plugin>
  43. <plugin>
  44. <artifactId>maven-jar-plugin</artifactId>
  45. <version>3.3.0</version>
  46. <configuration>
  47. <archive>
  48. <manifest>
  49. <addClasspath>true</addClasspath>
  50. <mainClass>pl.dmcs.MainApp</mainClass>
  51. </manifest>
  52. </archive>
  53. </configuration>
  54. </plugin>
  55. <plugin>
  56. <artifactId>maven-site-plugin</artifactId>
  57. <version>3.9.1</version>
  58. </plugin>
  59. <plugin>
  60. <artifactId>maven-project-info-reports-plugin</artifactId>
  61. <version>3.5.0</version>
  62. </plugin>
  63. </plugins>
  64. </build>
  65. </project>