You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by rm...@apache.org on 2017/06/18 18:35:39 UTC

svn commit: r1799113 - /tomee/site/trunk/generators/site-tomee-ng/src/main/jbake/content/developer/migration/tomee-1-to-7.adoc

Author: rmannibucau
Date: Sun Jun 18 18:35:38 2017
New Revision: 1799113

URL: http://svn.apache.org/viewvc?rev=1799113&view=rev
Log:
avoid numbered list

Modified:
    tomee/site/trunk/generators/site-tomee-ng/src/main/jbake/content/developer/migration/tomee-1-to-7.adoc

Modified: tomee/site/trunk/generators/site-tomee-ng/src/main/jbake/content/developer/migration/tomee-1-to-7.adoc
URL: http://svn.apache.org/viewvc/tomee/site/trunk/generators/site-tomee-ng/src/main/jbake/content/developer/migration/tomee-1-to-7.adoc?rev=1799113&r1=1799112&r2=1799113&view=diff
==============================================================================
--- tomee/site/trunk/generators/site-tomee-ng/src/main/jbake/content/developer/migration/tomee-1-to-7.adoc (original)
+++ tomee/site/trunk/generators/site-tomee-ng/src/main/jbake/content/developer/migration/tomee-1-to-7.adoc Sun Jun 18 18:35:38 2017
@@ -6,7 +6,7 @@
 
 == Breaking changes
 
-1. Artifact coordinates changes
+- Artifact coordinates changes
 
 GroupId changed from `org.apache.openejb` to `org.apache.tomee`.
 It includes maven plugins which use now `org.apache.tomee.maven` and the `javaee-api`.
@@ -14,7 +14,7 @@ It includes maven plugins which use now
 Versions of openejb and tomee are now aligned on 7.x and you don't need to use
 4.x and 1.x (or any variant) for openejb and tomee.
 
-2. JAX-RS 2 specification refined the sorting of providers. It can have side effects for message body
+- JAX-RS 2 specification refined the sorting of providers. It can have side effects for message body
 readers/writers which don't define their target mediatype properly like Jackson which uses wildcard instead of
 a json related mediatype. To solve it register a custom provider redefining the media type.
 
@@ -29,5 +29,5 @@ public class MyAppJsonProvider extends J
 }
 ----
 
-3. JPA and CDI are linked now, enabling JPA to use CDI for its components but CDI can use JPA too...
+- JPA and CDI are linked now, enabling JPA to use CDI for its components but CDI can use JPA too...
 to solve issues with hibernate you need to add either as system property or persistence unit `tomee.jpa.factory.lazy = true`.