dashboard
repositories
activity
search
login
common
/
securis
summary
reflog
commits
tree
compare
forks
blame
|
history
|
raw
|
HEAD
#396 feature - Added i18n support to JS and HTML tags with AngularJS
Roberto Sánchez
2014-01-16
8f97df85eefe4d648f2002b8d68818ef6020c2df
[common/securis.git]
/
securis
/
src
/
main
/
resources
/
META-INF
/
persistence.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.0"
xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
<persistence-unit name="localdb" transaction-type="RESOURCE_LOCAL">
<description>SeCuris LocalDB</description>
<provider>org.hibernate.jpa.HibernatePersistenceProvider</provider>
<!-- <class>net.curisit.securis.db.UserSettingsUnits</class> -->
<properties>
<property name="javax.persistence.jdbc.driver" value="org.h2.Driver" />
<property name="javax.persistence.jdbc.url"
value="jdbc:h2:/tmp/.CurisIntegrity/db/curissecuris" />
<property name="javax.persistence.jdbc.user" value="curis" />
<property name="javax.persistence.jdbc.password" value="53curi5" />
<property name="hibernate.dialect" value="org.hibernate.dialect.H2Dialect" />
</properties>
</persistence-unit>
</persistence>