123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- <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/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.qhiot</groupId>
- <artifactId>qhiot-app</artifactId>
- <version>1.0.1</version>
- </parent>
- <groupId>com.qhiot</groupId>
- <artifactId>qhiot-order</artifactId>
- <version>1.0.1</version>
- <packaging>jar</packaging>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.qhiot</groupId>
- <artifactId>qhiot-core</artifactId>
- <version>1.0.1</version>
- </dependency>
- <dependency>
- <groupId>com.qhiot</groupId>
- <artifactId>qhiot-webcore</artifactId>
- <version>1.0.1</version>
- </dependency>
- <dependency>
- <groupId>com.qhiot</groupId>
- <artifactId>qhiot-transport-db</artifactId>
- <version>1.0.1</version>
- </dependency>
- <dependency>
- <groupId>com.hlin</groupId>
- <artifactId>sensitive-word-filter</artifactId>
- <version>0.0.1</version>
- </dependency>
- <dependency>
- <groupId>javax</groupId>
- <artifactId>javaee-api</artifactId>
- <version>7.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- <version>3.1.0</version>
- <scope>provided</scope>
- </dependency>
- <!-- https://mvnrepository.com/artifact/javax.servlet/jstl -->
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jstl</artifactId>
- <version>1.2</version>
- </dependency>
- <!--<dependency>
- <groupId>com.qhiot</groupId>
- <artifactId>qhiot-eventcenter</artifactId>
- <version>1.0.1</version>
- </dependency>-->
- <dependency>
- <groupId>com.qhiot</groupId>
- <artifactId>qhiot-video</artifactId>
- <version>1.0.1</version>
- </dependency>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi</artifactId>
- <version>3.16</version>
- </dependency>
- <dependency>
- <groupId>com.qhiot</groupId>
- <artifactId>qhiot-job</artifactId>
- <version>1.0.1</version>
- </dependency>
- <dependency>
- <groupId>org.json</groupId>
- <artifactId>json</artifactId>
- <version>RELEASE</version>
- </dependency>
- <dependency>
- <groupId>com.qhiot</groupId>
- <artifactId>qhiot-jms</artifactId>
- <version>1.0.1</version>
- </dependency>
- <dependency>
- <groupId>com.qhiot</groupId>
- <artifactId>qhiot-notification</artifactId>
- <version>1.0.1</version>
- </dependency>
- <dependency>
- <groupId>com.qhiot</groupId>
- <artifactId>qhiot-transport-web</artifactId>
- <version>1.0.1</version>
- </dependency>
- <dependency>
- <groupId>com.qhiot</groupId>
- <artifactId>qhiot-transport-stats</artifactId>
- <version>1.0.1</version>
- </dependency>
- <dependency>
- <groupId>net.sf.json-lib</groupId>
- <artifactId>json-lib</artifactId>
- <version>2.2.3</version>
- <classifier>jdk15</classifier><!-- 指定jdk版本 -->
- </dependency>
- <dependency>
- <groupId>redis.clients</groupId>
- <artifactId>jedis</artifactId>
- <version>2.9.0</version>
- </dependency>
- <dependency>
- <groupId>com.artofsolving</groupId>
- <artifactId>jodconverter</artifactId>
- <version>2.2.2</version>
- </dependency>
- <dependency>
- <groupId>org.openoffice</groupId>
- <artifactId>jurt</artifactId>
- <version>4.1.2</version>
- </dependency>
- <dependency>
- <groupId>org.openoffice</groupId>
- <artifactId>ridl</artifactId>
- <version>4.1.2</version>
- </dependency>
- <dependency>
- <groupId>org.openoffice</groupId>
- <artifactId>juh</artifactId>
- <version>4.1.2</version>
- </dependency>
- <dependency>
- <groupId>org.openoffice</groupId>
- <artifactId>unoil</artifactId>
- <version>4.1.2</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-jdk14 -->
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-jdk14</artifactId>
- <version>1.7.25</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>com.qhiot</groupId>
- <artifactId>qhiot-cm</artifactId>
- <version>1.0.1</version>
- </dependency>
- </dependencies>
- <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>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-dependency-plugin</artifactId>
- <executions>
- <execution>
- <id>copy</id>
- <phase>package</phase>
- <goals>
- <goal>copy-dependencies</goal>
- </goals>
- <configuration>
- <outputDirectory>${project.build.directory}/libs</outputDirectory>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- <distributionManagement>
- <repository>
- <id>releases</id>
- <url>http://116.62.67.134:9000/nexus/content/repositories/releases</url>
- </repository>
- </distributionManagement>
- </project>
|