File tree 2 files changed +23
-1
lines changed
module-info-compiler-maven-plugin
2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change 39
39
<groupId >org.glavo</groupId >
40
40
<artifactId >module-info-compiler</artifactId >
41
41
<version >2.0</version >
42
- <type >jar</type >
43
42
</dependency >
44
43
<dependency >
45
44
<groupId >org.apache.maven</groupId >
103
102
</plugins >
104
103
</pluginManagement >
105
104
<plugins >
105
+ <plugin >
106
+ <groupId >org.apache.maven.plugins</groupId >
107
+ <artifactId >maven-dependency-plugin</artifactId >
108
+ <executions >
109
+ <execution >
110
+ <id >analyze</id >
111
+ <phase >verify</phase >
112
+ <goals >
113
+ <goal >analyze-only</goal >
114
+ </goals >
115
+ <configuration >
116
+ <!--
117
+ The dependency on org.glavo.module-info-compile is incorrectly
118
+ being reported as unused when running the Windows 2022 CI agent only.
119
+ Ignoring this dependency specifically is not happening on that agent either
120
+ so skip the plugin entirely.
121
+ -->
122
+ <skip >true</skip >
123
+ </configuration >
124
+ </execution >
125
+ </executions >
126
+ </plugin >
106
127
<plugin >
107
128
<groupId >org.apache.maven.plugins</groupId >
108
129
<artifactId >maven-plugin-plugin</artifactId >
Original file line number Diff line number Diff line change 136
136
<groupId >org.apache.maven.plugins</groupId >
137
137
<artifactId >maven-compiler-plugin</artifactId >
138
138
<configuration >
139
+ <encoding >UTF-8</encoding >
139
140
<source >1.8</source >
140
141
<target >1.8</target >
141
142
<maxmem >2048m</maxmem >
You can’t perform that action at this time.
0 commit comments