diff options
author | Carlos Freund <carlosfreund@googlemail.com> | 2016-02-03 14:40:02 +0100 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2016-02-29 13:30:20 +0000 |
commit | 0036de44f5477063fc59e430878a7fd361ed0ca0 (patch) | |
tree | e9856a8d3d5a993312f4ba12d8d2ea75f677b969 /documentation/jpacontainer | |
parent | 89f76b9dbad93260632ae1e025b607daa64d9f81 (diff) | |
download | vaadin-framework-0036de44f5477063fc59e430878a7fd361ed0ca0.tar.gz vaadin-framework-0036de44f5477063fc59e430878a7fd361ed0ca0.zip |
Rename jpacontainer-addon to jpacontainer in documentation.
The add-on itself was renamed to "jpacontainer" a few years ago.
Change-Id: I3bd2b17d9f76cc91ba1c380c64cd175d03119ef1
Diffstat (limited to 'documentation/jpacontainer')
-rw-r--r-- | documentation/jpacontainer/jpacontainer-installation.asciidoc | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/documentation/jpacontainer/jpacontainer-installation.asciidoc b/documentation/jpacontainer/jpacontainer-installation.asciidoc index b678746712..1981d3a6ed 100644 --- a/documentation/jpacontainer/jpacontainer-installation.asciidoc +++ b/documentation/jpacontainer/jpacontainer-installation.asciidoc @@ -61,12 +61,12 @@ The link:http://vaadin.com/directory[download page in Vaadin Directory] gives the dependency declaration needed for retrieving the Vaadin JPAContainer library with Maven. - +[subs="normal"] ---- <dependency> <groupId>com.vaadin.addon</groupId> - <artifactId>jpacontainer-addon</artifactId> - <version>3.1.0</version> + <artifactId>jpacontainer</artifactId> + <version>[replaceable]##3.2.0##</version> </dependency> ---- @@ -254,7 +254,7 @@ EclipseLink JPA, you can get log that includes all SQL statements with the ---- -<property name="eclipselink.logging.level" +<property name="eclipselink.logging.level" value="FINE" /> ---- @@ -269,7 +269,7 @@ tables before trying to create them. In production environments, you should use ---- -<property name="eclipselink.ddl-generation" +<property name="eclipselink.ddl-generation" value="drop-and-create-tables" /> ---- @@ -303,9 +303,3 @@ is in [filename]#WEB-INF/classes/META-INF# folder in the deployment. [filename]#persistence.xml# does not have [parameter]#exclude-unlisted-classes# defined as [literal]#++false++#, the persistent entity classes should be listed with [literal]#++<class>++# elements. - - - - - - |