Advertisement
Guest User

Untitled

a guest
Apr 18th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 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>com.meste</groupId>
  5. <artifactId>MIAGEBankColl</artifactId>
  6. <version>1.0-SNAPSHOT</version>
  7. <packaging>jar</packaging>
  8. <dependencies>
  9. <dependency>
  10. <groupId>${project.groupId}</groupId>
  11. <artifactId>MIAGEBankShared</artifactId>
  12. <version>${project.version}</version>
  13. <scope>provided</scope>
  14. </dependency>
  15. <dependency>
  16. <groupId>org.glassfish.main.appclient</groupId>
  17. <artifactId>gf-client</artifactId>
  18. <version>5.0</version>
  19. </dependency>
  20. </dependencies>
  21. <properties>
  22. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  23. <maven.compiler.source>1.8</maven.compiler.source>
  24. <maven.compiler.target>1.8</maven.compiler.target>
  25. </properties>
  26. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement