Skip to content

Commit 6403f0b

Browse files
committed
Added changelog and upgraded to java 11
1 parent ae62ee6 commit 6403f0b

File tree

4 files changed

+29
-3
lines changed

4 files changed

+29
-3
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
# Change Log
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](http://keepachangelog.com/)
6+
and this project adheres to [Semantic Versioning](http://semver.org/).
7+
8+
## [1.0.0] - 2023-10-23
9+
10+
First release version of the project
11+
12+
### Added
13+
- support for gradle 7.6, java 11, spark 3.4.1, scala 2.12 and delta 2.4.0
14+
- support to read file:// and s3://
15+
- Added CHANGELOG.md
16+
- Added example spark code
17+
- Added example classes `dev.template.spark.Main` and `dev.template.spark.CovidDataPartitioner`
18+
- Added tests for the above classes
19+
- Added scalaCodeCoverage
20+
- Added spotless, checkstyle, and spotbugs

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,19 @@ A Spark bootstrap project written in Scala with gradle as build tool.
1010

1111
## Libraries Included
1212

13-
- JavaVersion=1.8
13+
- JavaVersion=1.11
1414
- sparkVersion=3.4.1
1515
- scalaVersion=2.12
1616
- deltaVersion=2.4.0
1717

1818
### Build
1919

20+
`java -version`
21+
22+
openjdk version "11.0.20" 2023-07-18
23+
OpenJDK Runtime Environment Homebrew (build 11.0.20+0)
24+
OpenJDK 64-Bit Server VM Homebrew (build 11.0.20+0, mixed mode)
25+
2026
`./gradlew clean build`
2127

2228
### Test

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ apply from: "$rootDir/gradle/scoverage.gradle"
2020
group group
2121
version version
2222

23-
sourceCompatibility = JavaVersion.VERSION_1_8
24-
targetCompatibility = JavaVersion.VERSION_1_8
23+
sourceCompatibility = JavaVersion.VERSION_11
24+
targetCompatibility = JavaVersion.VERSION_11
2525

2626
configurations {
2727
provided
File renamed without changes.

0 commit comments

Comments
 (0)