12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <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">
- <modelVersion>4.0.0</modelVersion>
- <!-- 父类定义 -->
- <parent>
- <groupId>com.iamberry</groupId>
- <artifactId>iamberry-parent</artifactId>
- <version>1.0.0</version>
- </parent>
- <!-- 微信的业务模块 -->
- <artifactId>watero-wechat-service</artifactId>
-
- <!-- 依赖 -->
- <dependencies>
- <dependency>
- <groupId>com.iamberry</groupId>
- <artifactId>watero-wechat-interface</artifactId>
- <version>1.0.0</version>
- </dependency>
- <!-- 公共接口 -->
- <dependency>
- <groupId>com.iamberry</groupId>
- <artifactId>watero-common-tool</artifactId>
- <version>1.0.0</version>
- </dependency>
-
- <dependency>
- <groupId>org.quartz-scheduler</groupId>
- <artifactId>quartz</artifactId>
- <version>2.2.1</version>
- </dependency>
- </dependencies>
- <build>
- <resources>
- <resource>
- <directory>src/main/java</directory>
- <includes>
- <include>**/*.properties</include>
- <include>**/*.xml</include>
- </includes>
- <filtering>false</filtering>
- </resource>
- </resources>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.3</version>
- <configuration>
- <source>1.7</source>
- <target>1.7</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|