pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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-document</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-jms</artifactId>
  32. <version>1.0.1</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.qhiot</groupId>
  36. <artifactId>qhiot-transport-web</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/javax.servlet/jstl -->
  52. <dependency>
  53. <groupId>javax.servlet</groupId>
  54. <artifactId>jstl</artifactId>
  55. <version>1.2</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.qhiot</groupId>
  59. <artifactId>qhiot-cm</artifactId>
  60. <version>1.0.1</version>
  61. </dependency>
  62. </dependencies>
  63. <build>
  64. <resources>
  65. <resource>
  66. <directory>src/main/java</directory>
  67. <excludes>
  68. <exclude>**/*.java</exclude>
  69. </excludes>
  70. </resource>
  71. <resource>
  72. <directory>src/main/resources</directory>
  73. </resource>
  74. </resources>
  75. <plugins>
  76. <plugin>
  77. <groupId>org.apache.maven.plugins</groupId>
  78. <artifactId>maven-jar-plugin</artifactId>
  79. <version>2.6</version>
  80. <configuration>
  81. <archive>
  82. <index>true</index>
  83. <manifest>
  84. <addClasspath>true</addClasspath>
  85. </manifest>
  86. </archive>
  87. <useDefaultManifestFile>true</useDefaultManifestFile>
  88. </configuration>
  89. </plugin>
  90. <!--<plugin>-->
  91. <!--<groupId>org.apache.maven.plugins</groupId>-->
  92. <!--<artifactId>maven-javadoc-plugin</artifactId>-->
  93. <!--<version>2.10.4</version>-->
  94. <!--<configuration>-->
  95. <!--<aggregate>true</aggregate>-->
  96. <!--<additionalparam>-Xdoclint:none</additionalparam>-->
  97. <!--</configuration>-->
  98. <!--<executions>-->
  99. <!--<execution>-->
  100. <!--<id>attach-javadocs</id>-->
  101. <!--<goals>-->
  102. <!--<goal>jar</goal>-->
  103. <!--</goals>-->
  104. <!--</execution>-->
  105. <!--</executions>-->
  106. <!--</plugin>-->
  107. </plugins>
  108. </build>
  109. <distributionManagement>
  110. <repository>
  111. <id>releases</id>
  112. <url>http://116.62.67.134:9000/nexus/content/repositories/releases</url>
  113. </repository>
  114. </distributionManagement>
  115. </project>