Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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>at.htlstp.alenb</groupId>
  5. <artifactId>Labor16_2</artifactId>
  6. <version>1.0-SNAPSHOT</version>
  7. <packaging>jar</packaging>
  8. <repositories>
  9. <repository>
  10. <id>unknown-jars-temp-repo</id>
  11. <name>A temporary repository created by NetBeans for libraries and jars it could not identify. Please replace the dependencies in this repository with correct ones and delete this repository.</name>
  12. <url>file:${project.basedir}/lib</url>
  13. </repository>
  14. </repositories>
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <maven.compiler.source>1.8</maven.compiler.source>
  18. <maven.compiler.target>1.8</maven.compiler.target>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>postgresql</groupId>
  23. <artifactId>postgresql</artifactId>
  24. <version>9.1-901-1.jdbc4</version>
  25. </dependency>
  26. <!-- https://mvnrepository.com/artifact/commons-lang/commons-lang -->
  27. <dependency>
  28. <groupId>commons-lang</groupId>
  29. <artifactId>commons-lang</artifactId>
  30. <version>2.6</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.hibernate</groupId>
  34. <artifactId>hibernate-entitymanager</artifactId>
  35. <version>4.3.1.Final</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>unknown.binary</groupId>
  39. <artifactId>hibernate-jpamodelgen-4.3.1.Final</artifactId>
  40. <version>SNAPSHOT</version>
  41. <scope>provided</scope>
  42. </dependency>
  43. </dependencies>
  44. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement