Personalfragebogen 2.0 is a personal data management software solution, supporting companies of any size in hiring new employees more efficiently. Our product improves the hiring process by automating the collection of personal data during the hiring procedure, and provides aid in managing the collected data. Thanks to the intuitive, user-friendly graphical user-interface our software is easy to be deployed and used in any sector. Compared to the current Excel sheet based solution, our software will require much less manual interaction, which will save our clients time and money.
- Clone the project using
git clone git@github.com:JOBAA/amos-ss15-proj4.git
- Change to the project directory using
cd amos-ss15-proj4
- Run
./gradlew idea
or./gradlew eclipse
, depending on which IDE you use. - Load the project in the IDE using "Import existing (Gradle) Project" or similar.
git clone git@github.com:JOBAA/amos-ss15-proj4.git
cd amos-ss15-proj4
./gradlew idea # For IntelliJ Idea
./gradlew eclipse # For Eclipse
To get a list of available commands, use ./gradlew tasks
.
Configuration is held in YAML files. We have a main configuration with application wide configuration. Then, there is a developer specific configuration file which overrides any configuration that a developer might have locally. To enable this, just rename the file:
# Linux
mv src/main/resources/config/application-developer-specific.yml{.sample,}
# Windows
rename-item -path src/main/resources/config/application-developer-specific.yml.sample -newname application-developer-specific.yml
This developer specific configuration file is ignored in our .gitignore and should not be committed to version control,
since most probably it contains sensitive information. Further comments on what is loaded in which profile can be found
in the file src/main/resources/config/application.yml
.
To not confuse the terms Configuration and Profile: a configuration can contain multiple profiles. For example, we
could have a configuration use-in-memory-db
and a configuration load-sql-from-file-on-startup
. These could be
combined (and will be resolved hierarchically),
as seen in the Spring Boot documentation.
If you want to run the tests using for example ./gradlew test
.
We need to have our license at the start of every file. This can be done manually or automatically.
The gradle plugin we use (com.github.hierynomus.license
) introduces two tasks:
1. license : Checks for header consistency.
2. licenseFormat : Applies the header (`LICENSE.header`) in files missing it
Yes, there are more than two tasks introduced (6 to be precise). The ones that additionally include the Main
or
Test
part in their name. These however just cover the respective source set and not all source sets. Thus, you most
probably do not need them.
Take the license from one of the existing files and copy-paste it over to the new file. Make sure that there is no
newline between the license and the package ...
part.
Name | Comments | License |
---|---|---|
Spring Framework (4.1.6) | Java based Web Framework | Apache License v2.0 |
Java SE (7u79) | Fundamental Platform | Oracle Binary Code License |
jQuery (2.1.3) | JavaScript library | MIT license |
Selenium (2.45.0) | UI Testing | Apache 2.0 License |
JUnit (4.12) | Java Unit Testing Framework | Eclipse Public License 1.0 |
Hibernate ORM (4.3.9) | ORM System for persistence | LGPL V2.1 |
PostgreSQL (9.4.1) | Database Management System | PostgreSQL Licence |
Tomcat 7.0.61 | For deployment | Apache License v2.0 |