pca-model-generator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.sdl.web.pca</groupId>
<artifactId>pca-model-generator</artifactId>
<version>2.2.30</version>
</dependency><?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>pca-client-parent</artifactId>
<groupId>com.sdl.web.pca</groupId>
<version>2.2.30</version>
</parent>
<artifactId>pca-model-generator</artifactId>
<dependencies>
<dependency>
<groupId>com.sdl.web.pca</groupId>
<artifactId>pca-client</artifactId>
</dependency>
<dependency>
<groupId>com.sdl.web.pca</groupId>
<artifactId>graphql-client</artifactId>
</dependency>
<dependency>
<groupId>com.sdl.web.pca</groupId>
<artifactId>pca-model</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.9.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>