pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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-pm-task</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>com.qhiot</groupId>
  31. <artifactId>qhiot-cm</artifactId>
  32. <version>1.0.1</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.qhiot</groupId>
  36. <artifactId>qhiot-operation</artifactId>
  37. <version>1.0.1</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>javax</groupId>
  41. <artifactId>javaee-api</artifactId>
  42. <version>7.0</version>
  43. <scope>provided</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>javax.servlet</groupId>
  47. <artifactId>javax.servlet-api</artifactId>
  48. <version>3.1.0</version>
  49. <scope>provided</scope>
  50. </dependency>
  51. <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
  52. <dependency>
  53. <groupId>com.alibaba</groupId>
  54. <artifactId>fastjson</artifactId>
  55. <version>1.2.56</version>
  56. </dependency>
  57. </dependencies>
  58. <build>
  59. <resources>
  60. <resource>
  61. <directory>src/main/java</directory>
  62. <excludes>
  63. <exclude>**/*.java</exclude>
  64. </excludes>
  65. </resource>
  66. <resource>
  67. <directory>src/main/resources</directory>
  68. </resource>
  69. </resources>
  70. <plugins>
  71. <plugin>
  72. <groupId>org.apache.maven.plugins</groupId>
  73. <artifactId>maven-jar-plugin</artifactId>
  74. <version>2.6</version>
  75. <configuration>
  76. <archive>
  77. <index>true</index>
  78. <manifest>
  79. <addClasspath>true</addClasspath>
  80. </manifest>
  81. </archive>
  82. <useDefaultManifestFile>true</useDefaultManifestFile>
  83. </configuration>
  84. </plugin>
  85. <!--<plugin>-->
  86. <!--<groupId>org.apache.maven.plugins</groupId>-->
  87. <!--<artifactId>maven-javadoc-plugin</artifactId>-->
  88. <!--<version>2.10.4</version>-->
  89. <!--<configuration>-->
  90. <!--<aggregate>true</aggregate>-->
  91. <!--<additionalparam>-Xdoclint:none</additionalparam>-->
  92. <!--</configuration>-->
  93. <!--<executions>-->
  94. <!--<execution>-->
  95. <!--<id>attach-javadocs</id>-->
  96. <!--<goals>-->
  97. <!--<goal>jar</goal>-->
  98. <!--</goals>-->
  99. <!--</execution>-->
  100. <!--</executions>-->
  101. <!--</plugin>-->
  102. </plugins>
  103. </build>
  104. <distributionManagement>
  105. <repository>
  106. <id>releases</id>
  107. <url>http://116.62.67.134:9000/nexus/content/repositories/releases</url>
  108. </repository>
  109. </distributionManagement>
  110. </project>