pom.xml 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.zheng</groupId>
  5. <artifactId>oss</artifactId>
  6. <version>1.0.0</version>
  7. <modules>
  8. <module>oss-sdk</module>
  9. <module>oss-web</module>
  10. </modules>
  11. <packaging>pom</packaging>
  12. <name>oss</name>
  13. <url>http://www.zhangshuzheng.cn</url>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <maven.compiler.source>1.7</maven.compiler.source>
  17. <maven.compiler.target>1.7</maven.compiler.target>
  18. <maven.compiler.compilerVersion>1.7</maven.compiler.compilerVersion>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>junit</groupId>
  23. <artifactId>junit</artifactId>
  24. <version>3.8.1</version>
  25. <scope>test</scope>
  26. </dependency>
  27. </dependencies>
  28. </project>