1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?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>
- <parent>
- <groupId>com.shanghaichengdi</groupId>
- <artifactId>ghjg-item</artifactId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <artifactId>ghjg-item-common</artifactId>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.shanghaigeography</groupId>
- <artifactId>Infrastructure</artifactId>
- <version>1.1-SNAPSHOT</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/Infrastructure-1.1-SNAPSHOT.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>io.protostuff</groupId>
- <artifactId>protostuff-core</artifactId>
- <version>1.6.0</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/protostuff-core-1.6.0.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>io.protostuff</groupId>
- <artifactId>protostuff-api</artifactId>
- <version>1.6.0</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/protostuff-api-1.6.0.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>io.protostuff</groupId>
- <artifactId>protostuff-runtime</artifactId>
- <version>1.6.0</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/protostuff-runtime-1.6.0.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>io.protostuff</groupId>
- <artifactId>protostuff-collectionschema</artifactId>
- <version>1.6.0</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/protostuff-collectionschema-1.6.0.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>tomcat-embed-core</groupId>
- <artifactId>tomcat-embed-core</artifactId>
- <version>9.0.33</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/tomcat-embed-core-9.0.33.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>bayonetutil</groupId>
- <artifactId>bayonetutil</artifactId>
- <version>1.0-SNAPSHOT</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/bayonetutil.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-io</artifactId>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- </dependency>
- </dependencies>
- </project>
|