开源代码的简单范例

pom.xml 891B

    <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.ai.ipu.example</groupId> <artifactId>dubbo-example</artifactId> <version>1.0-SNAPSHOT</version> </parent> <artifactId>dubbo-service-provider</artifactId> <name>dubbo-service-provider</name> <description>dubbo服务提供者</description> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>com.ai.ipu.server</groupId> <artifactId>ipu-service</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.2</version> </dependency> </dependencies> </project>