| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?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.jwipc</groupId>
- <artifactId>inquiry</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <artifactId>inquiry-client</artifactId>
- <name>${project.artifactId}</name>
- <dependencies>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>inquiry-client-base</artifactId>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>jwipc-util</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-context</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.mapstruct</groupId>
- <artifactId>mapstruct</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>jwipc-api</artifactId>
- </dependency>
- </dependencies>
-
- </project>
|