hermod-generator-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.hermod</groupId>
<artifactId>hermod-generator-maven-plugin</artifactId>
<version>0.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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.hermod</groupId>
<artifactId>hermod-java-parent</artifactId>
<version>0.0.1</version>
</parent>
<artifactId>hermod-generator-maven-plugin</artifactId>
<version>0.0.4</version>
<packaging>maven-plugin</packaging>
<scm>
<connection>scm:git:git://github.com/hermod/${project.artifactId}.git</connection>
<developerConnection>scm:git:ssh://git@github.com/hermod/${project.artifactId}.git</developerConnection>
<url>https://github.com/hermod/${project.artifactId}.git</url>
<tag>hermod-generator-maven-plugin-0.0.4</tag>
</scm>
<properties>
<projectUrl>${parentUrl}</projectUrl>
<mavenVersion>3.0.0</mavenVersion>
</properties>
<dependencies>
<dependency>
<groupId>com.github.hermod</groupId>
<artifactId>hermod-java-ser-api</artifactId>
<version>0.0.1</version>
</dependency>
<dependency>
<groupId>com.github.hermod</groupId>
<artifactId>hermod-java-ser-descriptor-api</artifactId>
<version>0.0.1</version>
</dependency>
<!-- <dependency> -->
<!-- <groupId>com.github.hermod</groupId> -->
<!-- <artifactId>hermod-java-ser-impl</artifactId> -->
<!-- <version>0.0.1-SNAPSHOT</version> -->
<!-- </dependency> -->
<dependency>
<groupId>com.github.spullara.mustache.java</groupId>
<artifactId>compiler</artifactId>
<version>0.8.12</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>14.0.1</version>
</dependency>
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>0.9.8</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.0.5</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>5.0.0.CR3</version>
</dependency>
<!--dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-model</artifactId>
<version>${mavenVersion}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId>
<artifactId>maven-artifact</artifactId> <version>${mavenVersion}</version>
</dependency -->
<!-- dependencies to annotations -->
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-project</artifactId>
<version>2.2.1</version>
</dependency>
<!--dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId>
<version>3.0.1</version> </dependency -->
<!--dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId>
<version>${mavenVersion}</version> </dependency -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<!--scope>runtime</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.2</version>
<configuration>
<!-- see http://jira.codehaus.org/browse/MNG-5346 -->
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
</configuration>
<executions>
<execution>
<id>mojo-descriptor</id>
<goals>
<goal>descriptor</goal>
</goals>
</execution>
<!-- if you want to generate help goal -->
<execution>
<id>help-goal</id>
<goals>
<goal>helpmojo</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-webdav-jackrabbit</artifactId>
<version>2.2</version>
</extension>
</extensions>
</build>
</project>