pom.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. </dependencies>
  52. <build>
  53. <finalName>liug</finalName>
  54. <plugins>
  55. <plugin>
  56. <groupId>org.apache.maven.plugins</groupId>
  57. <artifactId>maven-compiler-plugin</artifactId>
  58. <configuration>
  59. <source>8</source>
  60. <target>8</target>
  61. </configuration>
  62. </plugin>
  63. </plugins>
  64. </build>
  65. <description>柳工</description>
  66. </project>