Skip to content

Commit 8d3764f

Browse files
committedJun 17, 2022
Compatible compilation with java 8
1 parent 491b31c commit 8d3764f

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed
 

‎pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>io.eigr</groupId>
66
<artifactId>spawn-springboot-sdk</artifactId>
7-
<version>0.1.7</version>
7+
<version>0.1.8</version>
88
<packaging>pom</packaging>
99
<name>spawn-springboot-sdk</name>
1010
<url>https://eigr.io</url>

‎spawn-springboot-examples/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>io.eigr</groupId>
66
<artifactId>spawn-springboot-examples</artifactId>
7-
<version>0.1.7</version>
7+
<version>0.1.8</version>
88
<name>spawn-springboot-examples</name>
99
<url>http://www.example.com</url>
1010

@@ -17,7 +17,7 @@
1717
<parent>
1818
<groupId>io.eigr</groupId>
1919
<artifactId>spawn-springboot-sdk</artifactId>
20-
<version>0.1.7</version>
20+
<version>0.1.8</version>
2121
</parent>
2222

2323
<dependencyManagement>
@@ -43,7 +43,7 @@
4343
<dependency>
4444
<groupId>io.eigr</groupId>
4545
<artifactId>spawn-springboot-starter</artifactId>
46-
<version>0.1.7</version>
46+
<version>0.1.8</version>
4747
</dependency>
4848

4949
<dependency>

‎spawn-springboot-starter/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>io.eigr</groupId>
66
<artifactId>spawn-springboot-starter</artifactId>
7-
<version>0.1.7</version>
7+
<version>0.1.8</version>
88
<name>spawn-springboot-starter</name>
99
<url>https://eigr.io</url>
1010

1111
<parent>
1212
<groupId>io.eigr</groupId>
1313
<artifactId>spawn-springboot-sdk</artifactId>
14-
<version>0.1.7</version>
14+
<version>0.1.8</version>
1515
</parent>
1616

1717
<properties>

‎spawn-springboot-starter/src/main/java/io/eigr/spawn/springboot/starter/internal/ActorClassGraphEntityScan.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
import org.springframework.core.type.filter.AnnotationTypeFilter;
1313

1414
import java.lang.annotation.Annotation;
15-
import java.lang.reflect.InaccessibleObjectException;
1615
import java.lang.reflect.Method;
1716
import java.time.Duration;
1817
import java.time.Instant;
@@ -94,7 +93,7 @@ private List<Entity> getEntities() {
9493
Entity.EntityMethod command = new Entity.EntityMethod(commandName, method, inputType, outputType);
9594

9695
commands.put(commandName, command);
97-
} catch (InaccessibleObjectException | SecurityException e) {
96+
} catch (SecurityException e) {
9897
log.error("Failure on load Actor Command", e);
9998
}
10099
}

0 commit comments

Comments
 (0)
Please sign in to comment.