Projekt

Obecné

Profil

« Předchozí | Další » 

Revize f5b61793

Přidáno uživatelem Ondřej Váně před téměř 4 roky(ů)

Release version 1.0.0

Zobrazit rozdíly:

README.md
1 1
# AntiPatternDetectionApp
2
Basic web application for anti pattern detection
2
This application was created as part of the thesis. It is used for analysis and detection of anti-patterns in project data.
3

  
4
## Thesis abstract
5
The goal of this thesis is to analyze and automatically detect anti-patterns in the data of project management tools using SPADe tools. The SPADe tool is used to collect data from ALM tools and search for bad practices (anti-patterns) in project data. In order to develop this thesis, an analysis of the available anti-patterns was performed and then a subset was selected for further investigation. In the next part, the detection of the analyzed anti-patterns was implemented using SQL queries and Java programming language was used to process the results of these queries. As an extra feature of this thesis, going beyond the scope of the original assignment, a support web application for running the detection process of implemented anti-patters and results presentation was also developed. Furthermore, an experiment was performed on a selected sets of anti-patterns and project data. The success of the detection was verified by comparing the results to those from a manual anti-pattern detection in project data from the source ALM tools. Detection success was successful at 93.65 % compared to manual control.
6

  
7
## Analyzed Anti-Patterns
8
In version 1.0.0 of this application, the detection of the following Anti-Patterns is implemented:
9
* Business As Usual
10
* Long Or Non-Existant Feedback Loops
11
* Ninety-NinetyRule
12
* RoadToNowhere
13
* SpecifyNothing
14
* Too Long Sprint
15
* Varying Sprint Length
16

  
17
## Run
18
### Tools to run
19
It will need the following tools to run the application:
20
* Docker
21
* Docker Compose
22
### Run application
23
The following list describes the steps to run (you will need):
24
1. Open terminal.
25
2. Move to the root folder of this project (AntiPatternDetectionApp).
26
3. Build docker images with command `docker-compose build`.
27
4. Create and run all containers with command `docker-compose run`.
28
5. Open phpMyAdmin on docker address on port 8082.
29
6. Create database with name spade using command `CREATE DATABASE spade;`.
30
7. Restore database from file `db_dump.sql` located in project root folder.
31
8. Run all commands from file `config.sql` located in project root folder.
32

  
pom.xml
10 10
	</parent>
11 11
	<groupId>cz.zcu.fav.kiv</groupId>
12 12
	<artifactId>anti-pattern-detection-app</artifactId>
13
	<version>0.0.1-SNAPSHOT</version>
13
	<version>1.0.0</version>
14 14
	<packaging>war</packaging>
15 15
	<name>anti-pattern-detection-app</name>
16 16
	<description>Basic web application for anti pattern detection</description>

Také k dispozici: Unified diff