pom.xml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <packaging>war</packaging>
  6. <name>liug</name>
  7. <groupId>com.lsw</groupId>
  8. <artifactId>com.lsw</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. <dependencies>
  11. <dependency>
  12. <groupId>com.jfinal</groupId>
  13. <artifactId>jfinal</artifactId>
  14. <version>5.0.0</version>
  15. </dependency>
  16. <!-- jetty -->
  17. <dependency>
  18. <groupId>com.jfinal</groupId>
  19. <artifactId>jetty-server</artifactId>
  20. <version>2019.3</version>
  21. <scope>compile</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.alibaba</groupId>
  25. <artifactId>fastjson</artifactId>
  26. <version>1.2.76</version>
  27. </dependency>
  28. <!--druid连接池 -->
  29. <dependency>
  30. <groupId>com.alibaba</groupId>
  31. <artifactId>druid</artifactId>
  32. <version>1.0.18</version>
  33. </dependency>
  34. <!-- 日志 -->
  35. <dependency>
  36. <groupId>log4j</groupId>
  37. <artifactId>log4j</artifactId>
  38. <version>1.2.17</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.slf4j</groupId>
  42. <artifactId>slf4j-log4j12</artifactId>
  43. <version>1.7.21</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.oracle.database.jdbc</groupId>
  47. <artifactId>ojdbc8</artifactId>
  48. <version>21.1.0.0</version>
  49. <scope>runtime</scope>
  50. </dependency>
  51. <!-- easyexcel -->
  52. <dependency>
  53. <groupId>com.alibaba</groupId>
  54. <artifactId>easyexcel</artifactId>
  55. <version>3.1.1</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.apache.ant</groupId>
  59. <artifactId>ant</artifactId>
  60. <version>1.9.4</version>
  61. </dependency>
  62. </dependencies>
  63. <build>
  64. <finalName>liug</finalName>
  65. <plugins>
  66. <plugin>
  67. <groupId>org.apache.maven.plugins</groupId>
  68. <artifactId>maven-compiler-plugin</artifactId>
  69. <configuration>
  70. <source>8</source>
  71. <target>8</target>
  72. </configuration>
  73. </plugin>
  74. </plugins>
  75. </build>
  76. <description>柳工</description>
  77. </project>