12345678910111213141516171819202122232425262728293031323334 |
- <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.github.stuxuhai</groupId>
- <artifactId>hdata</artifactId>
- <version>0.2.8</version>
- </parent>
- <artifactId>hdata-wit</artifactId>
- <dependencies>
- <dependency>
- <groupId>com.github.stuxuhai</groupId>
- <artifactId>hdata-api</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.github.stuxuhai</groupId>
- <artifactId>hdata-core</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- <version>${slf4j.version}</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.febit.wit</groupId>
- <artifactId>wit-core</artifactId>
- <version>${wit.version}</version>
- </dependency>
- </dependencies>
- </project>
|