1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?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>
- <artifactId>am-lodge-framework</artifactId>
- <groupId>am.lodge</groupId>
- <version>test-SNAPSHOT</version>
- </parent>
- <artifactId>hgyc-api</artifactId>
- <packaging>jar</packaging>
- <dependencies>
- <dependency>
- <groupId>am.lodge</groupId>
- <artifactId>am-lodge-persistence</artifactId>
- </dependency>
- <dependency>
- <groupId>am.lodge</groupId>
- <artifactId>am-lodge-spring-security</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.security</groupId>
- <artifactId>spring-security-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.mybatis</groupId>
- <artifactId>mybatis</artifactId>
- </dependency>
- <dependency>
- <groupId>org.mybatis</groupId>
- <artifactId>mybatis-spring</artifactId>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi</artifactId>
- <version>3.17</version>
- </dependency>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-ooxml</artifactId>
- <version>3.17</version>
- </dependency>
- <dependency>
- <groupId>net.imagej</groupId>
- <artifactId>ij</artifactId>
- <version>1.52g</version>
- </dependency>
- </dependencies>
- <distributionManagement>
- <repository>
- <id>private.maven.releases</id>
- <name>private.maven.releases</name>
- <url>http://develop.tengfengit.com/nexus/repository/maven-releases</url>
- </repository>
- <snapshotRepository>
- <id>private.maven.snapshots</id>
- <name>private.maven.snapshots</name>
- <url>http://develop.tengfengit.com/nexus/repository/maven-snapshots</url>
- </snapshotRepository>
- </distributionManagement>
- </project>
|