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
+ <ignoredDependencies >
117
+ <!--
118
+ This dependency is incorrectly being reported as unused
119
+ on Windows 2022 CI runs.
120
+ -->
121
+ <ignoredDependency >org.glavo:module-info-compiler</ignoredDependency >
122
+ </ignoredDependencies >
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