pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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>qhiot-app</artifactId>
  7. <groupId>com.qhiot</groupId>
  8. <version>1.0.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>com.qhiot</groupId>
  12. <artifactId>qhiot-notification</artifactId>
  13. <version>1.0.1</version>
  14. <packaging>jar</packaging>
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.qhiot</groupId>
  21. <artifactId>qhiot-core</artifactId>
  22. <version>1.0.1</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.qhiot</groupId>
  26. <artifactId>qhiot-webcore</artifactId>
  27. <version>1.0.1</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>javax</groupId>
  31. <artifactId>javaee-api</artifactId>
  32. <version>7.0</version>
  33. <scope>provided</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>javax.servlet</groupId>
  37. <artifactId>javax.servlet-api</artifactId>
  38. <version>3.1.0</version>
  39. <scope>provided</scope>
  40. </dependency>
  41. <!-- https://mvnrepository.com/artifact/javax.servlet/jstl -->
  42. <dependency>
  43. <groupId>javax.servlet</groupId>
  44. <artifactId>jstl</artifactId>
  45. <version>1.2</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.aliyun</groupId>
  49. <artifactId>aliyun-java-sdk-core</artifactId>
  50. <version>3.3.1</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.aliyun</groupId>
  54. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  55. <version>1.0.0</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.dangdang</groupId>
  59. <artifactId>elastic-job-common-core</artifactId>
  60. <version>RELEASE</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.dangdang</groupId>
  64. <artifactId>elastic-job-lite-core</artifactId>
  65. <version>RELEASE</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.dangdang</groupId>
  69. <artifactId>elastic-job-lite-spring</artifactId>
  70. <version>RELEASE</version>
  71. </dependency>
  72. </dependencies>
  73. <build>
  74. <resources>
  75. <resource>
  76. <directory>src/main/java</directory>
  77. <excludes>
  78. <exclude>**/*.java</exclude>
  79. </excludes>
  80. </resource>
  81. <resource>
  82. <directory>src/main/resources</directory>
  83. </resource>
  84. </resources>
  85. <plugins>
  86. <plugin>
  87. <groupId>org.apache.maven.plugins</groupId>
  88. <artifactId>maven-jar-plugin</artifactId>
  89. <version>2.6</version>
  90. <configuration>
  91. <archive>
  92. <index>true</index>
  93. <manifest>
  94. <addClasspath>true</addClasspath>
  95. </manifest>
  96. </archive>
  97. <useDefaultManifestFile>true</useDefaultManifestFile>
  98. </configuration>
  99. </plugin>
  100. <!--<plugin>-->
  101. <!--<groupId>org.apache.maven.plugins</groupId>-->
  102. <!--<artifactId>maven-javadoc-plugin</artifactId>-->
  103. <!--<version>2.10.4</version>-->
  104. <!--<configuration>-->
  105. <!--<aggregate>true</aggregate>-->
  106. <!--<additionalparam>-Xdoclint:none</additionalparam>-->
  107. <!--</configuration>-->
  108. <!--<executions>-->
  109. <!--<execution>-->
  110. <!--<id>attach-javadocs</id>-->
  111. <!--<goals>-->
  112. <!--<goal>jar</goal>-->
  113. <!--</goals>-->
  114. <!--</execution>-->
  115. <!--</executions>-->
  116. <!--</plugin>-->
  117. </plugins>
  118. </build>
  119. <distributionManagement>
  120. <repository>
  121. <id>releases</id>
  122. <url>http://116.62.67.134:9000/nexus/content/repositories/releases</url>
  123. </repository>
  124. </distributionManagement>
  125. </project>