Skip to content

Commit

Permalink
Merge pull request #6 from stackabletech/add-support-for-3.4.1-3.5.0
Browse files Browse the repository at this point in the history
Add support for 3.4.1 and 3.5.0
  • Loading branch information
maltesander authored Oct 10, 2023
2 parents 9294393 + 0440ff7 commit 17d11d7
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Build a simple report from the New York travel dataset.

# Build

mvn package -P spark-3.4.0
mvn package -P spark-3.5.0

# Run on Kubernetes

Expand Down
34 changes: 30 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,19 @@
</repositories>

<profiles>
<profile>
<id>spark-3.2.1</id>
<activation>
<property>
<name>spark-3.2.1</name>
</property>
</activation>
<properties>
<spark.version>3.2.1</spark.version>
<scala.version>2.12.15</scala.version>
<scala.binary.version>2.12</scala.binary.version>
</properties>
</profile>
<profile>
<id>spark-3.3.0</id>
<activation>
Expand Down Expand Up @@ -45,15 +58,28 @@
</properties>
</profile>
<profile>
<id>spark-3.2.1</id>
<id>spark-3.4.1</id>
<activation>
<property>
<name>spark-3.2.1</name>
<name>spark-3.4.1</name>
</property>
</activation>
<properties>
<spark.version>3.2.1</spark.version>
<scala.version>2.12.15</scala.version>
<spark.version>3.4.1</spark.version>
<scala.version>2.12.17</scala.version>
<scala.binary.version>2.12</scala.binary.version>
</properties>
</profile>
<profile>
<id>spark-3.5.0</id>
<activation>
<property>
<name>spark-3.5.0</name>
</property>
</activation>
<properties>
<spark.version>3.5.0</spark.version>
<scala.version>2.12.18</scala.version>
<scala.binary.version>2.12</scala.binary.version>
</properties>
</profile>
Expand Down

0 comments on commit 17d11d7

Please sign in to comment.