Advertisement
Guest User

Untitled

a guest
Jan 20th, 2020
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  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.  
  7. <groupId>physics</groupId>
  8. <artifactId>millikan-project</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10.  
  11. <build>
  12. <plugins>
  13. <plugin>
  14. <groupId>org.apache.maven.plugins</groupId>
  15. <artifactId>maven-compiler-plugin</artifactId>
  16. <version>3.1</version>
  17. <configuration>
  18. <source>8</source>
  19. <target>8</target>
  20. </configuration>
  21. </plugin>
  22. <plugin>
  23. <groupId>org.apache.maven.plugins</groupId>
  24. <artifactId>maven-jar-plugin</artifactId>
  25. <version>2.4</version>
  26. <configuration>
  27. <archive>
  28. <manifest>
  29. <addClasspath>true</addClasspath>
  30. <classpathPrefix>lib/</classpathPrefix>
  31. <mainClass>MillikanExperiment</mainClass>
  32. </manifest>
  33. </archive>
  34. </configuration>
  35. </plugin>
  36. </plugins>
  37. </build>
  38.  
  39. <dependencies>
  40. <dependency>
  41. <groupId>org.jfree</groupId>
  42. <artifactId>jfreechart</artifactId>
  43. <version>1.0.19</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.jfree</groupId>
  47. <artifactId>jcommon</artifactId>
  48. <version>1.0.23</version>
  49. </dependency>
  50. </dependencies>
  51.  
  52. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement