dependency-reduced-pom.xml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.fdkankan.model</groupId>
  5. <artifactId>4dkankan-utils-model-demo</artifactId>
  6. <name>4dkankan-utils-model-demo</name>
  7. <version>1.0-SNAPSHOT</version>
  8. <url>http://www.example.com</url>
  9. <build>
  10. <finalName>${artifactId}</finalName>
  11. <plugins>
  12. <plugin>
  13. <artifactId>maven-shade-plugin</artifactId>
  14. <version>2.4.1</version>
  15. <executions>
  16. <execution>
  17. <phase>package</phase>
  18. <goals>
  19. <goal>shade</goal>
  20. </goals>
  21. <configuration>
  22. <transformers>
  23. <transformer>
  24. <mainClass>com.fdkankan.modeldemo.utils.CutImgUtil</mainClass>
  25. </transformer>
  26. </transformers>
  27. </configuration>
  28. </execution>
  29. </executions>
  30. </plugin>
  31. <plugin>
  32. <artifactId>maven-compiler-plugin</artifactId>
  33. <configuration>
  34. <source>8</source>
  35. <target>8</target>
  36. </configuration>
  37. </plugin>
  38. </plugins>
  39. </build>
  40. <repositories>
  41. <repository>
  42. <id>releases</id>
  43. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
  44. </repository>
  45. <repository>
  46. <id>snapshots</id>
  47. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
  48. </repository>
  49. <repository>
  50. <id>nexus-aliyun</id>
  51. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  52. </repository>
  53. </repositories>
  54. <dependencies>
  55. <dependency>
  56. <groupId>org.projectlombok</groupId>
  57. <artifactId>lombok</artifactId>
  58. <version>1.18.20</version>
  59. <scope>provided</scope>
  60. </dependency>
  61. </dependencies>
  62. <distributionManagement>
  63. <repository>
  64. <id>releases</id>
  65. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
  66. </repository>
  67. <snapshotRepository>
  68. <id>snapshots</id>
  69. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
  70. </snapshotRepository>
  71. </distributionManagement>
  72. <properties>
  73. <maven.compiler.source>1.7</maven.compiler.source>
  74. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  75. <maven.compiler.target>1.7</maven.compiler.target>
  76. </properties>
  77. </project>