File tree Expand file tree Collapse file tree 2 files changed +29
-2
lines changed
plugins/eclipse/releng/configuration Expand file tree Collapse file tree 2 files changed +29
-2
lines changed Original file line number Diff line number Diff line change 22
22
<properties >
23
23
<maven .test.skip>true</maven .test.skip>
24
24
<maven .deploy.skip>true</maven .deploy.skip>
25
- <tycho-plugin .version>4.0.9 </tycho-plugin .version>
25
+ <tycho-plugin .version>4.0.10 </tycho-plugin .version>
26
26
<apache .felix.version>2.2.12</apache .felix.version>
27
27
<maven .compiler.source>17</maven .compiler.source>
28
28
<maven .compiler.target>17</maven .compiler.target>
29
29
<maven .compiler.debug>true</maven .compiler.debug>
30
30
<maven .compiler.showWarnings>true</maven .compiler.showWarnings>
31
31
<maven .compiler.showDeprecation>true</maven .compiler.showDeprecation>
32
32
<compare .url>http://download.eclipse.org/modeling/emf/compare/updates/releases/3.3</compare .url>
33
+ <maven .required.version>3.9.0</maven .required.version>
33
34
</properties >
34
35
35
36
<repositories >
97
98
</environments >
98
99
</configuration >
99
100
</plugin >
101
+ <plugin >
102
+ <groupId >org.apache.maven.plugins</groupId >
103
+ <artifactId >maven-enforcer-plugin</artifactId >
104
+ <version >3.5.0</version >
105
+ <executions >
106
+ <execution >
107
+ <id >enforce-maven</id >
108
+ <goals >
109
+ <goal >enforce</goal >
110
+ </goals >
111
+ <configuration >
112
+ <rules >
113
+ <banDuplicatePomDependencyVersions />
114
+ <requireMavenVersion >
115
+ <version >3.8.6</version >
116
+ <message >Invalid Maven version. It should, at least, be 3.9.0</message >
117
+ </requireMavenVersion >
118
+ <requireJavaVersion >
119
+ <version >11</version >
120
+ <message >Invalid Java version. It should, at least, be 11</message >
121
+ </requireJavaVersion >
122
+ </rules >
123
+ </configuration >
124
+ </execution >
125
+ </executions >
126
+ </plugin >
100
127
101
128
</plugins >
102
129
Original file line number Diff line number Diff line change 204
204
<configuration >
205
205
<rules >
206
206
<requireMavenVersion >
207
- <version >3.5 .0</version >
207
+ <version >3.9 .0</version >
208
208
</requireMavenVersion >
209
209
</rules >
210
210
</configuration >
You can’t perform that action at this time.
0 commit comments