-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
48dbdae
commit 2112964
Showing
138 changed files
with
7,496 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<!-- This module was also published with a richer model, Gradle metadata, --> | ||
<!-- which should be used instead. Do not delete the following line which --> | ||
<!-- is to indicate to Gradle or any Gradle module metadata file consumer --> | ||
<!-- that they should prefer consuming it instead. --> | ||
<!-- do_not_remove: published-with-gradle-metadata --> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>com.fasterxml.jackson.module</groupId> | ||
<artifactId>jackson-module-jsonSchema-parent</artifactId> | ||
<version>2.15.0-SNAPSHOT</version> | ||
</parent> | ||
<artifactId>jackson-module-jsonSchema-jakarta</artifactId> | ||
<name>jackson-module-jsonSchema-jakarta</name> | ||
<packaging>bundle</packaging> | ||
<description>Add-on module for Jackson (http://jackson.codehaus.org) to support | ||
JSON Schema (http://tools.ietf.org/html/draft-zyp-json-schema-03) version 3 generation. | ||
</description> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>jakarta.validation</groupId> | ||
<artifactId>jakarta.validation-api</artifactId> | ||
<version>3.0.2</version> | ||
</dependency> | ||
|
||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>${version.plugin.surefire}</version> | ||
<configuration> | ||
<excludes> | ||
<exclude>com/fasterxml/jackson/module/jsonSchema_jakarta/failing/*.java</exclude> | ||
</excludes> | ||
</configuration> | ||
</plugin> | ||
<!-- 28-Mar-2019, tatu: Add rudimentary JDK9+ module info. To build with JDK 8 | ||
will have to use `moduleInfoFile` as anything else requires JDK 9+ | ||
--> | ||
<plugin> | ||
<groupId>org.moditect</groupId> | ||
<artifactId>moditect-maven-plugin</artifactId> | ||
</plugin> | ||
<!-- 05-Jul-2020, tatu: Add generation of Gradle Module Metadata --> | ||
<plugin> | ||
<groupId>de.jjohannes</groupId> | ||
<artifactId>gradle-module-metadata-maven-plugin</artifactId> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
Oops, something went wrong.