团队对封装组件的代码范例

pom.xml 1.2KB

    <?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"> <modelVersion>4.0.0</modelVersion> <groupId>com.ai.ipu</groupId> <artifactId>ipu-cache-example</artifactId> <version>1.0</version> <repositories> <repository> <id>ipu</id> <name>ipu repository</name> <url>http://114.215.100.48:9090/nexus/content/groups/public/</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> <updatePolicy>always</updatePolicy> </snapshots> </repository> </repositories> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <ipu>3.1-SNAPSHOT</ipu> <jdk>1.8</jdk> <junit>4.12</junit> </properties> <dependencies> <dependency> <groupId>com.ai.ipu</groupId> <artifactId>ipu-cache</artifactId> <version>${ipu}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit}</version> <scope>test</scope> </dependency> </dependencies> </project>