migratory-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.nesscomputing.mojo</groupId>
<artifactId>migratory-maven-plugin</artifactId>
<version>4.2.0</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.nesscomputing.migratory</groupId>
<artifactId>migratory-parent</artifactId>
<version>4.2.0</version>
</parent>
<groupId>com.nesscomputing.mojo</groupId>
<artifactId>migratory-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<name>${project.artifactId}</name>
<properties>
<ness.root.dir>${project.parent.basedir}</ness.root.dir>
<ness.skip.check-build>true</ness.skip.check-build>
</properties>
<dependencies>
<dependency>
<groupId>com.nesscomputing.migratory</groupId>
<artifactId>migratory-core</artifactId>
</dependency>
<dependency>
<groupId>com.nesscomputing.mojo</groupId>
<artifactId>migratory-maven-common</artifactId>
</dependency>
<!-- 3rd party -->
<dependency>
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>org.jdbi</groupId>
<artifactId>jdbi</artifactId>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
</dependency>
<!-- maven -->
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
</dependency>
<dependency>
<groupId>com.nesscomputing.testing</groupId>
<artifactId>findbugs-annotations</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<executions>
<execution>
<id>help-mojo</id>
<goals>
<goal>helpmojo</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>descriptor</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<configuration>
<excludeFilterFile>${project.basedir}/src/tools/findbugsExclude.xml</excludeFilterFile>
</configuration>
</plugin>
</plugins>
</build>
</project>