Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JSR-303 validator failed to initialize #53

Closed
essobedo opened this issue Jun 16, 2016 · 6 comments
Closed

JSR-303 validator failed to initialize #53

essobedo opened this issue Jun 16, 2016 · 6 comments

Comments

@essobedo
Copy link

essobedo commented Jun 16, 2016

While trying to figure out why I get in my project error of types:

  • JSR-303 validator failed to initialize: Unable to instantiate Configuration
  • JSR-303 validator failed to initialize: HV000183: Unable to load 'javax.el.ExpressionFactory'. Check that you have the EL dependencies on the classpath, or use ParameterMessageInterpolator instead

I realized that If I add the following dependency to the plugin jcabi-maven-plugin I don't have the errors anymore

<dependencies>
    <dependency>
       <groupId>javax.el</groupId>
       <artifactId>javax.el-api</artifactId>
       <version>3.0.1-b04</version>
       <scope>runtime</scope>
    </dependency>
</dependencies>

The complete plugin configuration that works on my side is then:

 <plugin>
    <groupId>com.jcabi</groupId>
    <artifactId>jcabi-maven-plugin</artifactId>
    <version>0.13.2</version>
    <executions>
        <execution>
            <id>jcabi-versionalize-packages</id>
            <goals>
                <goal>versionalize</goal>
            </goals>
        </execution>
    </executions>
    <dependencies>
        <dependency>
            <groupId>javax.el</groupId>
            <artifactId>javax.el-api</artifactId>
            <version>3.0.1-b04</version>
            <scope>runtime</scope>
        </dependency>
    </dependencies>
</plugin>
@dmarkov
Copy link

dmarkov commented Jun 20, 2016

@yegor256 dispatch this issue please, see par.21

yegor256 pushed a commit that referenced this issue Jun 22, 2016
@yegor256
Copy link
Member

@rultor release, tag is 0.14.1

@rultor
Copy link
Contributor

rultor commented Jun 22, 2016

@rultor release, tag is 0.14.1

@yegor256 OK, I will release it now. Please check the progress here

@rultor
Copy link
Contributor

rultor commented Jun 22, 2016

@rultor release, tag is 0.14.1

@yegor256 Done! FYI, the full log is here (took me 10min)

@yegor256
Copy link
Member

@essobedo should be fine in version 0.14.1 thanks!

@essobedo
Copy link
Author

@yegor256 many thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants