pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. <parent>
  5. <artifactId>examcloud-core-questions</artifactId>
  6. <groupId>cn.com.qmth.examcloud.core.questions</groupId>
  7. <version>2.0-SNAPSHOT</version>
  8. </parent>
  9. <groupId>cn.com.qmth.examcloud.core.questions</groupId>
  10. <artifactId>examcloud-core-questions-api-client</artifactId>
  11. <version>2.0-SNAPSHOT</version>
  12. <name>examcloud-core-questions-api-client</name>
  13. <!-- FIXME change it to the project's website -->
  14. <url>http://www.example.com</url>
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <maven.compiler.source>1.7</maven.compiler.source>
  18. <maven.compiler.target>1.7</maven.compiler.target>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>junit</groupId>
  23. <artifactId>junit</artifactId>
  24. <version>4.11</version>
  25. <scope>test</scope>
  26. </dependency>
  27. </dependencies>
  28. <build>
  29. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  30. <plugins>
  31. <plugin>
  32. <artifactId>maven-clean-plugin</artifactId>
  33. <version>3.0.0</version>
  34. </plugin>
  35. <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  36. <plugin>
  37. <artifactId>maven-resources-plugin</artifactId>
  38. <version>3.0.2</version>
  39. </plugin>
  40. <plugin>
  41. <artifactId>maven-compiler-plugin</artifactId>
  42. <version>3.7.0</version>
  43. </plugin>
  44. <plugin>
  45. <artifactId>maven-surefire-plugin</artifactId>
  46. <version>2.20.1</version>
  47. </plugin>
  48. <plugin>
  49. <artifactId>maven-jar-plugin</artifactId>
  50. <version>3.0.2</version>
  51. </plugin>
  52. <plugin>
  53. <artifactId>maven-install-plugin</artifactId>
  54. <version>2.5.2</version>
  55. </plugin>
  56. <plugin>
  57. <artifactId>maven-deploy-plugin</artifactId>
  58. <version>2.8.2</version>
  59. </plugin>
  60. </plugins>
  61. </pluginManagement>
  62. </build>
  63. </project>