jsonschema2pojo-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jsonschema2pojo</groupId> <artifactId>jsonschema2pojo-maven-plugin</artifactId> <version>1.2.2</version> </dependency>
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>jsonschema2pojo</artifactId> <groupId>org.jsonschema2pojo</groupId> <version>1.2.2</version> </parent> <artifactId>jsonschema2pojo-maven-plugin</artifactId> <packaging>maven-plugin</packaging> <name>jsonschema2pojo-maven-plugin</name> <url>https://github.com/joelittlejohn/jsonschema2pojo</url> <build> <plugins> <plugin> <artifactId>maven-plugin-plugin</artifactId> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <executions> <execution> <phase>prepare-package</phase> <goals> <goal>site</goal> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>jsonschema2pojo-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-shared-utils</artifactId> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> </dependency> </dependencies> <reporting> <plugins> <plugin> <artifactId>maven-plugin-report-plugin</artifactId> </plugin> <plugin> <artifactId>maven-project-info-reports-plugin</artifactId> <reportSets> <reportSet> <reports> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> </project>