File tree 2 files changed +30
-3
lines changed
2 files changed +30
-3
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
+
1
4
language :
2
- java
5
+ - java
6
+
7
+ jdk :
8
+ - oraclejdk8
3
9
4
10
before_script :
5
11
- pip install --user codecov
Original file line number Diff line number Diff line change 27
27
28
28
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
29
29
<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>
31
31
<maven .compiler.target>1.7</maven .compiler.target>
32
32
</properties >
33
33
138
138
<build >
139
139
<pluginManagement >
140
140
<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 >
141
160
</plugins >
142
161
</pluginManagement >
143
162
<plugins >
267
286
</tables >
268
287
<port >${dynamodblocal.port} </port >
269
288
<dist >${project.build.directory} /dynamodb-dist</dist >
270
- <arguments >-inMemory</arguments >
289
+ <arguments >
290
+ <argument >-inMemory</argument >
291
+ </arguments >
271
292
</configuration >
272
293
<executions >
273
294
<execution >
You can’t perform that action at this time.
0 commit comments