pom.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.6.4</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.example</groupId>
  12. <artifactId>demo</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>SmartBowBusinessServer</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-test</artifactId>
  27. <scope>test</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.alibaba</groupId>
  31. <artifactId>easyexcel</artifactId>
  32. <version>3.1.1</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>pers.jc</groupId>
  36. <artifactId>JCEngine</artifactId>
  37. <version>1.0</version>
  38. <scope>system</scope>
  39. <systemPath>${project.basedir}/lib/JCEngine.jar</systemPath>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.jdom</groupId>
  43. <artifactId>jdom2</artifactId>
  44. <version>2.0.6</version>
  45. </dependency>
  46. </dependencies>
  47. <build>
  48. <finalName>SmartBowBusinessServer</finalName>
  49. <plugins>
  50. <plugin>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-maven-plugin</artifactId>
  53. <configuration>
  54. <includeSystemScope>true</includeSystemScope>
  55. </configuration>
  56. </plugin>
  57. </plugins>
  58. </build>
  59. </project>