pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. </plugins>
  56. </build>
  57. </project>