grains-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.nullschool</groupId>
<artifactId>grains-plugin</artifactId>
<version>0.8.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2013 Cameron Beccario
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
~
~ grain plugin
~
~ @author Cameron Beccario
-->
<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>net.nullschool</groupId>
<artifactId>grains-master</artifactId>
<version>0.8.0</version>
<relativePath>../master/pom.xml</relativePath>
</parent>
<groupId>net.nullschool</groupId>
<artifactId>grains-plugin</artifactId>
<version>0.8.0</version>
<packaging>maven-plugin</packaging>
<name>plugin</name>
<description>Grains Generate Plugin</description>
<url>https://github.com/cambecc/grains</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>cambecc</id>
<name>Cameron Beccario</name>
<email>cambecc@nullschool.net</email>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:cambecc/grains.git</connection>
<developerConnection>scm:git:git@github.com:cambecc/grains.git</developerConnection>
<url>https://github.com/cambecc/grains.git</url>
<tag>grains-project-0.8.0</tag>
</scm>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>3.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.nullschool</groupId>
<artifactId>grains-generate</artifactId>
<version>0.8.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Build the plugin. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.0</version>
<configuration>
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
</configuration>
<executions>
<execution>
<id>mojo-descriptor</id>
<phase>process-classes</phase>
<goals><goal>descriptor</goal></goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>