typequery-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.avaje.ebeanorm</groupId>
<artifactId>typequery-maven-plugin</artifactId>
<version>1.5.1</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>org.avaje.ebeanorm</groupId>
<artifactId>typequery-maven-plugin</artifactId>
<version>1.5.1</version>
<packaging>maven-plugin</packaging>
<parent>
<groupId>org.avaje</groupId>
<artifactId>avaje-parent</artifactId>
<version>2.1</version>
</parent>
<scm>
<connection>scm:git:https://github.com/ebean-orm/typequery-maven-enhancer.git</connection>
<developerConnection>scm:git:https://github.com/ebean-orm/typequery-maven-enhancer.git</developerConnection>
<url>https://github.com/ebean-orm/typequery-maven-enhancer.git</url>
<tag>typequery-maven-plugin-1.5.1</tag>
</scm>
<dependencies>
<dependency>
<groupId>org.avaje.ebeanorm</groupId>
<artifactId>avaje-ebeanorm-typequery-agent</artifactId>
<version>1.5.1</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.0.5</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.3</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.3</version>
<configuration>
<goalPrefix>enhance</goalPrefix>
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
</configuration>
<executions>
<execution>
<id>default-descriptor</id>
<goals>
<goal>descriptor</goal>
</goals>
<phase>process-classes</phase>
</execution>
<execution>
<id>help-descriptor</id>
<goals>
<goal>helpmojo</goal>
</goals>
<phase>process-classes</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>