Skip to content
This repository was archived by the owner on Feb 10, 2021. It is now read-only.

Commit 83439ab

Browse files
author
Taras
committed
- upgrade to Java 10
- add a comment to AccountAnalyticsTest.java
1 parent 6df6c7c commit 83439ab

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

account-analytics/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<parent>
6-
<artifactId>java-8-exercises</artifactId>
6+
<artifactId>java-functional-features-exercises</artifactId>
77
<groupId>com.bobocode</groupId>
88
<version>1.0-SNAPSHOT</version>
99
</parent>

account-analytics/src/test/java/com/bobocode/AccountAnalyticsTest.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@
1616

1717
import static org.junit.Assert.assertEquals;
1818

19+
/**
20+
* The helper method of this test class do not use Stream API intentionally. You should try to find a stream-based
21+
* solutions for {@link AccountAnalytics} by yourself.
22+
*/
1923
@RunWith(JUnit4.class)
2024
public class AccountAnalyticsTest {
2125

account-data/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<parent>
6-
<artifactId>java-8-exercises</artifactId>
6+
<artifactId>java-functional-features-exercises</artifactId>
77
<groupId>com.bobocode</groupId>
88
<version>1.0-SNAPSHOT</version>
99
</parent>

math-functions/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<parent>
6-
<artifactId>java-8-exercises</artifactId>
6+
<artifactId>java-functional-features-exercises</artifactId>
77
<groupId>com.bobocode</groupId>
88
<version>1.0-SNAPSHOT</version>
99
</parent>

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66

77
<groupId>com.bobocode</groupId>
8-
<artifactId>java-8-exercises</artifactId>
8+
<artifactId>java-functional-features-exercises</artifactId>
99
<packaging>pom</packaging>
1010
<version>1.0-SNAPSHOT</version>
1111
<modules>
@@ -15,8 +15,8 @@
1515
</modules>
1616

1717
<properties>
18-
<maven.compiler.source>1.8</maven.compiler.source>
19-
<maven.compiler.target>1.8</maven.compiler.target>
18+
<maven.compiler.source>1.10</maven.compiler.source>
19+
<maven.compiler.target>1.10</maven.compiler.target>
2020
</properties>
2121

2222
<dependencies>
@@ -28,7 +28,7 @@
2828
<dependency>
2929
<groupId>org.projectlombok</groupId>
3030
<artifactId>lombok</artifactId>
31-
<version>1.16.10</version>
31+
<version>1.18.0</version>
3232
</dependency>
3333
</dependencies>
3434

0 commit comments

Comments
 (0)