autogen
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.basistech.maven.plugins</groupId>
<artifactId>autogen</artifactId>
<version>7.0.0</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>com.basistech.maven.plugins</groupId>
<artifactId>autogen</artifactId>
<version>7.0.0</version>
<parent>
<artifactId>open-source-parent</artifactId>
<groupId>com.basistech</groupId>
<version>0.1.2</version>
</parent>
<packaging>maven-plugin</packaging>
<name>Autogen code generator</name>
<scm>
<url>https://github.com/basis-technology-corp/basis-autogen-maven-plugin</url>
<connection>scm:git:git@github.com:basis-technology-corp/basis-autogen-maven-plugin.git</connection>
<developerConnection>scm:git:git@github.com:basis-technology-corp/basis-autogen-maven-plugin.git
</developerConnection>
<tag>autogen-7.0.0</tag>
</scm>
<description>
A simple template expander inspired by Scheme.
</description>
<url>http://basis-technology-corp.github.io/basis-autogen-maven-plugin</url>
<distributionManagement>
<site>
<id>site</id>
<url>scm:git:git@github.com:basis-technology-corp/basis-autogen-maven-plugin.git</url>
</site>
</distributionManagement>
<build>
<plugins>
<plugin>
<artifactId>maven-invoker-plugin</artifactId>
<version>2.0.0</version>
<configuration>
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
<postBuildHookScript>verify</postBuildHookScript>
<goals>
<goal>generate-sources</goal>
</goals>
</configuration>
<executions>
<execution>
<id>integration-test</id>
<goals>
<goal>install</goal>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<scope>provided</scope>
<version>2.1.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-project</artifactId>
<scope>provided</scope>
<version>2.1.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>file-management</artifactId>
<version>1.2.1</version>
</dependency>
<dependency>
<groupId>org.python</groupId>
<artifactId>jython-standalone</artifactId>
<version>2.7.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.4</version>
</plugin>
</plugins>
</reporting>
</project>