This repository contains the code that goes with the Scala Design Patterns book.
The source code for the book is presented as amulti-module Maven project and it contains different modules for the following chapters:
-
Chapter 1 - The Design Patterns Out There and Setting Up Your Environment.
There is no code for this chapter. It provided the users with some skeletons.
-
Chapter 2 - Traits and Mixin Compositions.
a. Module name: traits.
-
Chapter 3 - Unification.
a. Module name: unification.
-
Chapter 4 - Abstract and Self Types.
a. Module name: abstract-types.
-
Chapter 5 - Aspect Oriented Programming and Components.
a. Module name: aop.
-
Chapter 6 - Creational Design Patterns.
a. Module name: creational-design-patterns.
-
Chapter 7 - Structural Design Patterns.
a. Module name: structural-design-patterns.
-
Chapter 8 - Behavioral Design Patterns - Part 1.
a. Module name: behavioral-design-patterns.
-
Chapter 9 - Behavioral Design Patterns - Part 2.
a. Module name: behavioral-design-patterns.
-
Chapter 10 - Functional Design Patterns – The Deep Theory.
a. Module name: deep-theory.
-
Chapter 11 - Functional Design Patterns – Applying What We Learned.
a. Module name: functional-design-patterns.
-
Chapter 12 - Real Life Applications.
a. Module name: real-life-applications.
b. Module name: job-scheduler.
Running the code is pretty straightforward from here and anyone with some minor Maven experience should manage.
mvn clean compile
mvn clean test
The test command will also run the compile one.
mvn clean package
The above command will package everything. You can find the jars in the target subfolder of the respective module folder.