pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. </properties>
  11. <parent>
  12. <groupId>cn.iselab</groupId>
  13. <artifactId>iselab-parent</artifactId>
  14. <version>1.0.1</version>
  15. </parent>
  16. <dependencies>
  17. <dependency>
  18. <groupId>cn.iselab</groupId>
  19. <artifactId>commons-lang</artifactId>
  20. <version>1.0.1</version>
  21. </dependency>
  22. <!--&lt;!&ndash; https://mvnrepository.com/artifact/org.apache.poi/poi &ndash;&gt;-->
  23. <!--<dependency>-->
  24. <!--<groupId>org.apache.poi</groupId>-->
  25. <!--<artifactId>poi</artifactId>-->
  26. <!--<version>3.9</version>-->
  27. <!--</dependency>-->
  28. <dependency>
  29. <groupId>org.apache.poi</groupId>
  30. <artifactId>poi-ooxml</artifactId>
  31. <version>3.15</version>
  32. </dependency>
  33. <!--<dependency>-->
  34. <!--<groupId>org.apache.poi</groupId>-->
  35. <!--<artifactId>poi-ooxml-schemas</artifactId>-->
  36. <!--<version>3.9</version>-->
  37. <!--</dependency>-->
  38. <dependency>
  39. <groupId>cn.iselab</groupId>
  40. <artifactId>commons-spring</artifactId>
  41. <version>1.0.3</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.taocoder</groupId>
  45. <artifactId>ourea-core</artifactId>
  46. <version>0.0.7</version>
  47. <exclusions>
  48. <exclusion>
  49. <groupId>ch.qos.logback</groupId>
  50. <artifactId>logback-classic</artifactId>
  51. </exclusion>
  52. <exclusion>
  53. <groupId>ch.qos.logback</groupId>
  54. <artifactId>logback-core</artifactId>
  55. </exclusion>
  56. </exclusions>
  57. </dependency>
  58. </dependencies>
  59. <modules>
  60. <module>mooctest-site-common</module>
  61. <module>mooctest-site-client</module>
  62. <module>mooctest-site-server</module>
  63. <module>mooctest-site-job</module>
  64. </modules>
  65. </project>