pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.slodon.smartid</groupId>
  6. <artifactId>smartid</artifactId>
  7. <version>0.1.0-SNAPSHOT</version>
  8. <packaging>pom</packaging>
  9. <name>smartid</name>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  13. <maven.compiler.target>1.8</maven.compiler.target>
  14. <maven.compiler.source>1.8</maven.compiler.source>
  15. <junit.version>4.12</junit.version>
  16. <maven.test.skip>true</maven.test.skip>
  17. </properties>
  18. <dependencyManagement>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.slodon.smartid</groupId>
  22. <artifactId>smartid-base</artifactId>
  23. <version>${project.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.slodon.smartid</groupId>
  27. <artifactId>smartid-client</artifactId>
  28. <version>${project.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>junit</groupId>
  32. <artifactId>junit</artifactId>
  33. <version>${junit.version}</version>
  34. <scope>test</scope>
  35. </dependency>
  36. </dependencies>
  37. </dependencyManagement>
  38. <modules>
  39. <module>smartid-server</module>
  40. <module>smartid-client</module>
  41. <module>smartid-base</module>
  42. </modules>
  43. </project>