Skip to content

Commit 57e3ed8

Browse files
authored
Merge pull request #157 from khmarbaise/issue-152
Fixes #152 - Prevent WARNINGs during airline-maven-plugin
2 parents 3ea5e86 + b4d7baa commit 57e3ed8

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

airline-maven-plugin/pom.xml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,14 @@
5757
<groupId>org.apache.maven</groupId>
5858
<artifactId>maven-core</artifactId>
5959
<version>3.8.6</version>
60+
<scope>provided</scope>
6061
</dependency>
6162

6263
<dependency>
6364
<groupId>org.apache.maven</groupId>
6465
<artifactId>maven-plugin-api</artifactId>
6566
<version>3.8.5</version>
67+
<scope>provided</scope>
6668
</dependency>
6769

6870
<dependency>
@@ -105,22 +107,16 @@
105107
<plugin>
106108
<groupId>org.apache.maven.plugins</groupId>
107109
<artifactId>maven-plugin-plugin</artifactId>
108-
<version>3.10.2</version>
110+
<version>3.15.1</version>
109111
<configuration>
110112
<goalPrefix>airline</goalPrefix>
111113
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
112114
</configuration>
113115
<executions>
114116
<execution>
115-
<id>mojo-descriptor</id>
116-
<goals>
117-
<goal>descriptor</goal>
118-
</goals>
119-
</execution>
120-
<execution>
121-
<id>help-goal</id>
122117
<goals>
123118
<goal>helpmojo</goal>
119+
<goal>descriptor</goal>
124120
</goals>
125121
</execution>
126122
</executions>
@@ -129,7 +125,7 @@
129125
<plugin>
130126
<groupId>org.apache.maven.plugins</groupId>
131127
<artifactId>maven-invoker-plugin</artifactId>
132-
<version>3.6.0</version>
128+
<version>3.9.1</version>
133129
<configuration>
134130
<localRepositoryPath>${project.build.directory}/it-repo</localRepositoryPath>
135131
<postBuildHookScript>verify</postBuildHookScript>
@@ -159,7 +155,7 @@
159155
<dependency>
160156
<groupId>org.apache.maven.shared</groupId>
161157
<artifactId>maven-verifier</artifactId>
162-
<version>1.6</version>
158+
<version>1.8.0</version>
163159
</dependency>
164160
</dependencies>
165161
</plugin>

0 commit comments

Comments
 (0)