pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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.4.3.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>Brixton.RELEASE</version>
  41. <type>pom</type>
  42. <scope>import</scope>
  43. </dependency>
  44. </dependencies>
  45. </dependencyManagement>
  46. <build>
  47. <plugins>
  48. <plugin>
  49. <groupId>org.apache.maven.plugins</groupId>
  50. <artifactId>maven-surefire-plugin</artifactId>
  51. </plugin>
  52. <plugin>
  53. <groupId>org.apache.maven.plugins</groupId>
  54. <artifactId>maven-compiler-plugin</artifactId>
  55. </plugin>
  56. </plugins>
  57. <pluginManagement>
  58. <plugins>
  59. <plugin>
  60. <groupId>org.apache.maven.plugins</groupId>
  61. <artifactId>maven-surefire-plugin</artifactId>
  62. <version>${maven-surefire-plugin.version}</version>
  63. <configuration>
  64. <testFailureIgnore>true</testFailureIgnore>
  65. <skipTests>true</skipTests>
  66. </configuration>
  67. </plugin>
  68. <plugin>
  69. <groupId>org.apache.maven.plugins</groupId>
  70. <artifactId>maven-compiler-plugin</artifactId>
  71. <version>${maven-compiler-plugin.version}</version>
  72. <configuration>
  73. <source>1.8</source>
  74. <target>1.8</target>
  75. <compilerArgument>-proc:none</compilerArgument>
  76. </configuration>
  77. </plugin>
  78. </plugins>
  79. </pluginManagement>
  80. </build>
  81. </project>