pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <artifactId>vipp</artifactId>
  6. <groupId>xgs.net</groupId>
  7. <version>1.0</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>image</artifactId>
  11. <packaging>war</packaging>
  12. <name>image Maven Webapp</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.8</maven.compiler.source>
  18. <maven.compiler.target>1.8</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. <dependency>
  28. <groupId>com.jfinal</groupId>
  29. <artifactId>jfinal</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.jfinal</groupId>
  33. <artifactId>cos</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>xgs.net</groupId>
  37. <artifactId>utils</artifactId>
  38. <version>1.0</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>net.coobird</groupId>
  42. <artifactId>thumbnailator</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>xgs.net</groupId>
  46. <artifactId>ioc</artifactId>
  47. <version>1.0</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>xgs.net</groupId>
  51. <artifactId>core</artifactId>
  52. <version>1.0</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>redis.clients</groupId>
  56. <artifactId>jedis</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.commons</groupId>
  60. <artifactId>commons-pool2</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.slf4j</groupId>
  64. <artifactId>slf4j-api</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>ch.qos.logback</groupId>
  68. <artifactId>logback-core</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>ch.qos.logback</groupId>
  72. <artifactId>logback-classic</artifactId>
  73. </dependency>
  74. </dependencies>
  75. <build>
  76. <finalName>image</finalName>
  77. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  78. <plugins>
  79. <plugin>
  80. <artifactId>maven-clean-plugin</artifactId>
  81. <version>3.0.0</version>
  82. </plugin>
  83. <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging -->
  84. <plugin>
  85. <artifactId>maven-resources-plugin</artifactId>
  86. <version>3.0.2</version>
  87. </plugin>
  88. <plugin>
  89. <artifactId>maven-compiler-plugin</artifactId>
  90. <version>3.7.0</version>
  91. </plugin>
  92. <plugin>
  93. <artifactId>maven-surefire-plugin</artifactId>
  94. <version>2.20.1</version>
  95. </plugin>
  96. <plugin>
  97. <artifactId>maven-war-plugin</artifactId>
  98. <version>3.2.0</version>
  99. </plugin>
  100. <plugin>
  101. <artifactId>maven-install-plugin</artifactId>
  102. <version>2.5.2</version>
  103. </plugin>
  104. <plugin>
  105. <artifactId>maven-deploy-plugin</artifactId>
  106. <version>2.8.2</version>
  107. </plugin>
  108. </plugins>
  109. </pluginManagement>
  110. </build>
  111. </project>