number2words
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.efaps</groupId>
<artifactId>number2words</artifactId>
<version>0.2</version>
</dependency><?xml version="1.0" encoding="utf-8" ?>
<!--
Copyright 2003 - 2009 The eFaps Team
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.
Author: The eFaps Team
Revision: $Rev: 4134 $
Last Changed: $Date: 2010-04-19 08:36:46 -0500 (Mon, 19 Apr 2010) $
Last Changed By: $Author: jan.moxter $
-->
<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>
<!--
************************************************************************
* Module Definition
*************************************************************************
-->
<packaging>jar</packaging>
<groupId>org.efaps</groupId>
<artifactId>number2words</artifactId>
<version>0.2</version>
<name>Number2Words</name>
<description>
Package that converts numbers to words for different languages.
</description>
<url>http://number2words.efaps.org</url>
<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>
<developers>
<developer>
<id>tim.moxter</id>
<name>Tim Moxter</name>
<email>tim.moxter(ad)efaps.org</email>
<url>www.efaps.org</url>
<organization>moxter.net Ltd. & Co.KG</organization>
<organizationUrl>http://www.moxter.net/de/</organizationUrl>
<timezone>+1</timezone>
<properties />
</developer>
<developer>
<id>jmox, jmo, jan.moxter, jan.moxter(ad)moxter.net</id>
<name>Jan Moxter</name>
<email>jan.moxter(ad)efaps.org</email>
<url>www.efaps.org</url>
<organization>moxter.net S.A.C, Peru</organization>
<organizationUrl>http://www.moxter.net/pe/</organizationUrl>
<timezone>-5</timezone>
<properties />
</developer>
</developers>
<inceptionYear>2009</inceptionYear>
<organization>
<name>eFaps</name>
<url>http://www.efaps.org/</url>
</organization>
<!-- Environment Settings -->
<issueManagement>
<url>http://code.google.com/p/efaps/issues/list</url>
</issueManagement>
<!-- SubVersion Repository -->
<scm>
<connection>scm:svn:http://efaps.googlecode.com/svn/number2words/</connection>
<developerConnection>scm:svn:https://developername@efaps.googlecode.com/svn/number2words/</developerConnection>
<url>http://code.google.com/p/efaps/source/browse#svn/number2words</url>
</scm>
<!-- Reporting -->
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<report>index</report>
<report>summary</report>
<report>dependencies</report>
<report>project-team</report>
<!-- <report>mailing-list</report>-->
<!-- <report>cim</report> -->
<report>issue-tracking</report>
<report>license</report>
<report>scm</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<!-- java doc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration />
</plugin>
<!-- source code -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<configuration>
<linkJavadoc>false</linkJavadoc>
<javadocDir>apidocs</javadocDir>
</configuration>
</plugin>
<!-- automatic tests (surefire) -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
</plugin>
<!-- PMD report -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<configuration>
<linkXref>true</linkXref>
<sourceEncoding>utf-8</sourceEncoding>
<targetJdk>1.5</targetJdk>
</configuration>
</plugin>
<!-- findbugs report -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<configuration/>
</plugin>
</plugins>
</reporting>
<!--
************************************************************************
* Project itself
*************************************************************************
-->
<!-- Project Information -->
<build>
<plugins>
<!-- Compiler Settings : - Java 1.5 is needed! -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<!-- define test ng suite XML file -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<suiteXmlFiles>
<suiteXmlFile>${basedir}/src/test/resources/testng.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<site>
<id>efaps</id>
<name>eFaps Number2Words Site</name>
<url>svn:https://efaps.googlecode.com/svn/site/number2words</url>
</site>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<name>Nexus Release Repository</name>
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<!--
Profile for a release: Only in this case the source and JavaDoc will
be attached
-->
<profiles>
<profile>
<id>release-profile</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<!-- Attach Sources -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Attach JavaDoc -->
<plugin>
<inherited>true</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Update Release Info -->
<plugin>
<inherited>true</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<updateReleaseInfo>true</updateReleaseInfo>
</configuration>
</plugin>
<!-- signing the artefact with gpg -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<!--
************************************************************************
* Dependencies
*************************************************************************
-->
<dependencies>
<!-- TestNG for automatic tests -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>5.8</version>
<scope>test</scope>
<classifier>jdk15</classifier>
</dependency>
</dependencies>
</project>