No Description

pom.xml 2.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>com.sharemao.web</groupId>
  4. <artifactId>fe</artifactId>
  5. <version>1.0</version>
  6. <packaging>war</packaging>
  7. <properties>
  8. <maven.compiler.source>1.8</maven.compiler.source>
  9. <maven.compiler.target>1.8</maven.compiler.target>
  10. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  11. </properties>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.nianzai.base.dao</groupId>
  15. <artifactId>micro-dao-framework</artifactId>
  16. <version>1.0.2.1</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.nianzai.base.mvc</groupId>
  20. <artifactId>micro-mvc-framework</artifactId>
  21. <version>1.0.5</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.caucho</groupId>
  25. <artifactId>hessian</artifactId>
  26. <version>4.0.60</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.sharemao.rpc</groupId>
  30. <artifactId>mifi</artifactId>
  31. <version>1.0.1</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.sharemao.rpc</groupId>
  35. <artifactId>simp</artifactId>
  36. <version>1.0</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.sharemao.rpc</groupId>
  40. <artifactId>base</artifactId>
  41. <version>1.0</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>cn.hutool</groupId>
  45. <artifactId>hutool-all</artifactId>
  46. <version>5.6.5</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>redis.clients</groupId>
  50. <artifactId>jedis</artifactId>
  51. <version>3.7.0</version>
  52. </dependency>
  53. </dependencies>
  54. <build>
  55. <finalName>fe</finalName>
  56. <plugins>
  57. <plugin>
  58. <groupId>org.eclipse.jetty</groupId>
  59. <artifactId>jetty-maven-plugin</artifactId>
  60. <version>9.2.8.v20150217</version>
  61. </plugin>
  62. </plugins>
  63. </build>
  64. </project>