Advertisement
dwestlin

Untitled

Oct 17th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  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>miun-jee</groupId>
  5. <artifactId>assignment2</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7.  
  8. <properties>
  9. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  10. <skipTests>true</skipTests>
  11. </properties>
  12.  
  13. <build>
  14. <finalName>${project.artifactId}</finalName>
  15. <plugins>
  16. <plugin>
  17. <artifactId>maven-compiler-plugin</artifactId>
  18. <version>3.1</version>
  19. <configuration>
  20. <source>1.8</source>
  21. <target>1.8</target>
  22. </configuration>
  23. </plugin>
  24. <plugin>
  25. <artifactId>maven-assembly-plugin</artifactId>
  26. <version>3.1.0</version>
  27. <executions>
  28. <execution>
  29. <phase>package</phase>
  30. <goals>
  31. <goal>single</goal>
  32. </goals>
  33. </execution>
  34. </executions>
  35. <configuration>
  36. <descriptorRefs>
  37. <descriptorRef>jar-with-dependencies</descriptorRef>
  38. </descriptorRefs>
  39. <archive>
  40. <manifest>
  41. <mainClass>se.miun.dsv.jee.DatabasePopulator</mainClass>
  42. </manifest>
  43. </archive>
  44. <appendAssemblyId>false</appendAssemblyId>
  45. </configuration>
  46. </plugin>
  47. </plugins>
  48. </build>
  49. <dependencies>
  50. <dependency>
  51. <groupId>org.hibernate</groupId>
  52. <artifactId>hibernate-entitymanager</artifactId>
  53. <version>5.2.10.Final</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.postgresql</groupId>
  57. <artifactId>postgresql</artifactId>
  58. <version>9.4-1200-jdbc41</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.hibernate.javax.persistence</groupId>
  62. <artifactId>hibernate-jpa-2.1-api</artifactId>
  63. <version>1.0.0.Final</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>junit</groupId>
  67. <artifactId>junit</artifactId>
  68. <version>4.12</version>
  69. <scope>test</scope>
  70. </dependency>
  71. </dependencies>
  72. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement