pom.xml 3.5 KB

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