Skip to content

tomekl007/manning_software_mistakes_and_tradeoffs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Book

This is a code for "Software Mistakes and Tradeoffs: Making good programming decisions"

The structure of the code

Each chapter has a dedicated folder for its code. In the src directory you will find the production code grouped per chatper. In the test directory you will find the java test code.

Some chapters are using code written in Scala language (i.e. chapter 05), you will find it in the dedicated scala_project. You can import the scala_project directly to your IDE, or run the scala test, in the context of this project:

cd scala_project
mvn clean test
mvn gatling:test

How to run the code

Once you do a git clone on the repository, you can build the project by using mvn. To compile the project, run the mvn compile. To run all tests, run mvn test command.

You can also import your code into IDE. In the IntelliJ IDEA, you need to open the project. It will automatically import it as a maven project and fetch all needed dependencies.

Code formatting

This project uses automatic code and XML format plugins to keep the consistent code style. To format the Java code, run:

mvn fmt:format

To format XML files (mainly pom.xml):

mvn au.com.acegi:xml-format-maven-plugin:3.1.1:xml-format