pom.xml 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. 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>com.qmth.cqb</groupId>
  5. <artifactId>comm-ques-bank</artifactId>
  6. <version>0.1.0</version>
  7. <parent>
  8. <groupId>org.springframework.boot</groupId>
  9. <artifactId>spring-boot-starter-parent</artifactId>
  10. <version>1.5.2.RELEASE</version>
  11. </parent>
  12. <modules>
  13. <module>cqb-starter</module>
  14. <module>cqb-question-resource</module>
  15. <module>cqb-base</module>
  16. <module>cqb-gen-paper</module>
  17. <module>cqb-flow-core</module>
  18. <module>cqb-flow-college</module>
  19. <module>cqb-flow-zk</module>
  20. <module>cqb-comm-utils</module>
  21. <module>cqb-paper</module>
  22. </modules>
  23. <packaging>pom</packaging>
  24. <name>comm-ques-bank</name>
  25. <properties>
  26. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  27. <spring.boot.version>1.4.3.RELEASE</spring.boot.version>
  28. <project.version>0.1.0</project.version>
  29. <maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
  30. <maven-compiler-plugin.version>3.3</maven-compiler-plugin.version>
  31. <swagger-version>2.6.1</swagger-version>
  32. </properties>
  33. <dependencies>
  34. </dependencies>
  35. <dependencyManagement>
  36. <dependencies>
  37. <dependency>
  38. <groupId>org.springframework.cloud</groupId>
  39. <artifactId>spring-cloud-dependencies</artifactId>
  40. <version>Camden.SR3</version>
  41. <type>pom</type>
  42. <scope>import</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>cn.com.qmth.examcloud.common</groupId>
  46. <artifactId>common-uac</artifactId>
  47. <version>${project.version}</version>
  48. </dependency>
  49. </dependencies>
  50. </dependencyManagement>
  51. <build>
  52. <plugins>
  53. <plugin>
  54. <groupId>org.apache.maven.plugins</groupId>
  55. <artifactId>maven-surefire-plugin</artifactId>
  56. </plugin>
  57. <plugin>
  58. <groupId>org.apache.maven.plugins</groupId>
  59. <artifactId>maven-compiler-plugin</artifactId>
  60. </plugin>
  61. </plugins>
  62. <pluginManagement>
  63. <plugins>
  64. <plugin>
  65. <groupId>org.apache.maven.plugins</groupId>
  66. <artifactId>maven-surefire-plugin</artifactId>
  67. <version>${maven-surefire-plugin.version}</version>
  68. <configuration>
  69. <testFailureIgnore>true</testFailureIgnore>
  70. <skipTests>true</skipTests>
  71. </configuration>
  72. </plugin>
  73. <plugin>
  74. <groupId>org.apache.maven.plugins</groupId>
  75. <artifactId>maven-compiler-plugin</artifactId>
  76. <version>${maven-compiler-plugin.version}</version>
  77. <configuration>
  78. <source>1.8</source>
  79. <target>1.8</target>
  80. <compilerArgument>-proc:none</compilerArgument>
  81. </configuration>
  82. </plugin>
  83. </plugins>
  84. </pluginManagement>
  85. </build>
  86. </project>