pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.elab.core</groupId>
  8. <artifactId>elab-parent</artifactId>
  9. <version>2.0.5.3-SNAPSHOT</version>
  10. </parent>
  11. <groupId>com.elab.log</groupId>
  12. <artifactId>elab-log</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.elab.core</groupId>
  16. <artifactId>elab-core</artifactId>
  17. <version>${project.version}</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.jay.monitor.data</groupId>
  21. <artifactId>jay-monitor-data-client</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.elab.core</groupId>
  25. <artifactId>elab-annotation</artifactId>
  26. <version>${project.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.dianping.cat</groupId>
  30. <artifactId>cat-core</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework</groupId>
  34. <artifactId>spring-webmvc</artifactId>
  35. </dependency>
  36. <!-- 最终执行的日志jar -->
  37. <dependency>
  38. <groupId>ch.qos.logback</groupId>
  39. <artifactId>logback-classic</artifactId>
  40. <version>1.2.3</version>
  41. <!--<scope>provided</scope>-->
  42. </dependency>
  43. <dependency>
  44. <groupId>org.slf4j</groupId>
  45. <artifactId>slf4j-api</artifactId>
  46. </dependency>
  47. <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-log4j12 -->
  48. <dependency>
  49. <groupId>org.slf4j</groupId>
  50. <artifactId>slf4j-log4j12</artifactId>
  51. <scope>provided</scope>
  52. </dependency>
  53. <!--<dependency>-->
  54. <!--<groupId>org.springframework.cloud</groupId>-->
  55. <!--<artifactId>spring-cloud-redisson-feign</artifactId>-->
  56. <!--<version>1.4.4.RELEASE</version>-->
  57. <!--<scope>provided</scope>-->
  58. <!--</dependency>-->
  59. <!--<dependency>-->
  60. <!--<groupId>com.netflix.hystrix</groupId>-->
  61. <!--<artifactId>hystrix-core</artifactId>-->
  62. <!--<version>1.5.12</version>-->
  63. <!--<scope>provided</scope>-->
  64. <!--</dependency>-->
  65. <!--<dependency>-->
  66. <!--<groupId>com.elab.cloud</groupId>-->
  67. <!--<artifactId>elab-cloud-commons</artifactId>-->
  68. <!--<version>1.0.0</version>-->
  69. <!--<scope>provided</scope>-->
  70. <!--</dependency>-->
  71. <dependency>
  72. <groupId>junit</groupId>
  73. <artifactId>junit</artifactId>
  74. </dependency>
  75. </dependencies>
  76. <build>
  77. <plugins>
  78. <!-- 打包源码插件 -->
  79. <plugin>
  80. <groupId>org.apache.maven.plugins</groupId>
  81. <artifactId>maven-source-plugin</artifactId>
  82. <executions>
  83. <execution>
  84. <id>attach-sources</id>
  85. <goals>
  86. <goal>jar</goal>
  87. </goals>
  88. </execution>
  89. </executions>
  90. </plugin>
  91. <!-- 打包javadoc插件 -->
  92. <!--<plugin>-->
  93. <!--<groupId>org.apache.maven.plugins</groupId>-->
  94. <!--<artifactId>maven-javadoc-plugin</artifactId>-->
  95. <!--&lt;!&ndash;<version>2.9</version>&ndash;&gt;-->
  96. <!--<executions>-->
  97. <!--<execution>-->
  98. <!--<id>attach-javadocs</id>-->
  99. <!--<goals>-->
  100. <!--<goal>jar</goal>-->
  101. <!--</goals>-->
  102. <!--<doc>-->
  103. <!--<additionalparam>-Xdoclint:none</additionalparam>-->
  104. <!--<charset>UTF-8</charset>-->
  105. <!--<encoding>UTF-8</encoding>-->
  106. <!--<docencoding>UTF-8</docencoding>-->
  107. <!--</doc>-->
  108. <!--</execution>-->
  109. <!--</executions>-->
  110. <!--</plugin>-->
  111. <plugin>
  112. <groupId>org.apache.maven.plugins</groupId>
  113. <artifactId>maven-compiler-plugin</artifactId>
  114. <configuration>
  115. <source>1.8</source>
  116. <target>1.8</target>
  117. </configuration>
  118. </plugin>
  119. </plugins>
  120. </build>
  121. <distributionManagement>
  122. <repository>
  123. <id>releases</id>
  124. <name>Nexus Release Repository</name>
  125. <url>http://192.168.0.11:8081/nexus/content/repositories/elab/</url>
  126. </repository>
  127. </distributionManagement>
  128. </project>