Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinMlynarik committed Dec 5, 2016
2 parents d02b38c + bb6b786 commit 320df1d
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 8 deletions.
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# PA165 Library System [![Build Status](https://travis-ci.org/DavidLuptak/pa165-library-system.svg?branch=master)](https://travis-ci.org/DavidLuptak/pa165-library-system)

## Building the project (using Maven)

Run `mvn clean install` from the project directory.

## Documentation

JavaDoc is available at <https://davidluptak.github.io/pa165-library-system-javadoc/>.

## Description / Assignment

Create an information system for a public library. The system should keep track of book collections in library departments, library members as well as individual loaned items of every member. The system should be capable of providing information about all the members and books, what a member borrowed and when, who borrowed a certain book and what condition they returned the book in. Take into account that a person can borrow multiple books in a single loan.
Expand All @@ -11,7 +19,3 @@ Create an information system for a public library. The system should keep track
## Class Diagram

![Class Diagram](/misc/class.png)

## Building

Run `mvn clean install`.
2 changes: 1 addition & 1 deletion library-system-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>cz.muni.fi.pa165</groupId>
<artifactId>library-system</artifactId>
<version>0.2-SNAPSHOT</version>
<version>0.2</version>
</parent>

<artifactId>library-system-api</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ public interface UserFacade {
*
* @param userNewDTO to be created
* @param unencryptedPassword of user
* @return new user id
* @throws IllegalArgumentException if user is null
* @throws IllegalArgumentException if unencryptedPassword is null or empty
* @throws NoEntityFoundException if user does not exist
Expand Down
2 changes: 1 addition & 1 deletion library-system-persistence/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>cz.muni.fi.pa165</groupId>
<artifactId>library-system</artifactId>
<version>0.2-SNAPSHOT</version>
<version>0.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion library-system-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>cz.muni.fi.pa165</groupId>
<artifactId>library-system</artifactId>
<version>0.2-SNAPSHOT</version>
<version>0.2</version>
</parent>

<artifactId>library-system-service</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>cz.muni.fi.pa165</groupId>
<artifactId>library-system</artifactId>
<packaging>pom</packaging>
<version>0.2-SNAPSHOT</version>
<version>0.2</version>

<name>Library System Parent</name>

Expand Down

0 comments on commit 320df1d

Please sign in to comment.