pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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. <artifactId>qhiot-artificialwater</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework</groupId>
  15. <artifactId>spring-context</artifactId>
  16. <version>${springframework.version}</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework</groupId>
  20. <artifactId>spring-web</artifactId>
  21. <version>${springframework.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.qhiot</groupId>
  25. <artifactId>qhiot-core</artifactId>
  26. <version>1.0.1</version>
  27. <scope>compile</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>javax.servlet</groupId>
  31. <artifactId>javax.servlet-api</artifactId>
  32. <version>3.1.0</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.qhiot</groupId>
  36. <artifactId>qhiot-db</artifactId>
  37. <version>1.0.1</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.qhiot</groupId>
  41. <artifactId>qhiot-cache</artifactId>
  42. <version>1.0.1</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.qhiot</groupId>
  46. <artifactId>qhiot-webcore</artifactId>
  47. <version>1.0.1</version>
  48. <scope>compile</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.slf4j</groupId>
  52. <artifactId>slf4j-jdk14</artifactId>
  53. <version>1.7.25</version>
  54. <scope>test</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>net.sf.json-lib</groupId>
  58. <artifactId>json-lib</artifactId>
  59. <version>2.2.3</version>
  60. <classifier>jdk15</classifier><!-- 指定jdk版本 -->
  61. </dependency>
  62. <dependency>
  63. <groupId>org.json</groupId>
  64. <artifactId>json</artifactId>
  65. <version>RELEASE</version>
  66. </dependency>
  67. <!-- <dependency>-->
  68. <!-- <groupId>com.qhiot</groupId>-->
  69. <!-- <artifactId>qhiot-cm</artifactId>-->
  70. <!-- <version>1.0.1</version>-->
  71. <!-- <scope>compile</scope>-->
  72. <!-- </dependency>-->
  73. <dependency>
  74. <groupId>aopalliance</groupId>
  75. <artifactId>aopalliance</artifactId>
  76. <version>1.0</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.qhiot</groupId>
  80. <artifactId>qhiot-global-waterquality</artifactId>
  81. <version>1.0.1</version>
  82. <scope>compile</scope>
  83. </dependency>
  84. </dependencies>
  85. <packaging>jar</packaging>
  86. <properties>
  87. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  88. </properties>
  89. <build>
  90. <resources>
  91. <resource>
  92. <directory>src/main/java</directory>
  93. <excludes>
  94. <exclude>**/*.java</exclude>
  95. </excludes>
  96. </resource>
  97. <resource>
  98. <directory>src/main/resources</directory>
  99. </resource>
  100. </resources>
  101. <plugins>
  102. <plugin>
  103. <groupId>org.apache.maven.plugins</groupId>
  104. <artifactId>maven-jar-plugin</artifactId>
  105. <version>2.6</version>
  106. <configuration>
  107. <archive>
  108. <index>true</index>
  109. <manifest>
  110. <addClasspath>true</addClasspath>
  111. </manifest>
  112. </archive>
  113. <useDefaultManifestFile>true</useDefaultManifestFile>
  114. </configuration>
  115. </plugin>
  116. </plugins>
  117. </build>
  118. <distributionManagement>
  119. <repository>
  120. <id>releases</id>
  121. <url>http://116.62.67.134:9000/nexus/content/repositories/releases</url>
  122. </repository>
  123. </distributionManagement>
  124. </project>