[ 
https://issues.apache.org/jira/browse/OPENJPA-2172?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13631776#comment-13631776
 ] 

ASF subversion and git services commented on OPENJPA-2172:
----------------------------------------------------------

Commit 1468108 from kwsutter
[ https://svn.apache.org/r1468108 ]

OPENJPA-2172.  Remove the dependency on the slf4j runtime bundle from 
openjpa-all.jar.  Also, modified the persistence.xml files for the OpenBooks 
sample to set the Validation-Mode to None (since it's not being used).  This 
way, we can avoid the dependency altogether.  This also required the update to 
the persistence.xml files to point at the JPA 2.0 xsd files.
                
> openjpa-all jar is missing slf4j runtime dependency
> ---------------------------------------------------
>
>                 Key: OPENJPA-2172
>                 URL: https://issues.apache.org/jira/browse/OPENJPA-2172
>             Project: OpenJPA
>          Issue Type: Bug
>          Components: samples, validation
>    Affects Versions: 2.2.0, 2.3.0, 2.2.1
>            Reporter: Kevin Sutter
>            Assignee: Kevin Sutter
>             Fix For: 2.3.0, 2.2.2
>
>
> I just tried the JSE version of the OpenBooks example 
> (../openjpa-examples/openbooks) and it turns out that we're missing the SLF4J 
> runtime dependency in our openjpa-all jar file.  This SLF4J dependency comes 
> about because of our dependency on Bean Validation (bval).  We're pulling in 
> the SLF4J API from slf4j-api, but we're missing the runtime from slf4j-simple.
> There are two resolutions to this.  We can modify the ../openjpa-all/pom.xml 
> to include the following dependency:
>             <dependency>
>                 <groupId>org.slf4j</groupId>
>                 <artifactId>slf4j-simple</artifactId>
>                 <version>${slf4jVersion}</version>
>             </dependency>
> Or, we can tell OpenJPA that OpenBooks does not depend on bean validation 
> (which it doesn't).  We can do this via this additional configuration 
> property in the persistence.xml for the OpenBooks sample:
>     <validation-mode>NONE</validation-mode>
> The most complete solution is to modify the pom.xml when building the 
> openjpa-all jar.  The unfortunate thing with this approach is that we have 
> already released 2.2.0 which already is missing this slf4j runtime.  Maybe 
> we'll just have to add a "readme" to that download.  We can fix it in 2.2.x 
> and trunk though.  And, if somebody hits this with the 2.2.0 release, 
> hopefully they are not using bean validation and they can set the 
> validation-mode to NONE.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to