pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>org.example</groupId>
  6. <artifactId>ethereum_viewer_interface</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <packaging>war</packaging>
  9. <name>ethereum viewer interface</name>
  10. <url>http://www.example.com</url>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <maven.compiler.source>1.7</maven.compiler.source>
  14. <maven.compiler.target>1.7</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.jfinal</groupId>
  19. <artifactId>jfinal-undertow</artifactId>
  20. <version>2.2</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.jfinal</groupId>
  24. <artifactId>jfinal</artifactId>
  25. <version>5.0.5</version>
  26. </dependency>
  27. <!--mysql驱动包-->
  28. <dependency>
  29. <groupId>mysql</groupId>
  30. <artifactId>mysql-connector-java</artifactId>
  31. <version>8.0.12</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.alibaba</groupId>
  35. <artifactId>druid</artifactId>
  36. <version>1.1.6</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.alibaba</groupId>
  40. <artifactId>fastjson</artifactId>
  41. <version>1.2.28</version>
  42. </dependency>
  43. </dependencies>
  44. <build>
  45. <finalName>ethereum_viewer_interface</finalName>
  46. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  47. <plugins>
  48. <plugin>
  49. <artifactId>maven-clean-plugin</artifactId>
  50. <version>3.1.0</version>
  51. </plugin>
  52. <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging -->
  53. <plugin>
  54. <artifactId>maven-resources-plugin</artifactId>
  55. <version>3.0.2</version>
  56. </plugin>
  57. <plugin>
  58. <artifactId>maven-compiler-plugin</artifactId>
  59. <version>3.8.0</version>
  60. </plugin>
  61. <plugin>
  62. <artifactId>maven-surefire-plugin</artifactId>
  63. <version>2.22.1</version>
  64. </plugin>
  65. <plugin>
  66. <artifactId>maven-war-plugin</artifactId>
  67. <version>3.2.2</version>
  68. </plugin>
  69. <plugin>
  70. <artifactId>maven-install-plugin</artifactId>
  71. <version>2.5.2</version>
  72. </plugin>
  73. <plugin>
  74. <artifactId>maven-deploy-plugin</artifactId>
  75. <version>2.8.2</version>
  76. </plugin>
  77. </plugins>
  78. </pluginManagement>
  79. <plugins>
  80. <plugin>
  81. <groupId>org.apache.maven.plugins</groupId>
  82. <artifactId>maven-compiler-plugin</artifactId>
  83. <configuration>
  84. <source>8</source>
  85. <target>8</target>
  86. </configuration>
  87. </plugin>
  88. </plugins>
  89. </build>
  90. </project>