Skip to content

Commit

Permalink
Jakarta validator API and EL
Browse files Browse the repository at this point in the history
No javax artifacts left.
  • Loading branch information
runeflobakk committed Oct 14, 2019
1 parent 12a6777 commit c6a5034
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 9 deletions.
4 changes: 2 additions & 2 deletions NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ specific language governing permissions and limitations
under the License.

This project includes:
Bean Validation API under Apache License 2.0
ClassMate under The Apache Software License, Version 2.0
digipost-data-types under The Apache Software License, Version 2.0
Expression Language 3.0 under CDDL + GPLv2 with classpath exception
Hibernate Validator Engine under Apache License 2.0
Jackson datatype: JSR310 under The Apache Software License, Version 2.0
Jackson-annotations under The Apache Software License, Version 2.0
Jackson-core under The Apache Software License, Version 2.0
jackson-databind under The Apache Software License, Version 2.0
Jakarta Bean Validation API under Apache License 2.0
Jakarta Expression Language 3.0 under EPL 2.0 or GPL2 w/ CPE
JBoss Logging 3 under Apache License, version 2.0
Project Lombok under The MIT License

20 changes: 13 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,20 +55,26 @@
<artifactId>jackson-core</artifactId>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>2.0.1.Final</version>
<groupId>jakarta.validation</groupId>
<artifactId>jakarta.validation-api</artifactId>
<version>2.0.2</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator</artifactId>
<version>6.0.16.Final</version>
<version>6.0.17.Final</version>
<scope>runtime</scope>
<exclusions>
<exclusion>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>javax.el</artifactId>
<version>3.0.0</version>
<artifactId>jakarta.el</artifactId>
<version>3.0.3</version>
<scope>runtime</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit c6a5034

Please sign in to comment.