rocketmq-slf4j-api-1.0.1.pom 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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>rocketmq-logging</artifactId>
  5. <groupId>io.github.aliyunmq</groupId>
  6. <version>1.0.1</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>rocketmq-slf4j-api</artifactId>
  10. <name>slf4j</name>
  11. <url>http://maven.apache.org</url>
  12. <build>
  13. <plugins>
  14. <plugin>
  15. <artifactId>maven-shade-plugin</artifactId>
  16. <version>${maven-shade-plugin.version}</version>
  17. <executions>
  18. <execution>
  19. <phase>package</phase>
  20. <goals>
  21. <goal>shade</goal>
  22. </goals>
  23. <configuration>
  24. <minimizeJar>false</minimizeJar>
  25. <createSourcesJar>true</createSourcesJar>
  26. <shadeSourcesContent>true</shadeSourcesContent>
  27. <transformers>
  28. <transformer />
  29. </transformers>
  30. <relocations>
  31. <relocation>
  32. <pattern>org.slf4j</pattern>
  33. <shadedPattern>${shade-prefix}.org.slf4j</shadedPattern>
  34. </relocation>
  35. </relocations>
  36. </configuration>
  37. </execution>
  38. </executions>
  39. </plugin>
  40. <plugin>
  41. <artifactId>maven-jar-plugin</artifactId>
  42. <executions>
  43. <execution>
  44. <phase>package</phase>
  45. <goals>
  46. <goal>jar</goal>
  47. </goals>
  48. <configuration>
  49. <classifier>javadoc</classifier>
  50. <classesDirectory>${project.basedir}/src/main/javadoc</classesDirectory>
  51. </configuration>
  52. </execution>
  53. </executions>
  54. </plugin>
  55. </plugins>
  56. </build>
  57. <properties>
  58. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  59. <maven.compiler.source>8</maven.compiler.source>
  60. <maven.compiler.target>8</maven.compiler.target>
  61. </properties>
  62. </project>