|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + <parent> |
| 6 | + <groupId>io.swagger.core.v3</groupId> |
| 7 | + <artifactId>swagger-project</artifactId> |
| 8 | + <version>2.2.26-SNAPSHOT</version> |
| 9 | + <relativePath>../../pom.xml</relativePath> |
| 10 | + </parent> |
| 11 | + <artifactId>swagger-java17-support</artifactId> |
| 12 | + <packaging>jar</packaging> |
| 13 | + <name>swagger-java17-support</name> |
| 14 | + <description>Module for Java 17 specific tests</description> |
| 15 | + <dependencies> |
| 16 | + <dependency> |
| 17 | + <groupId>org.testng</groupId> |
| 18 | + <artifactId>testng</artifactId> |
| 19 | + <scope>test</scope> |
| 20 | + </dependency> |
| 21 | + <dependency> |
| 22 | + <groupId>io.swagger.core.v3</groupId> |
| 23 | + <artifactId>swagger-jaxrs2</artifactId> |
| 24 | + <version>${project.version}</version> |
| 25 | + </dependency> |
| 26 | + <dependency> |
| 27 | + <groupId>io.swagger.core.v3</groupId> |
| 28 | + <artifactId>swagger-core</artifactId> |
| 29 | + <version>${project.version}</version> |
| 30 | + </dependency> |
| 31 | + <dependency> |
| 32 | + <groupId>io.swagger.core.v3</groupId> |
| 33 | + <artifactId>swagger-annotations</artifactId> |
| 34 | + <version>${project.version}</version> |
| 35 | + </dependency> |
| 36 | + <dependency> |
| 37 | + <groupId>io.swagger.core.v3</groupId> |
| 38 | + <artifactId>swagger-models</artifactId> |
| 39 | + <version>${project.version}</version> |
| 40 | + </dependency> |
| 41 | + <dependency> |
| 42 | + <groupId>org.glassfish.jersey.media</groupId> |
| 43 | + <artifactId>jersey-media-multipart</artifactId> |
| 44 | + <version>${jersey2-version}</version> |
| 45 | + <scope>test</scope> |
| 46 | + <exclusions> |
| 47 | + <exclusion> |
| 48 | + <groupId>javax.annotation</groupId> |
| 49 | + <artifactId>javax.annotation-api</artifactId> |
| 50 | + </exclusion> |
| 51 | + <exclusion> |
| 52 | + <groupId>org.javassist</groupId> |
| 53 | + <artifactId>javassist</artifactId> |
| 54 | + </exclusion> |
| 55 | + </exclusions> |
| 56 | + </dependency> |
| 57 | + <dependency> |
| 58 | + <groupId>org.glassfish.jersey.inject</groupId> |
| 59 | + <artifactId>jersey-hk2</artifactId> |
| 60 | + <version>${jersey2-version}</version> |
| 61 | + <scope>test</scope> |
| 62 | + <exclusions> |
| 63 | + <exclusion> |
| 64 | + <groupId>javax.annotation</groupId> |
| 65 | + <artifactId>javax.annotation-api</artifactId> |
| 66 | + </exclusion> |
| 67 | + <exclusion> |
| 68 | + <groupId>org.javassist</groupId> |
| 69 | + <artifactId>javassist</artifactId> |
| 70 | + </exclusion> |
| 71 | + </exclusions> |
| 72 | + </dependency> |
| 73 | + </dependencies> |
| 74 | + |
| 75 | + <build> |
| 76 | + <plugins> |
| 77 | + <plugin> |
| 78 | + <groupId>org.apache.maven.plugins</groupId> |
| 79 | + <artifactId>maven-compiler-plugin</artifactId> |
| 80 | + <version>3.11.0</version> |
| 81 | + <configuration> |
| 82 | + <release>17</release> |
| 83 | + </configuration> |
| 84 | + </plugin> |
| 85 | + </plugins> |
| 86 | + </build> |
| 87 | + <properties> |
| 88 | + <maven.compiler.release>17</maven.compiler.release> |
| 89 | + </properties> |
| 90 | + |
| 91 | +</project> |
0 commit comments