lint-trap-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.willowtreeapps.android.maven.plugins</groupId> <artifactId>lint-trap-maven-plugin</artifactId> <version>1.0.4</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> <groupId>com.willowtreeapps.android.maven.plugins</groupId> <artifactId>lint-trap-maven-plugin</artifactId> <packaging>maven-plugin</packaging> <version>1.0.4</version> <name>Linttrap Android Maven Plugin</name> <inceptionYear>2013</inceptionYear> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <properties> <plexus-utils.version>3.0.8</plexus-utils.version> <maven-plugin-api.version>3.0.4</maven-plugin-api.version> <maven-plugin-plugin.version>3.2</maven-plugin-plugin.version> <maven-compiler-plugin.version>3.1</maven-compiler-plugin.version> <site-maven-plugin.version>0.8</site-maven-plugin.version> <maven-site-plugin.version>3.3</maven-site-plugin.version> <wagon-ssh.version>2.5</wagon-ssh.version> </properties> <scm> <connection>scm:git:git@github.com:willowtreeapps/lint-trap.git</connection> <developerConnection>scm:git:git@github.com:willowtreeapps/lint-trap.git</developerConnection> <url>https://github.com/willowtreeapps/lint-trap</url> </scm> <organization> <name>WillowTree Apps, Inc.</name> <url>http://www.willowtreeapps.com/</url> </organization> <developers> <developer> <name>Charlie Fairchild</name> <email>charles.fairchild@willowtreeapps.com</email> </developer> </developers> <description> A maven plugin to run and configure the Android Lint tool. </description> <issueManagement> <system>github</system> <url>https://github.com/willowtreeapps/lint-trap/issues</url> </issueManagement> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>${maven-plugin-api.version}</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>${plexus-utils.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>${maven-plugin-plugin.version}</version> <configuration> <!-- see http://jira.codehaus.org/browse/MNG-5346 --> <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> </configuration> <!--The plugin descriptor file is generated and built into the jar at META-INF/maven/plugin.xml.--> <executions> <execution> <id>mojo-descriptor</id> <goals> <goal>descriptor</goal> </goals> </execution> <!-- For generating a help goal on this plugin. --> <execution> <id>help-goal</id> <goals> <goal>helpmojo</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>${jdk.version}</source> <target>${jdk.version}</target> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>docs</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>com.github.github</groupId> <artifactId>site-maven-plugin</artifactId> <version>${site-maven-plugin.version}</version> <inherited>false</inherited> <configuration> <message>Creating site for ${project.version}</message> </configuration> <executions> <execution> <goals> <goal>site</goal> </goals> <phase>site</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>${maven-site-plugin.version}</version> <configuration> <outputEncoding>UTF-8</outputEncoding> </configuration> <dependencies> <dependency> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh</artifactId> <version>${wagon-ssh.version}</version> </dependency> </dependencies> </plugin> </plugins> </build> </profile> <profile> <id>release</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>${maven-plugin-plugin.version}</version> </plugin> </plugins> </reporting> </project>