pom.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>cn.superdesk.libs</groupId>
  6. <artifactId>superdesk-libs</artifactId>
  7. <version>2.0.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>superdesk-libs-log</artifactId>
  10. <version>1.1.0</version>
  11. <dependencies>
  12. <dependency>
  13. <groupId>cn.superdesk.libs</groupId>
  14. <artifactId>superdesk-libs-spring</artifactId>
  15. <version>1.1.3</version>
  16. <optional>true</optional>
  17. </dependency>
  18. <dependency>
  19. <groupId>cn.superdesk.libs</groupId>
  20. <artifactId>superdesk-libs-common</artifactId>
  21. <version>${project.parent.version}</version>
  22. <optional>true</optional>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.apache.logging.log4j</groupId>
  26. <artifactId>log4j-core</artifactId>
  27. <version>2.7</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.apache.logging.log4j</groupId>
  31. <artifactId>log4j-slf4j-impl</artifactId>
  32. <version>2.7</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.slf4j</groupId>
  36. <artifactId>slf4j-api</artifactId>
  37. <version>1.7.21</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.kafka</groupId>
  41. <artifactId>kafka_2.10</artifactId>
  42. <version>${kafka.version}</version>
  43. <exclusions>
  44. <exclusion>
  45. <groupId>org.slf4j</groupId>
  46. <artifactId>slf4j-log4j12</artifactId>
  47. </exclusion>
  48. <exclusion>
  49. <groupId>org.slf4j</groupId>
  50. <artifactId>slf4j-api</artifactId>
  51. </exclusion>
  52. <exclusion>
  53. <groupId>log4j</groupId>
  54. <artifactId>log4j</artifactId>
  55. </exclusion>
  56. </exclusions>
  57. </dependency>
  58. </dependencies>
  59. <build>
  60. <plugins>
  61. <plugin>
  62. <groupId>org.apache.maven.plugins</groupId>
  63. <artifactId>maven-deploy-plugin</artifactId>
  64. <configuration>
  65. <skip>true</skip>
  66. </configuration>
  67. </plugin>
  68. </plugins>
  69. </build>
  70. </project>