pom.xml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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>cn.iselab.mooctest</groupId>
  5. <artifactId>mooctest-site</artifactId>
  6. <packaging>pom</packaging>
  7. <version>0.0.1</version>
  8. <properties>
  9. <spring.boot.version>1.3.8.RELEASE</spring.boot.version>
  10. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  11. </properties>
  12. <parent>
  13. <groupId>cn.iselab</groupId>
  14. <artifactId>iselab-parent</artifactId>
  15. <version>1.0.1</version>
  16. </parent>
  17. <dependencyManagement>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.cloud</groupId>
  21. <artifactId>spring-cloud-dependencies</artifactId>
  22. <version>Brixton.RELEASE</version>
  23. <type>pom</type>
  24. <scope>import</scope>
  25. </dependency>
  26. </dependencies>
  27. </dependencyManagement>
  28. <dependencies>
  29. <dependency>
  30. <groupId>cn.iselab</groupId>
  31. <artifactId>commons-lang</artifactId>
  32. <version>1.0.1</version>
  33. </dependency>
  34. <!--&lt;!&ndash; https://mvnrepository.com/artifact/org.apache.poi/poi &ndash;&gt;-->
  35. <!--<dependency>-->
  36. <!--<groupId>org.apache.poi</groupId>-->
  37. <!--<artifactId>poi</artifactId>-->
  38. <!--<version>3.9</version>-->
  39. <!--</dependency>-->
  40. <dependency>
  41. <groupId>org.apache.poi</groupId>
  42. <artifactId>poi-ooxml</artifactId>
  43. <version>3.15</version>
  44. </dependency>
  45. <!--<dependency>-->
  46. <!--<groupId>org.apache.poi</groupId>-->
  47. <!--<artifactId>poi-ooxml-schemas</artifactId>-->
  48. <!--<version>3.9</version>-->
  49. <!--</dependency>-->
  50. <dependency>
  51. <groupId>cn.iselab</groupId>
  52. <artifactId>commons-spring</artifactId>
  53. <version>1.0.3</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.taocoder</groupId>
  57. <artifactId>ourea-core</artifactId>
  58. <version>0.0.7</version>
  59. <exclusions>
  60. <exclusion>
  61. <groupId>ch.qos.logback</groupId>
  62. <artifactId>logback-classic</artifactId>
  63. </exclusion>
  64. <exclusion>
  65. <groupId>ch.qos.logback</groupId>
  66. <artifactId>logback-core</artifactId>
  67. </exclusion>
  68. </exclusions>
  69. </dependency>
  70. </dependencies>
  71. <modules>
  72. <module>mooctest-site-common</module>
  73. <module>mooctest-site-client</module>
  74. <module>mooctest-site-server</module>
  75. <module>mooctest-site-job</module>
  76. </modules>
  77. </project>