vertx-jsonpath
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.noenv</groupId> <artifactId>vertx-jsonpath</artifactId> <version>5.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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"> <modelVersion>4.0.0</modelVersion> <groupId>com.noenv</groupId> <artifactId>vertx-jsonpath</artifactId> <version>5.0.0</version> <parent> <groupId>io.vertx</groupId> <artifactId>vertx5-parent</artifactId> <version>12</version> </parent> <name>vertx-wiremongo</name> <description>Lightweight JsonPath implementation for Vert.x</description> <url>http://github.com/NoEnv/vertx-jsonpath</url> <properties> <stack.version>5.0.0</stack.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-dependencies</artifactId> <version>${stack.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <organization> <name>NoEnv</name> </organization> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Josef Pfleger</name> <email>josef@noenv.com</email> <organization>NoEnv</organization> <organizationUrl>https://noenv.com</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/noenv/vertx-jsonpath.git</connection> <developerConnection>scm:git:ssh://github.com:noenv/vertx-jsonpath.git</developerConnection> <url>http://github.com/noenv/vertx-jsonpath</url> </scm> <dependencies> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-core</artifactId> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-codegen-api</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-codegen-json</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-docgen-api</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-rx-java2</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-rx-java2-gen</artifactId> <version>${stack.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-rx-java3</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-rx-java3-gen</artifactId> <version>${stack.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-core</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-unit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> <version>4.13.2</version> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <id>rx-ify</id> <phase>generate-sources</phase> <goals> <goal>compile</goal> </goals> <configuration> <annotationProcessorPaths> <annotationProcessorPath> <groupId>io.vertx</groupId> <artifactId>vertx-codegen</artifactId> <classifier>processor</classifier> </annotationProcessorPath> <annotationProcessorPath> <groupId>io.vertx</groupId> <artifactId>vertx-rx-java2-gen</artifactId> <version>${stack.version}</version> </annotationProcessorPath> <annotationProcessorPath> <groupId>io.vertx</groupId> <artifactId>vertx-rx-java3-gen</artifactId> <version>${stack.version}</version> </annotationProcessorPath> </annotationProcessorPaths> </configuration> </execution> <execution> <id>default-compile</id> <configuration> <annotationProcessorPaths> <annotationProcessorPath> <groupId>io.vertx</groupId> <artifactId>vertx-codegen</artifactId> <classifier>processor</classifier> </annotationProcessorPath> <annotationProcessorPath> <groupId>io.vertx</groupId> <artifactId>vertx-docgen-processor</artifactId> <classifier>processor</classifier> </annotationProcessorPath> </annotationProcessorPaths> </configuration> </execution> </executions> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <argLine>${surefireArgLine}</argLine> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.13</version> <executions> <execution> <id>pre-unit-test</id> <goals> <goal>prepare-agent</goal> </goals> <configuration> <destFile>${sonar.jacoco.reportPath}</destFile> <propertyName>surefireArgLine</propertyName> </configuration> </execution> <execution> <id>post-unit-test</id> <phase>test</phase> <goals> <goal>report</goal> </goals> <configuration> <dataFile>${sonar.jacoco.reportPath}</dataFile> <outputDirectory>${project.reporting.outputDirectory}/jacoco</outputDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>sign</id> <activation> <property> <name>release</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven.javadoc.plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <sourceFileExcludes> <sourceFileExclude>**/package-info.java</sourceFileExclude> <sourceFileExclude>**/impl/**</sourceFileExclude> </sourceFileExcludes> <sourceFileIncludes> <sourceFileInclude>com/noenv/**/*.java</sourceFileInclude> </sourceFileIncludes> <additionalparam>-Xdoclint:none --allow-script-in-comments</additionalparam> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>package-docs</id> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>true</autoPublish> <centralSnapshotsUrl>https://central.sonatype.com/repository/maven-snapshots/</centralSnapshotsUrl> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>