code-g-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.abstractmeta</groupId> <artifactId>code-g-api</artifactId> <version>0.4.0</version> </dependency>
<?xml version="1.0"?> <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>org.abstractmeta</groupId> <artifactId>code-g-api</artifactId> <version>0.4.0</version> <packaging>jar</packaging> <name>code-g-api</name> <url>http://code.google.com/p/code-g</url> <description>Java code generation api</description> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <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> <scm> <url>https://code-g.googlecode.com/svn/code-g-api/tags/code-g-api-0.4.0</url> <connection>scm:svn:https://code-g.googlecode.com/svn/code-g-api/tags/code-g-api-0.4.0</connection> <developerConnection>scm:svn:https://code-g.googlecode.com/svn/code-g-api/tags/code-g-api-0.4.0</developerConnection> </scm> <developers> <developer> <id>abstractmeta</id> <name>Adrian Witas</name> <email>abstractmeta@gmail.com</email> <url>http://www.abstractmeta.org</url> <roles> <role>owner</role> </roles> </developer> </developers> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <!-- Deploy a "-sources.jar" along with build --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.7</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>