pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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-knowledge</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. <!-- https://mvnrepository.com/artifact/org.clojars.cbilson/pinyin4j -->
  58. <!--pinyinHelper-->
  59. <dependency>
  60. <groupId>org.clojars.cbilson</groupId>
  61. <artifactId>pinyin4j</artifactId>
  62. <version>2.5.0</version>
  63. </dependency>
  64. <!-- pageHelper -->
  65. <dependency>
  66. <groupId>com.github.pagehelper</groupId>
  67. <artifactId>pagehelper</artifactId>
  68. <version>4.1.4</version>
  69. </dependency>
  70. </dependencies>
  71. <build>
  72. <resources>
  73. <resource>
  74. <directory>src/main/java</directory>
  75. <excludes>
  76. <exclude>**/*.java</exclude>
  77. </excludes>
  78. </resource>
  79. <resource>
  80. <directory>src/main/resources</directory>
  81. </resource>
  82. </resources>
  83. <plugins>
  84. <plugin>
  85. <groupId>org.apache.maven.plugins</groupId>
  86. <artifactId>maven-jar-plugin</artifactId>
  87. <version>2.6</version>
  88. <configuration>
  89. <archive>
  90. <index>true</index>
  91. <manifest>
  92. <addClasspath>true</addClasspath>
  93. </manifest>
  94. </archive>
  95. <useDefaultManifestFile>true</useDefaultManifestFile>
  96. </configuration>
  97. </plugin>
  98. <!--<plugin>-->
  99. <!--<groupId>org.apache.maven.plugins</groupId>-->
  100. <!--<artifactId>maven-javadoc-plugin</artifactId>-->
  101. <!--<version>2.10.4</version>-->
  102. <!--<configuration>-->
  103. <!--<aggregate>true</aggregate>-->
  104. <!--<additionalparam>-Xdoclint:none</additionalparam>-->
  105. <!--</configuration>-->
  106. <!--<executions>-->
  107. <!--<execution>-->
  108. <!--<id>attach-javadocs</id>-->
  109. <!--<goals>-->
  110. <!--<goal>jar</goal>-->
  111. <!--</goals>-->
  112. <!--</execution>-->
  113. <!--</executions>-->
  114. <!--</plugin>-->
  115. </plugins>
  116. </build>
  117. <distributionManagement>
  118. <repository>
  119. <id>releases</id>
  120. <url>http://116.62.67.134:9000/nexus/content/repositories/releases</url>
  121. </repository>
  122. </distributionManagement>
  123. </project>