pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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.com.qmth.examcloud.service</groupId>
  7. <artifactId>core</artifactId>
  8. <version>0.1.0</version>
  9. <modules>
  10. <module>core-domain</module>
  11. <module>core-api</module>
  12. <module>core-main</module>
  13. </modules>
  14. <packaging>pom</packaging>
  15. <name>ExamCloud-service-core</name>
  16. <parent>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-parent</artifactId>
  19. <version>1.5.2.RELEASE</version>
  20. </parent>
  21. <properties>
  22. <!-- non-dependencies -->
  23. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  24. <java.version>1.8</java.version>
  25. <mysql.version>5.1.21</mysql.version>
  26. <!-- maven plugins -->
  27. <maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
  28. <maven-compiler-plugin.version>3.6.1</maven-compiler-plugin.version>
  29. <spring.boot.version>1.4.3.RELEASE</spring.boot.version>
  30. <project.version>0.1.0</project.version>
  31. </properties>
  32. <dependencyManagement>
  33. <dependencies>
  34. <dependency>
  35. <groupId>mysql</groupId>
  36. <artifactId>mysql-connector-java</artifactId>
  37. <version>${mysql.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.cloud</groupId>
  41. <artifactId>spring-cloud-dependencies</artifactId>
  42. <version>Camden.SR3</version>
  43. <type>pom</type>
  44. <scope>import</scope>
  45. </dependency>
  46. </dependencies>
  47. </dependencyManagement>
  48. <build>
  49. <plugins>
  50. <plugin>
  51. <groupId>org.apache.maven.plugins</groupId>
  52. <artifactId>maven-surefire-plugin</artifactId>
  53. </plugin>
  54. <plugin>
  55. <groupId>org.apache.maven.plugins</groupId>
  56. <artifactId>maven-compiler-plugin</artifactId>
  57. </plugin>
  58. </plugins>
  59. <pluginManagement>
  60. <plugins>
  61. <plugin>
  62. <groupId>org.apache.maven.plugins</groupId>
  63. <artifactId>maven-surefire-plugin</artifactId>
  64. <version>${maven-surefire-plugin.version}</version>
  65. <configuration>
  66. <testFailureIgnore>true</testFailureIgnore>
  67. <skipTests>true</skipTests>
  68. </configuration>
  69. </plugin>
  70. <plugin>
  71. <groupId>org.apache.maven.plugins</groupId>
  72. <artifactId>maven-compiler-plugin</artifactId>
  73. <version>${maven-compiler-plugin.version}</version>
  74. <configuration>
  75. <source>1.8</source>
  76. <target>1.8</target>
  77. <compilerArgument>-proc:none</compilerArgument>
  78. </configuration>
  79. </plugin>
  80. </plugins>
  81. </pluginManagement>
  82. </build>
  83. </project>