pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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>junit</groupId>
  19. <artifactId>junit</artifactId>
  20. <version>4.11</version>
  21. <scope>test</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.jfinal</groupId>
  25. <artifactId>jfinal-undertow</artifactId>
  26. <version>2.2</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.jfinal</groupId>
  30. <artifactId>jfinal</artifactId>
  31. <version>4.9.02</version>
  32. </dependency>
  33. <!--mysql驱动包-->
  34. <dependency>
  35. <groupId>mysql</groupId>
  36. <artifactId>mysql-connector-java</artifactId>
  37. <version>8.0.12</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.alibaba</groupId>
  41. <artifactId>druid</artifactId>
  42. <version>1.1.6</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.alibaba</groupId>
  46. <artifactId>fastjson</artifactId>
  47. <version>1.2.28</version>
  48. </dependency>
  49. </dependencies>
  50. <build>
  51. <finalName>ethereum_viewer_interface</finalName>
  52. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  53. <plugins>
  54. <plugin>
  55. <artifactId>maven-clean-plugin</artifactId>
  56. <version>3.1.0</version>
  57. </plugin>
  58. <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging -->
  59. <plugin>
  60. <artifactId>maven-resources-plugin</artifactId>
  61. <version>3.0.2</version>
  62. </plugin>
  63. <plugin>
  64. <artifactId>maven-compiler-plugin</artifactId>
  65. <version>3.8.0</version>
  66. </plugin>
  67. <plugin>
  68. <artifactId>maven-surefire-plugin</artifactId>
  69. <version>2.22.1</version>
  70. </plugin>
  71. <plugin>
  72. <artifactId>maven-war-plugin</artifactId>
  73. <version>3.2.2</version>
  74. </plugin>
  75. <plugin>
  76. <artifactId>maven-install-plugin</artifactId>
  77. <version>2.5.2</version>
  78. </plugin>
  79. <plugin>
  80. <artifactId>maven-deploy-plugin</artifactId>
  81. <version>2.8.2</version>
  82. </plugin>
  83. </plugins>
  84. </pluginManagement>
  85. <plugins>
  86. <plugin>
  87. <groupId>org.apache.maven.plugins</groupId>
  88. <artifactId>maven-compiler-plugin</artifactId>
  89. <configuration>
  90. <source>8</source>
  91. <target>8</target>
  92. </configuration>
  93. </plugin>
  94. </plugins>
  95. </build>
  96. </project>