pom.xml 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. </dependencies>
  45. <build>
  46. <finalName>ETH_Web</finalName>
  47. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  48. <plugins>
  49. <plugin>
  50. <artifactId>maven-clean-plugin</artifactId>
  51. <version>3.1.0</version>
  52. </plugin>
  53. <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging -->
  54. <plugin>
  55. <artifactId>maven-resources-plugin</artifactId>
  56. <version>3.0.2</version>
  57. </plugin>
  58. <plugin>
  59. <artifactId>maven-compiler-plugin</artifactId>
  60. <version>3.8.0</version>
  61. </plugin>
  62. <plugin>
  63. <artifactId>maven-surefire-plugin</artifactId>
  64. <version>2.22.1</version>
  65. </plugin>
  66. <plugin>
  67. <artifactId>maven-war-plugin</artifactId>
  68. <version>3.2.2</version>
  69. </plugin>
  70. <plugin>
  71. <artifactId>maven-install-plugin</artifactId>
  72. <version>2.5.2</version>
  73. </plugin>
  74. <plugin>
  75. <artifactId>maven-deploy-plugin</artifactId>
  76. <version>2.8.2</version>
  77. </plugin>
  78. </plugins>
  79. </pluginManagement>
  80. </build>
  81. </project>