Skip to content

Commit 77b9095

Browse files
committed
declare maven core dependencies as provided
1 parent f60896a commit 77b9095

1 file changed

Lines changed: 13 additions & 7 deletions

File tree

  • tooling/conga-aem-maven-plugin

tooling/conga-aem-maven-plugin/pom.xml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -69,36 +69,42 @@
6969
<groupId>org.apache.maven</groupId>
7070
<artifactId>maven-plugin-api</artifactId>
7171
<version>${maven.version}</version>
72-
<scope>compile</scope>
72+
<scope>provided</scope>
73+
</dependency>
74+
<dependency>
75+
<groupId>org.apache.maven</groupId>
76+
<artifactId>maven-model</artifactId>
77+
<version>${maven.version}</version>
78+
<scope>provided</scope>
7379
</dependency>
7480
<dependency>
7581
<groupId>org.apache.maven</groupId>
7682
<artifactId>maven-core</artifactId>
7783
<version>${maven.version}</version>
78-
<scope>compile</scope>
84+
<scope>provided</scope>
7985
</dependency>
8086
<dependency>
8187
<groupId>org.apache.maven</groupId>
8288
<artifactId>maven-artifact</artifactId>
8389
<version>${maven.version}</version>
84-
<scope>compile</scope>
90+
<scope>provided</scope>
8591
</dependency>
8692
<dependency>
8793
<groupId>org.apache.maven</groupId>
8894
<artifactId>maven-compat</artifactId>
8995
<version>${maven.version}</version>
90-
<scope>compile</scope>
96+
<scope>provided</scope>
9197
</dependency>
9298
<dependency>
9399
<groupId>org.apache.maven</groupId>
94100
<artifactId>maven-archiver</artifactId>
95-
<version>3.4.0</version>
101+
<version>3.5.2</version>
96102
<scope>compile</scope>
97103
</dependency>
98104
<dependency>
99105
<groupId>org.apache.maven.plugin-tools</groupId>
100106
<artifactId>maven-plugin-annotations</artifactId>
101-
<version>3.2</version>
107+
<version>3.6.2</version>
102108
<scope>provided</scope>
103109
</dependency>
104110
<dependency>
@@ -146,7 +152,7 @@
146152
<plugin>
147153
<groupId>org.apache.maven.plugins</groupId>
148154
<artifactId>maven-plugin-plugin</artifactId>
149-
<version>3.5.2</version>
155+
<version>3.6.2</version>
150156
<configuration>
151157
<goalPrefix>conga-aem</goalPrefix>
152158
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>

0 commit comments

Comments
 (0)