pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. <parent>
  6. <artifactId>elab-parent</artifactId>
  7. <groupId>com.elab.core</groupId>
  8. <version>2.0.4.12-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>elab-mq</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-autoconfigure</artifactId>
  16. <scope>provided</scope>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.elab.core</groupId>
  20. <artifactId>elab-core</artifactId>
  21. <version>${project.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.elab.core</groupId>
  25. <artifactId>elab-spring</artifactId>
  26. <version>${project.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.elab.core</groupId>
  30. <artifactId>elab-db</artifactId>
  31. <version>${project.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.aliyun.openservices</groupId>
  35. <artifactId>ons-client</artifactId>
  36. <version>1.8.0.Final</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>junit</groupId>
  40. <artifactId>junit</artifactId>
  41. <scope>test</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework</groupId>
  45. <artifactId>spring-test</artifactId>
  46. <scope>test</scope>
  47. </dependency>
  48. </dependencies>
  49. <build>
  50. <plugins>
  51. <!-- 打包源码插件 -->
  52. <plugin>
  53. <groupId>org.apache.maven.plugins</groupId>
  54. <artifactId>maven-source-plugin</artifactId>
  55. <executions>
  56. <execution>
  57. <id>attach-sources</id>
  58. <goals>
  59. <goal>jar</goal>
  60. </goals>
  61. </execution>
  62. </executions>
  63. </plugin>
  64. <!-- 打包javadoc插件 -->
  65. <!--<plugin>-->
  66. <!--<groupId>org.apache.maven.plugins</groupId>-->
  67. <!--<artifactId>maven-javadoc-plugin</artifactId>-->
  68. <!--<version>2.9</version>-->
  69. <!--<executions>-->
  70. <!--<execution>-->
  71. <!--<id>attach-javadocs</id>-->
  72. <!--<goals>-->
  73. <!--<goal>jar</goal>-->
  74. <!--</goals>-->
  75. <!--<configuration>-->
  76. <!--<additionalOptions>-Xdoclint:none</additionalOptions>-->
  77. <!--</configuration>-->
  78. <!--</execution>-->
  79. <!--</executions>-->
  80. <!--</plugin>-->
  81. <plugin>
  82. <groupId>org.apache.maven.plugins</groupId>
  83. <artifactId>maven-compiler-plugin</artifactId>
  84. <version>2.1</version>
  85. <configuration>
  86. <source>1.8</source>
  87. <target>1.8</target>
  88. </configuration>
  89. </plugin>
  90. </plugins>
  91. </build>
  92. <distributionManagement>
  93. <repository>
  94. <id>releases</id>
  95. <name>Nexus Release Repository</name>
  96. <url>http://192.168.0.11:8081/nexus/content/repositories/elab/</url>
  97. </repository>
  98. </distributionManagement>
  99. </project>