Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
si1718-example-project-persistence
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Daniel González Peña
si1718-example-project-persistence
Commits
340f8035
Commit
340f8035
authored
Nov 03, 2017
by
Daniel González Peña
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial commit
parents
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
65 additions
and
0 deletions
+65
-0
README.md
README.md
+1
-0
pom.xml
pom.xml
+64
-0
No files found.
README.md
0 → 100644
View file @
340f8035
# SI 17/18 Example Project: Persistence Layer
pom.xml
0 → 100644
View file @
340f8035
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
dgpena
</groupId>
<artifactId>
si-example-persistence
</artifactId>
<version>
0.0.1-SNAPSHOT
</version>
<dependencies>
<dependency>
<groupId>
junit
</groupId>
<artifactId>
junit
</artifactId>
<version>
4.11
</version>
</dependency>
<!-- JPA -->
<dependency>
<groupId>
mysql
</groupId>
<artifactId>
mysql-connector-java
</artifactId>
<version>
5.1.21
</version>
</dependency>
<dependency>
<groupId>
org.hibernate
</groupId>
<artifactId>
hibernate-entitymanager
</artifactId>
<version>
4.1.8.Final
</version>
</dependency>
<!-- Bean Validation (hibernate implementation) -->
<dependency>
<groupId>
javax.validation
</groupId>
<artifactId>
validation-api
</artifactId>
<version>
1.1.0.Final
</version>
</dependency>
<dependency>
<groupId>
org.hibernate
</groupId>
<artifactId>
hibernate-validator
</artifactId>
<version>
5.0.1.Final
</version>
</dependency>
<dependency>
<!-- requiered by hibernate-validator -->
<groupId>
javax.el
</groupId>
<artifactId>
javax.el-api
</artifactId>
<version>
2.2.4
</version>
</dependency>
<dependency>
<!-- requiered by hibernate-validator -->
<groupId>
org.glassfish.web
</groupId>
<artifactId>
javax.el
</artifactId>
<version>
2.2.4
</version>
</dependency>
<!-- CDI (used for injecting EntityManager on ContraintValidators) -->
<dependency>
<groupId>
javax.enterprise
</groupId>
<artifactId>
cdi-api
</artifactId>
<version>
1.1
</version>
</dependency>
<dependency>
<!-- not used in simple Tomcat or Java SE environments -->
<groupId>
org.hibernate
</groupId>
<artifactId>
hibernate-validator-cdi
</artifactId>
<version>
5.1.0.Alpha1
</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment