diff options
author | Carlos Freund <carlosfreund@googlemail.com> | 2016-02-03 14:40:02 +0100 |
---|---|---|
committer | Teemu Suo-Anttila <teemusa@vaadin.com> | 2016-03-08 13:59:10 +0200 |
commit | 53c2f775fc6a5a8649b698dc47695cf4f0f7d0e1 (patch) | |
tree | 41a3b8ca7af34470d93b7e2ed77976a4d5526718 | |
parent | 0023fcf054b00400f1faabf78cae8744f6797237 (diff) | |
download | vaadin-framework-53c2f775fc6a5a8649b698dc47695cf4f0f7d0e1.tar.gz vaadin-framework-53c2f775fc6a5a8649b698dc47695cf4f0f7d0e1.zip |
Rename jpacontainer-addon to jpacontainer in documentation.
The add-on itself was renamed to "jpacontainer" a few years ago.
Change-Id: If27debc091ae2aefa5a67ae4d95a36dffce395f4
-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. - - - - - - |