pom.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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>sicura.entities</groupId>
  5. <artifactId>sicura.entities</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <packaging>jar</packaging>
  8. <build>
  9. <sourceDirectory>src</sourceDirectory>
  10. <plugins>
  11. <plugin>
  12. <artifactId>maven-compiler-plugin</artifactId>
  13. <version>3.6.1</version>
  14. <configuration>
  15. <source>1.8</source>
  16. <target>1.8</target>
  17. </configuration>
  18. </plugin>
  19. </plugins>
  20. </build>
  21. <name>sicura.entities</name>
  22. <url>http://maven.apache.org</url>
  23. <properties>
  24. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  25. </properties>
  26. <parent>
  27. <groupId>web-project</groupId>
  28. <artifactId>web-project</artifactId>
  29. <version>0.0.1-SNAPSHOT</version>
  30. </parent>
  31. <dependencies>
  32. <dependency>
  33. <groupId>junit</groupId>
  34. <artifactId>junit</artifactId>
  35. <version>3.8.1</version>
  36. <scope>test</scope>
  37. </dependency>
  38. <!-- https://mvnrepository.com/artifact/javax.ejb/ejb-api -->
  39. <dependency>
  40. <groupId>javax.ejb</groupId>
  41. <artifactId>ejb-api</artifactId>
  42. <version>3.0</version>
  43. <!-- <scope>provided</scope> -->
  44. </dependency>
  45. </dependencies>
  46. </project>