File tree Expand file tree Collapse file tree 4 files changed +12
-9
lines changed Expand file tree Collapse file tree 4 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<classpath >
3
- <classpathentry kind =" src" output =" build/classes" path =" src" >
3
+ <classpathentry including = " **/*.java " kind =" src" output =" build/classes" path =" src" >
4
4
<attributes >
5
5
<attribute name =" optional" value =" true" />
6
6
<attribute name =" maven.pomderived" value =" true" />
7
7
</attributes >
8
8
</classpathentry >
9
- <classpathentry kind =" con" path =" org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7 " >
9
+ <classpathentry kind =" con" path =" org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8 " >
10
10
<attributes >
11
11
<attribute name =" maven.pomderived" value =" true" />
12
12
</attributes >
Original file line number Diff line number Diff line change 1
1
eclipse.preferences.version =1
2
- org.eclipse.jdt.core.compiler.codegen.targetPlatform =1.7
3
- org.eclipse.jdt.core.compiler.compliance =1.7
2
+ org.eclipse.jdt.core.compiler.codegen.targetPlatform =1.8
3
+ org.eclipse.jdt.core.compiler.compliance =1.8
4
+ org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures =disabled
4
5
org.eclipse.jdt.core.compiler.problem.forbiddenReference =warning
5
- org.eclipse.jdt.core.compiler.source =1.7
6
+ org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures =ignore
7
+ org.eclipse.jdt.core.compiler.release =disabled
8
+ org.eclipse.jdt.core.compiler.source =1.8
Original file line number Diff line number Diff line change 38
38
</scm >
39
39
40
40
<properties >
41
- <maven .compiler.source>1.7 </maven .compiler.source>
42
- <maven .compiler.target>1.7 </maven .compiler.target>
41
+ <maven .compiler.source>1.8 </maven .compiler.source>
42
+ <maven .compiler.target>1.8 </maven .compiler.target>
43
43
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
44
44
<maven-compiler-plugin .version>3.8.0</maven-compiler-plugin .version>
45
45
<maven-source-plugin .version>3.0.1</maven-source-plugin .version>
53
53
<dependency >
54
54
<groupId >org.slf4j</groupId >
55
55
<artifactId >slf4j-api</artifactId >
56
- <version >1.7.5 </version >
56
+ <version >2.0.16 </version >
57
57
</dependency >
58
58
</dependencies >
59
59
Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ public int next() throws IOException {
180
180
if (fileSize < 0 ) {
181
181
int type = in .getInt () & 0xFFFF ;
182
182
if (type != RES_XML_TYPE ) {
183
- throw new RuntimeException ();
183
+ throw new RuntimeException (String . format ( "Resource type was 0x%04X instead of XML_TYPE (0x0003)" , type ) );
184
184
}
185
185
fileSize = in .getInt ();
186
186
return START_FILE ;
You can’t perform that action at this time.
0 commit comments