pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>tofly-njsw</artifactId>
  7. <groupId>com.tofly</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>dispatch-manage</artifactId>
  12. <description>调度管理</description>
  13. <properties>
  14. <maven.compiler.source>8</maven.compiler.source>
  15. <maven.compiler.target>8</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.tofly</groupId>
  20. <artifactId>njsw-admin-api</artifactId>
  21. <version>1.0.0</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.tofly</groupId>
  25. <artifactId>common-ftp</artifactId>
  26. <version>1.0.3</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.tofly</groupId>
  30. <artifactId>common-redis</artifactId>
  31. <version>1.0.3</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.haiqiu.excel</groupId>
  35. <artifactId>hq-excel</artifactId>
  36. <version>0.0.1</version>
  37. <scope>system</scope>
  38. <systemPath>${project.basedir}/src/main/resources/lib/hq-excel-1.0-SNAPSHOT.jar</systemPath>
  39. </dependency>
  40. </dependencies>
  41. <build>
  42. <plugins>
  43. <plugin>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-maven-plugin</artifactId>
  46. <executions>
  47. <execution>
  48. <goals>
  49. <goal>repackage</goal>
  50. </goals>
  51. </execution>
  52. </executions>
  53. </plugin>
  54. </plugins>
  55. </build>
  56. </project>