|
19 | 19 |
|
20 | 20 | <groupId>com.axway.maven.plugins</groupId>
|
21 | 21 | <artifactId>apigw-maven-plugin</artifactId>
|
22 |
| - <version>1.2.0.1</version> |
| 22 | + <version>1.2.1</version> |
23 | 23 | <packaging>maven-plugin</packaging>
|
24 | 24 |
|
25 | 25 | <name>Axway API Gateway Maven Plugin</name>
|
|
64 | 64 | <maven.compiler.source>1.8</maven.compiler.source>
|
65 | 65 | <maven.compiler.target>1.8</maven.compiler.target>
|
66 | 66 |
|
67 |
| - <jackson.version>[2.9.9.1,)</jackson.version> |
| 67 | + <maven.core.version>3.8.1</maven.core.version> |
| 68 | + <maven-plugin-tools.version>3.10.2</maven-plugin-tools.version> |
| 69 | + |
| 70 | + <commons-text.version>1.11.0</commons-text.version> |
| 71 | + <jackson.version>2.16.1</jackson.version> |
| 72 | + <plexus-archiver.version>4.8.0</plexus-archiver.version> |
68 | 73 |
|
69 | 74 | <maven.wagon.http.pool>false</maven.wagon.http.pool>
|
70 | 75 | </properties>
|
|
73 | 78 | <dependency>
|
74 | 79 | <groupId>org.apache.maven</groupId>
|
75 | 80 | <artifactId>maven-core</artifactId>
|
76 |
| - <version>3.8.1</version> |
| 81 | + <version>${maven.core.version}</version> |
| 82 | + <scope>provided</scope> |
77 | 83 | </dependency>
|
78 | 84 | <dependency>
|
79 | 85 | <groupId>org.apache.maven</groupId>
|
80 | 86 | <artifactId>maven-plugin-api</artifactId>
|
81 |
| - <version>3.6.0</version> |
| 87 | + <version>3.0</version> |
| 88 | + <scope>provided</scope> |
82 | 89 | </dependency>
|
83 | 90 | <dependency>
|
84 | 91 | <groupId>org.apache.maven.plugin-tools</groupId>
|
85 | 92 | <artifactId>maven-plugin-annotations</artifactId>
|
86 |
| - <version>3.6.0</version> |
87 |
| - <scope>provided</scope> |
88 |
| - </dependency> |
89 |
| - <dependency> |
90 |
| - <groupId>org.apache.maven</groupId> |
91 |
| - <artifactId>maven-archiver</artifactId> |
92 |
| - <version>3.3.0</version> |
| 93 | + <version>${maven-plugin-tools.version}</version> |
93 | 94 | </dependency>
|
94 | 95 | <dependency>
|
95 |
| - <groupId>org.apache.maven.plugins</groupId> |
96 |
| - <artifactId>maven-dependency-plugin</artifactId> |
97 |
| - <version>3.1.1</version> |
98 |
| - </dependency> |
99 |
| - <dependency> |
100 |
| - <groupId>org.codehaus.plexus</groupId> |
101 |
| - <artifactId>plexus-utils</artifactId> |
102 |
| - <version>3.2.0</version> |
| 96 | + <groupId>org.apache.commons</groupId> |
| 97 | + <artifactId>commons-text</artifactId> |
| 98 | + <version>${commons-text.version}</version> |
103 | 99 | </dependency>
|
104 | 100 | <dependency>
|
105 | 101 | <groupId>org.codehaus.plexus</groupId>
|
106 | 102 | <artifactId>plexus-archiver</artifactId>
|
107 |
| - <version>4.8.0</version> |
| 103 | + <version>${plexus-archiver.version}</version> |
108 | 104 | </dependency>
|
109 | 105 | <dependency>
|
110 | 106 | <groupId>com.fasterxml.jackson.core</groupId>
|
|
130 | 126 | <plugin>
|
131 | 127 | <groupId>org.apache.maven.plugins</groupId>
|
132 | 128 | <artifactId>maven-plugin-plugin</artifactId>
|
133 |
| - <version>3.6.0</version> |
| 129 | + <version>${maven-plugin-tools.version}</version> |
134 | 130 | <configuration>
|
135 | 131 | <goalPrefix>apigw</goalPrefix>
|
136 | 132 | <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
|
|
0 commit comments