123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>qhiot-app</artifactId>
- <groupId>com.qhiot</groupId>
- <version>1.0.1</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>qhiot-artificialwater</artifactId>
- <dependencies>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-context</artifactId>
- <version>${springframework.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-web</artifactId>
- <version>${springframework.version}</version>
- </dependency>
- <dependency>
- <groupId>com.qhiot</groupId>
- <artifactId>qhiot-core</artifactId>
- <version>1.0.1</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- <version>3.1.0</version>
- </dependency>
- <dependency>
- <groupId>com.qhiot</groupId>
- <artifactId>qhiot-db</artifactId>
- <version>1.0.1</version>
- </dependency>
- <dependency>
- <groupId>com.qhiot</groupId>
- <artifactId>qhiot-cache</artifactId>
- <version>1.0.1</version>
- </dependency>
- <dependency>
- <groupId>com.qhiot</groupId>
- <artifactId>qhiot-webcore</artifactId>
- <version>1.0.1</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-jdk14</artifactId>
- <version>1.7.25</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>net.sf.json-lib</groupId>
- <artifactId>json-lib</artifactId>
- <version>2.2.3</version>
- <classifier>jdk15</classifier><!-- 指定jdk版本 -->
- </dependency>
- <dependency>
- <groupId>org.json</groupId>
- <artifactId>json</artifactId>
- <version>RELEASE</version>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>com.qhiot</groupId>-->
- <!-- <artifactId>qhiot-cm</artifactId>-->
- <!-- <version>1.0.1</version>-->
- <!-- <scope>compile</scope>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>aopalliance</groupId>
- <artifactId>aopalliance</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>com.qhiot</groupId>
- <artifactId>qhiot-global-waterquality</artifactId>
- <version>1.0.1</version>
- <scope>compile</scope>
- </dependency>
- </dependencies>
- <packaging>jar</packaging>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <build>
- <resources>
- <resource>
- <directory>src/main/java</directory>
- <excludes>
- <exclude>**/*.java</exclude>
- </excludes>
- </resource>
- <resource>
- <directory>src/main/resources</directory>
- </resource>
- </resources>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <version>2.6</version>
- <configuration>
- <archive>
- <index>true</index>
- <manifest>
- <addClasspath>true</addClasspath>
- </manifest>
- </archive>
- <useDefaultManifestFile>true</useDefaultManifestFile>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <distributionManagement>
- <repository>
- <id>releases</id>
- <url>http://116.62.67.134:9000/nexus/content/repositories/releases</url>
- </repository>
- </distributionManagement>
- </project>
|