Cook book written in Java
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.

53 lines
1.3 KiB

  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>ksiazka.kucharska</groupId>
  5. <artifactId>ksiazka-kucharska</artifactId>
  6. <version>1.0</version>
  7. <packaging>jar</packaging>
  8. <name>ksiazka-kucharska</name>
  9. <url>http://maven.apache.org</url>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. </properties>
  13. <build>
  14. <plugins>
  15. <plugin>
  16. <groupId>org.apache.maven.plugins</groupId>
  17. <artifactId>maven-compiler-plugin</artifactId>
  18. <version>2.3.2</version>
  19. <configuration>
  20. <source>${jdk.version}</source>
  21. <target>${jdk.version}</target>
  22. </configuration>
  23. </plugin>
  24. <plugin>
  25. <groupId>org.apache.maven.plugins</groupId>
  26. <artifactId>maven-jar-plugin</artifactId>
  27. <version>2.4</version>
  28. <configuration>
  29. <archive>
  30. <manifest>
  31. <mainClass>ksiazka.kucharska.App</mainClass>
  32. </manifest>
  33. </archive>
  34. </configuration>
  35. </plugin>
  36. </plugins>
  37. </build>
  38. <dependencies>
  39. <dependency>
  40. <groupId>junit</groupId>
  41. <artifactId>junit</artifactId>
  42. <version>3.8.1</version>
  43. <scope>test</scope>
  44. </dependency>
  45. </dependencies>
  46. </project>