1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?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>ce-datamonitorsystem</artifactId>
- <groupId>com.creditease.moniter</groupId>
- <version>1.0</version>
- <relativePath>../com.creditease.uav.superpom</relativePath>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>com.creditease.uav.monitorframework</artifactId>
- <dependencies>
- <dependency>
- <groupId>com.creditease.moniter</groupId>
- <artifactId>com.creditease.uav.fastjson</artifactId>
- </dependency>
- <dependency>
- <groupId>com.creditease.moniter</groupId>
- <artifactId>com.creditease.uav.helper</artifactId>
- </dependency>
-
- <dependency>
- <groupId>com.creditease.moniter</groupId>
- <artifactId>com.creditease.uav.annoscan</artifactId>
- </dependency>
-
- <dependency>
- <groupId>com.creditease.moniter</groupId>
- <artifactId>com.creditease.uav.logging</artifactId>
- </dependency>
- <dependency>
- <groupId>com.creditease.moniter</groupId>
- <artifactId>com.creditease.uav.ttl</artifactId>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- <version>3.0.1</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-dependency-plugin</artifactId>
- <executions>
- <execution>
- <id>copy-dependencies</id>
- <phase>package</phase>
- <goals>
- <goal>copy-dependencies</goal>
- </goals>
- <configuration>
- <outputDirectory>${project.build.directory}/lib</outputDirectory>
- <includeScope>runtime</includeScope>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|