pom.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>cn.iselab.mooctest</groupId>
  7. <artifactId>mooctest-user</artifactId>
  8. <packaging>pom</packaging>
  9. <version>0.0.1</version>
  10. <properties>
  11. <spring.boot.version>1.3.8.RELEASE</spring.boot.version>
  12. <maven.compiler.source>1.8</maven.compiler.source>
  13. <maven.compiler.target>1.8</maven.compiler.target>
  14. </properties>
  15. <parent>
  16. <groupId>cn.iselab</groupId>
  17. <artifactId>iselab-parent</artifactId>
  18. <version>1.0.1</version>
  19. </parent>
  20. <dependencies>
  21. <dependency>
  22. <groupId>cn.iselab</groupId>
  23. <artifactId>commons-lang</artifactId>
  24. <version>1.0.1</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>cn.iselab</groupId>
  28. <artifactId>commons-spring</artifactId>
  29. <version>1.0.4</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.taocoder</groupId>
  33. <artifactId>ourea-core</artifactId>
  34. <version>0.0.9</version>
  35. <exclusions>
  36. <exclusion>
  37. <groupId>org.slf4j</groupId>
  38. <artifactId>slf4j-api</artifactId>
  39. </exclusion>
  40. <exclusion>
  41. <groupId>ch.qos.logback</groupId>
  42. <artifactId>logback-classic</artifactId>
  43. </exclusion>
  44. <exclusion>
  45. <groupId>ch.qos.logback</groupId>
  46. <artifactId>logback-core</artifactId>
  47. </exclusion>
  48. </exclusions>
  49. </dependency>
  50. </dependencies>
  51. <modules>
  52. <module>mooctest-user-common</module>
  53. <module>mooctest-user-client</module>
  54. <module>mooctest-user-server</module>
  55. <module>mooctest-user-job</module>
  56. </modules>
  57. </project>