dependency-reduced-pom.xml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. <parent>
  4. <artifactId>ehr-lib-parent</artifactId>
  5. <groupId>com.yihu.ehr</groupId>
  6. <version>1.2.0</version>
  7. <relativePath>../ehr-lib-parent/pom.xml</relativePath>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>commons-ui-swagger</artifactId>
  11. <build>
  12. <plugins>
  13. <plugin>
  14. <artifactId>maven-shade-plugin</artifactId>
  15. <version>2.4.1</version>
  16. <executions>
  17. <execution>
  18. <phase>package</phase>
  19. <goals>
  20. <goal>shade</goal>
  21. </goals>
  22. <configuration>
  23. <relocations>
  24. <relocation>
  25. <pattern>com.google.guava</pattern>
  26. <shadedPattern>shaded.com.google.guava</shadedPattern>
  27. </relocation>
  28. </relocations>
  29. <transformers>
  30. <transformer />
  31. </transformers>
  32. </configuration>
  33. </execution>
  34. </executions>
  35. </plugin>
  36. </plugins>
  37. </build>
  38. </project>