pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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. <parent>
  6. <artifactId>vipp</artifactId>
  7. <groupId>xgs.net</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>api</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.jfinal</groupId>
  15. <artifactId>jfinal</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>xgs.net</groupId>
  19. <artifactId>core</artifactId>
  20. <version>1.0</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>javax.servlet</groupId>
  24. <artifactId>javax.servlet-api</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>io.undertow</groupId>
  28. <artifactId>undertow-servlet</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.eclipse.jetty</groupId>
  32. <artifactId>jetty-server</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.eclipse.jetty</groupId>
  36. <artifactId>jetty-webapp</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.eclipse.jetty</groupId>
  40. <artifactId>jetty-jsp</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>redis.clients</groupId>
  44. <artifactId>jedis</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.apache.commons</groupId>
  48. <artifactId>commons-pool2</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>xgs.net</groupId>
  52. <artifactId>rbac</artifactId>
  53. <version>1.0</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>xgs.net</groupId>
  57. <artifactId>mvc</artifactId>
  58. <version>1.0</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>xgs.net</groupId>
  62. <artifactId>utils</artifactId>
  63. <version>1.0</version>
  64. </dependency>
  65. </dependencies>
  66. <build>
  67. <plugins>
  68. <plugin>
  69. <groupId>org.apache.maven.plugins</groupId>
  70. <artifactId>maven-jar-plugin</artifactId>
  71. <configuration>
  72. <archive>
  73. <manifest>
  74. <addClasspath>true</addClasspath>
  75. <classpathPrefix>lib/</classpathPrefix>
  76. <mainClass>xgs.net.ApiStart</mainClass>
  77. </manifest>
  78. </archive>
  79. </configuration>
  80. </plugin>
  81. <plugin>
  82. <groupId>org.apache.maven.plugins</groupId>
  83. <artifactId>maven-dependency-plugin</artifactId>
  84. <executions>
  85. <execution>
  86. <id>copy</id>
  87. <phase>install</phase>
  88. <goals>
  89. <goal>copy-dependencies</goal>
  90. </goals>
  91. <configuration>
  92. <outputDirectory>${project.build.directory}/lib/</outputDirectory>
  93. </configuration>
  94. </execution>
  95. </executions>
  96. </plugin>
  97. </plugins>
  98. </build>
  99. </project>