pom.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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>fframwork</artifactId>-->
  7. <!--<groupId>com.tofly</groupId>-->
  8. <!--<version>1.0</version>-->
  9. <!--</parent>-->
  10. <parent>
  11. <groupId>com.tofly</groupId>
  12. <artifactId>tofly-webParent</artifactId>
  13. <version>1.0.0</version>
  14. </parent>
  15. <modelVersion>4.0.0</modelVersion>
  16. <artifactId>tofly-sxgk</artifactId>
  17. <groupId>com.tofly</groupId>
  18. <version>1.0-SNAPSHOT</version>
  19. <packaging>jar</packaging>
  20. <properties>
  21. <thumbnailator.version>0.4.2</thumbnailator.version>
  22. </properties>
  23. <dependencies>
  24. <!--<dependency>-->
  25. <!--<groupId>com.tofly</groupId>-->
  26. <!--<artifactId>common-ftp</artifactId>-->
  27. <!--<version>1.0.0</version>-->
  28. <!--</dependency>-->
  29. <dependency>
  30. <groupId>com.tofly</groupId>
  31. <artifactId>common-redis</artifactId>
  32. <version>1.0.0</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>net.coobird</groupId>
  36. <artifactId>thumbnailator</artifactId>
  37. <version>${thumbnailator.version}</version>
  38. </dependency>
  39. </dependencies>
  40. <build>
  41. <plugins>
  42. <plugin>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-maven-plugin</artifactId>
  45. <executions>
  46. <execution>
  47. <goals>
  48. <goal>repackage</goal>
  49. </goals>
  50. </execution>
  51. </executions>
  52. </plugin>
  53. </plugins>
  54. </build>
  55. </project>