Brak opisu

pom.xml 2.1KB

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