File tree Expand file tree Collapse file tree 2 files changed +27
-2
lines changed Expand file tree Collapse file tree 2 files changed +27
-2
lines changed Original file line number Diff line number Diff line change 1+ # No fancyness - we can use the new build infrastructure
2+ sudo : false
3+
14language :
2- java
5+ - java
6+
7+ jdk :
8+ - oraclejdk8
39
410before_script :
511 - pip install --user codecov
Original file line number Diff line number Diff line change 2727
2828 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
2929 <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
30- <maven .compiler.source>1.8 </maven .compiler.source>
30+ <maven .compiler.source>1.7 </maven .compiler.source>
3131 <maven .compiler.target>1.7</maven .compiler.target>
3232 </properties >
3333
138138 <build >
139139 <pluginManagement >
140140 <plugins >
141+ <plugin >
142+ <groupId >org.apache.maven.plugins</groupId >
143+ <artifactId >maven-enforcer-plugin</artifactId >
144+ <executions >
145+ <execution >
146+ <id >enforce-java</id >
147+ <goals >
148+ <goal >enforce</goal >
149+ </goals >
150+ <configuration >
151+ <rules >
152+ <requireJavaVersion >
153+ <version >1.8.0</version >
154+ </requireJavaVersion >
155+ </rules >
156+ </configuration >
157+ </execution >
158+ </executions >
159+ </plugin >
141160 </plugins >
142161 </pluginManagement >
143162 <plugins >
You can’t perform that action at this time.
0 commit comments