japis
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.googlecode.japis</groupId> <artifactId>japis</artifactId> <version>1.0</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> <prerequisites> <maven>2.2.1</maven> </prerequisites> <!-- ======================================================================= PROJECT INFORMATION ======================================================================= --> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>3</version> </parent> <groupId>com.googlecode.japis</groupId> <artifactId>japis</artifactId> <packaging>pom</packaging> <version>1.0</version> <name>JAPIS</name> <description> Root for all JAPIS projects with most basic configurations. This project must not depend on any other JAPIS project. Includes environment configurations and high level reporting. </description> <inceptionYear>2010</inceptionYear> <url>${japis.url}</url> <organization> <name>JAPIS</name> <url>http://japis.googlecode.com</url> </organization> <licenses> <license> <name>GNU Lesser General Public License, Version 3</name> <url>http://www.gnu.org/licenses/lgpl-3.0.txt</url> <distribution>repo</distribution> </license> </licenses> <!-- ======================================================================= PROPERTIES ======================================================================= --> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <japis.google.project>japis</japis.google.project> <japis.google.scm>japis</japis.google.scm> <japis.scm.connection>scm:hg:https://${japis.google.scm}.googlecode.com/hg</japis.scm.connection> <japis.scm.url>http://${japis.google.scm}.googlecode.com/hg</japis.scm.url> <japis.site.deploy>${japis.site.root}/${japis.google.project}-site/${project.artifactId}</japis.site.deploy> <japis.site.root>file:///${project.build.directory}/site-deploy</japis.site.root> <japis.url>http://${japis.google.project}.googlecode.com</japis.url> </properties> <!-- ======================================================================= ENVIRONMENT ======================================================================= --> <distributionManagement> <site> <id>google-site</id> <name>Google Code SCM</name> <url>${japis.site.deploy}</url> </site> </distributionManagement> <issueManagement> <system>google</system> <url>http://code.google.com/p/${japis.google.project}/issues</url> </issueManagement> <scm> <connection>${japis.scm.connection}</connection> <developerConnection>${japis.scm.connection}</developerConnection> <url>${japis.scm.url}</url> </scm> <!-- ======================================================================= BUILD ======================================================================= --> <build> <plugins> <!-- Sign artifacts for Sonatype deployment --> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <!-- Release --> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.0-beta-9</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <!-- Install avoids errors in multi-module projects --> <!-- <preparationGoals>clean install</preparationGoals> --> </configuration> </plugin> <!-- Site generation --> <plugin> <artifactId>maven-site-plugin</artifactId> <version>2.1.1</version> <configuration> <locales>en</locales> </configuration> </plugin> </plugins> </build> <!-- ======================================================================= REPORTING ======================================================================= --> <reporting> <plugins> <!-- SCM commits --> <plugin> <artifactId>maven-changelog-plugin</artifactId> <version>2.2</version> <configuration> <!-- Configure Mercurial log templates to use isodate --> <dateFormat>yyyy-MM-dd HH:mm Z</dateFormat> <outputEncoding>UTF-8</outputEncoding> <type>range</type> <range>30</range> </configuration> </plugin> <!-- General project information --> <plugin> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.1</version> <reportSets> <reportSet> <reports> <!-- <report>cim</report> --> <report>dependencies</report> <report>dependencies-convergence</report> <report>dependencies-management</report> <report>index</report> <report>issue-tracking</report> <report>license</report> <report>plugin-management</report> <report>plugins</report> <report>project-team</report> <report>scm</report> <report>summary</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> <!-- ======================================================================= DEVELOPERS ======================================================================= --> <developers> <developer> <id>japis.3des</id> <name>3DES</name> <organization>JAPIS</organization> <timezone>-3</timezone> </developer> </developers> </project>