pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>sicura.business</groupId>
  4. <artifactId>sicura.business</artifactId>
  5. <version>0.0.1-SNAPSHOT</version>
  6. <packaging>jar</packaging>
  7. <build>
  8. <sourceDirectory>src</sourceDirectory>
  9. <plugins>
  10. <plugin>
  11. <artifactId>maven-compiler-plugin</artifactId>
  12. <version>3.6.1</version>
  13. <configuration>
  14. <source>1.8</source>
  15. <target>1.8</target>
  16. </configuration>
  17. </plugin>
  18. </plugins>
  19. </build>
  20. <repositories>
  21. <repository>
  22. <id>spring-snapshots</id>
  23. <name>Spring Snapshots</name>
  24. <url>https://repo.spring.io/libs-snapshot</url>
  25. <snapshots>
  26. <enabled>true</enabled>
  27. </snapshots>
  28. </repository>
  29. </repositories>
  30. <parent>
  31. <groupId>web-project</groupId>
  32. <artifactId>web-project</artifactId>
  33. <version>0.0.1-SNAPSHOT</version>
  34. </parent>
  35. <dependencies>
  36. <dependency>
  37. <groupId>sicura.entities</groupId>
  38. <artifactId>sicura.entities</artifactId>
  39. <version>0.0.1-SNAPSHOT</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>web.common</groupId>
  43. <artifactId>web.common</artifactId>
  44. <version>0.0.1-SNAPSHOT</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.ldap</groupId>
  48. <artifactId>spring-ldap-core</artifactId>
  49. <version>2.3.2.BUILD-SNAPSHOT</version>
  50. </dependency>
  51. </dependencies>
  52. </project>