| <?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> |
| <packaging>jar</packaging> |
| <version>0.1.0-SNAPSHOT</version> |
|
|
| <groupId>YouTubeMock</groupId> |
| <artifactId>YouTubeMock</artifactId> |
|
|
| <properties> |
| |
| <resteasy.version>4.5.8.Final</resteasy.version> |
| <appengine.maven.plugin.version>2.2.0</appengine.maven.plugin.version> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| <maven.compiler.source>1.8</maven.compiler.source> |
| <maven.compiler.target>1.8</maven.compiler.target> |
| <maven.compiler.showDeprecation>true</maven.compiler.showDeprecation> |
| </properties> |
|
|
|
|
| <dependencies> |
| |
|
|
| |
| <dependency> |
| <groupId>javax.servlet</groupId> |
| <artifactId>javax.servlet-api</artifactId> |
| <version>4.0.0</version> |
| </dependency> |
|
|
| |
| <dependency> |
| <groupId>com.fasterxml.jackson.core</groupId> |
| <artifactId>jackson-core</artifactId> |
| <version>2.10.3</version> |
| </dependency> |
|
|
| <dependency> |
| <groupId>com.fasterxml.jackson.core</groupId> |
| <artifactId>jackson-databind</artifactId> |
| <version>2.10.3</version> |
| </dependency> |
|
|
| |
| <dependency> |
| <groupId>joda-time</groupId> |
| <artifactId>joda-time</artifactId> |
| <version>2.3</version> |
| </dependency> |
|
|
| |
| <dependency> |
| <groupId>org.jboss.resteasy</groupId> |
| <artifactId>resteasy-jaxb-provider</artifactId> |
| <version>${resteasy.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.jboss.resteasy</groupId> |
| <artifactId>resteasy-servlet-initializer</artifactId> |
| <version>${resteasy.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.jboss.resteasy</groupId> |
| <artifactId>resteasy-jackson2-provider</artifactId> |
| <version>${resteasy.version}</version> |
| </dependency> |
|
|
| |
| <dependency> |
| <groupId>com.fasterxml.jackson.core</groupId> |
| <artifactId>jackson-annotations</artifactId> |
| <version>2.10.3</version> |
| </dependency> |
|
|
| |
| <dependency> |
| <groupId>net.minidev</groupId> |
| <artifactId>json-smart</artifactId> |
| <version>1.0.9</version> |
| </dependency> |
|
|
| |
| <dependency> |
| <groupId>com.google.guava</groupId> |
| <artifactId>guava</artifactId> |
| <version>28.0-jre</version> |
| </dependency> |
|
|
| |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>4.12</version> |
| <scope>test</scope> |
| </dependency> |
|
|
| <dependency> |
| <groupId>org.jboss.resteasy</groupId> |
| <artifactId>resteasy-spring-boot-starter</artifactId> |
| <version>4.6.4.Final</version> |
| <scope>runtime</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-web</artifactId> |
| <version>2.3.5.RELEASE</version> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot</artifactId> |
| <version>2.3.5.RELEASE</version> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-autoconfigure</artifactId> |
| <version>2.3.5.RELEASE</version> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter</artifactId> |
| <version>2.3.5.RELEASE</version> |
| </dependency> |
|
|
|
|
| <dependency> |
| <groupId>org.springdoc</groupId> |
| <artifactId>springdoc-openapi-ui</artifactId> |
| <version>1.4.8</version> |
| </dependency> |
|
|
| |
| |
| |
| |
| |
| |
|
|
| <dependency> |
| <groupId>io.rest-assured</groupId> |
| <artifactId>rest-assured</artifactId> |
| <version>4.3.0</version> |
| </dependency> |
|
|
| </dependencies> |
|
|
| <repositories> |
| <repository> |
| <id>maven.restlet.org</id> |
| <name>maven.restlet.org</name> |
| <url>http://maven.restlet.org</url> |
| </repository> |
| </repositories> |
|
|
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-maven-plugin</artifactId> |
| <version>2.3.2.RELEASE</version> |
| <executions> |
| <execution> |
| <goals> |
| <goal>repackage</goal> |
| </goals> |
| <configuration> |
| <finalName>youtubemock</finalName> |
| <classifier>sut</classifier> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |
|
|