Skip to content

Commit 2237847

Browse files
authored
Merge pull request #3332 from amarkevich/swagger-maven-plugin
swagger-maven-plugin: update dependencies
2 parents f6d73cf + 3c30c86 commit 2237847

File tree

1 file changed

+33
-40
lines changed
  • modules/swagger-maven-plugin

1 file changed

+33
-40
lines changed

modules/swagger-maven-plugin/pom.xml

Lines changed: 33 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<plugin>
1717
<groupId>org.codehaus.plexus</groupId>
1818
<artifactId>plexus-component-metadata</artifactId>
19-
<version>1.7.1</version>
19+
<version>2.0.0</version>
2020
<executions>
2121
<execution>
2222
<goals>
@@ -28,7 +28,7 @@
2828
<plugin>
2929
<groupId>org.apache.maven.plugins</groupId>
3030
<artifactId>maven-plugin-plugin</artifactId>
31-
<version>3.5.1</version>
31+
<version>3.6.0</version>
3232
</plugin>
3333
</plugins>
3434
</build>
@@ -37,6 +37,21 @@
3737
<groupId>org.apache.maven</groupId>
3838
<artifactId>maven-plugin-api</artifactId>
3939
<version>${maven.version}</version>
40+
<exclusions>
41+
<exclusion>
42+
<groupId>org.codehaus.plexus</groupId>
43+
<artifactId>plexus-utils</artifactId>
44+
</exclusion>
45+
<exclusion>
46+
<groupId>org.codehaus.plexus</groupId>
47+
<artifactId>plexus-component-annotations</artifactId>
48+
</exclusion>
49+
</exclusions>
50+
</dependency>
51+
<dependency>
52+
<groupId>org.apache.maven</groupId>
53+
<artifactId>maven-core</artifactId>
54+
<version>${maven.version}</version>
4055
<exclusions>
4156
<exclusion>
4257
<groupId>org.codehaus.plexus</groupId>
@@ -47,7 +62,7 @@
4762
<dependency>
4863
<groupId>org.apache.maven.plugin-tools</groupId>
4964
<artifactId>maven-plugin-annotations</artifactId>
50-
<version>3.3</version>
65+
<version>3.6.0</version>
5166
<scope>provided</scope>
5267
<exclusions>
5368
<exclusion>
@@ -84,16 +99,23 @@
8499
<dependency>
85100
<groupId>org.codehaus.plexus</groupId>
86101
<artifactId>plexus-utils</artifactId>
87-
<version>3.0.24</version>
102+
<version>3.1.0</version>
88103
</dependency>
89104
<dependency>
90105
<groupId>org.codehaus.plexus</groupId>
91106
<artifactId>plexus-component-annotations</artifactId>
92-
<version>1.5.5</version>
107+
<version>1.7.1</version>
108+
</dependency>
109+
<dependency>
110+
<groupId>io.swagger.core.v3</groupId>
111+
<artifactId>swagger-jaxrs2</artifactId>
112+
<version>${project.version}</version>
93113
</dependency>
114+
94115
<dependency>
95-
<groupId>com.google.guava</groupId>
96-
<artifactId>guava</artifactId>
116+
<groupId>junit</groupId>
117+
<artifactId>junit</artifactId>
118+
<version>${junit.version}</version>
97119
<scope>test</scope>
98120
</dependency>
99121
<!-- Required to avoid
@@ -104,46 +126,17 @@
104126
<groupId>org.apache.maven</groupId>
105127
<artifactId>maven-compat</artifactId>
106128
<version>${maven.version}</version>
107-
<exclusions>
108-
<exclusion>
109-
<groupId>com.google.guava</groupId>
110-
<artifactId>guava</artifactId>
111-
</exclusion>
112-
<exclusion>
113-
<groupId>org.codehaus.plexus</groupId>
114-
<artifactId>plexus-utils</artifactId>
115-
</exclusion>
116-
<exclusion>
117-
<groupId>org.codehaus.plexus</groupId>
118-
<artifactId>plexus-component-annotations</artifactId>
119-
</exclusion>
120-
</exclusions>
121-
</dependency>
122-
<dependency>
123-
<groupId>io.swagger.core.v3</groupId>
124-
<artifactId>swagger-jaxrs2</artifactId>
125-
<version>${project.version}</version>
126-
</dependency>
127-
128-
<dependency>
129-
<groupId>junit</groupId>
130-
<artifactId>junit</artifactId>
131-
<version>${junit.version}</version>
132129
<scope>test</scope>
133130
</dependency>
134131
<dependency>
135132
<groupId>com.github.tomakehurst</groupId>
136133
<artifactId>wiremock</artifactId>
137-
<version>2.15.0</version>
134+
<version>2.25.0</version>
138135
<scope>test</scope>
139136
<exclusions>
140137
<exclusion>
141-
<groupId>junit</groupId>
142-
<artifactId>junit</artifactId>
143-
</exclusion>
144-
<exclusion>
145-
<groupId>com.google.guava</groupId>
146-
<artifactId>guava</artifactId>
138+
<groupId>com.jayway.jsonpath</groupId>
139+
<artifactId>json-path</artifactId>
147140
</exclusion>
148141
</exclusions>
149142
</dependency>
@@ -166,7 +159,7 @@
166159
</dependencies>
167160
<properties>
168161
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
169-
<maven.version>3.5.0</maven.version>
162+
<maven.version>3.6.0</maven.version>
170163
<junit.version>4.12</junit.version>
171164
</properties>
172165
</project>

0 commit comments

Comments
 (0)