Skip to content

Commit ffec251

Browse files
committed
fix pom
1 parent 13b3c55 commit ffec251

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

client/CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
CHANGES
22

33
4.0.0 (Aug 19, 2020)
4+
- Deprecated Java 7 support. Java 8 is the minimum supported version for this and future releases.
45
- Added support for the new Split streaming architecture. When enabled (default), the SDK will not poll for updates but instead receive notifications every time there's a change in your environments, allowing to process those much quicker. If disabled or in the event of an issue, the SDK will fallback to the known polling mechanism to provide a seamless experience.
56
- Updated the default of featuresRefreshRate to 60 seconds.
67

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@
6666
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
6767
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
6868
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
69-
<maven.compiler.source>1.7</maven.compiler.source>
70-
<maven.compiler.target>1.7</maven.compiler.target>
69+
<maven.compiler.source>1.8</maven.compiler.source>
70+
<maven.compiler.target>1.8</maven.compiler.target>
7171
</properties>
7272
<modules>
7373
<module>testing</module>
@@ -80,8 +80,8 @@
8080
<artifactId>maven-compiler-plugin</artifactId>
8181
<version>3.3</version>
8282
<configuration>
83-
<source>1.7</source>
84-
<target>1.7</target>
83+
<source>1.8</source>
84+
<target>1.8</target>
8585
</configuration>
8686
</plugin>
8787
<!-- Release plugin -->
@@ -146,7 +146,7 @@
146146
</goals>
147147
<configuration>
148148
<additionalJOptions>-Xdoclint:none</additionalJOptions>
149-
<source>1.7</source>
149+
<source>1.8</source>
150150
</configuration>
151151
</execution>
152152
</executions>

0 commit comments

Comments
 (0)