+ init project
authorindvdum
Wed, 11 May 2011 01:14:31 +0400
changeset 0a1745efa117a
child 1 940c8f9a9fbc
+ init project
.hgignore
pom.xml
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/.hgignore	Wed May 11 01:14:31 2011 +0400
     1.3 @@ -0,0 +1,6 @@
     1.4 +syntax: glob
     1.5 +
     1.6 +target/*
     1.7 +.settings/*
     1.8 +.classpath
     1.9 +.project
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/pom.xml	Wed May 11 01:14:31 2011 +0400
     2.3 @@ -0,0 +1,96 @@
     2.4 +<?xml version='1.0' encoding='UTF-8'?>
     2.5 +
     2.6 +<!--
     2.7 +	Licensed under unknown license agreements.
     2.8 +-->
     2.9 +
    2.10 +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    2.11 +	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    2.12 +	<modelVersion>4.0.0</modelVersion>
    2.13 +
    2.14 +	<parent>
    2.15 +		<artifactId>maven-plugins</artifactId>
    2.16 +		<groupId>org.apache.maven.plugins</groupId>
    2.17 +		<version>19</version>
    2.18 +	</parent>
    2.19 +
    2.20 +	<groupId>ru.indvdum.maven</groupId>
    2.21 +	<artifactId>maven-wd-plugin</artifactId>
    2.22 +	<version>0.0.1-SNAPSHOT</version>
    2.23 +	<packaging>maven-plugin</packaging>
    2.24 +
    2.25 +	<name>Maven Workspace Dependencies Plugin</name>
    2.26 +	<description>Provides utility goals to work with dependencies into the local workspace.</description>
    2.27 +
    2.28 +	<developers>
    2.29 +		<developer>
    2.30 +			<id>indvdum</id>
    2.31 +			<name>David Veliev</name>
    2.32 +			<email>gotoindvdum@gmail.com</email>
    2.33 +			<roles>
    2.34 +				<role>Lead Developer</role>
    2.35 +			</roles>
    2.36 +			<timezone>3</timezone>
    2.37 +		</developer>
    2.38 +	</developers>
    2.39 +
    2.40 +	<prerequisites>
    2.41 +		<maven>2.0.3</maven>
    2.42 +	</prerequisites>
    2.43 +
    2.44 +	<scm>
    2.45 +		<developerConnection>scm:hg:https://indvdum.homeip.net/hg/maven-wd-plugin</developerConnection>
    2.46 +		<url>https://indvdum.homeip.net/hg/maven-wd-plugin</url>
    2.47 +	</scm>
    2.48 +
    2.49 +	<properties>
    2.50 +		<mavenVersion>2.0.9</mavenVersion>
    2.51 +		<doxiaVersion>1.0</doxiaVersion>
    2.52 +	</properties>
    2.53 +
    2.54 +	<dependencies>
    2.55 +		<dependency>
    2.56 +			<groupId>org.apache.maven</groupId>
    2.57 +			<artifactId>maven-plugin-api</artifactId>
    2.58 +			<version>${mavenVersion}</version>
    2.59 +		</dependency>
    2.60 +		<dependency>
    2.61 +			<groupId>junit</groupId>
    2.62 +			<artifactId>junit</artifactId>
    2.63 +			<version>3.8.1</version>
    2.64 +			<scope>test</scope>
    2.65 +		</dependency>
    2.66 +	</dependencies>
    2.67 +
    2.68 +	<build>
    2.69 +		<pluginManagement>
    2.70 +			<plugins>
    2.71 +				<plugin>
    2.72 +					<artifactId>maven-compiler-plugin</artifactId>
    2.73 +					<version>2.1</version>
    2.74 +					<configuration>
    2.75 +						<source>1.6</source>
    2.76 +						<target>1.6</target>
    2.77 +					</configuration>
    2.78 +				</plugin>
    2.79 +			</plugins>
    2.80 +		</pluginManagement>
    2.81 +		<plugins>
    2.82 +			<plugin>
    2.83 +				<groupId>org.apache.maven.plugins</groupId>
    2.84 +				<artifactId>maven-surefire-plugin</artifactId>
    2.85 +				<configuration>
    2.86 +					<!-- Need of more head space in order to run the unit tests !-->
    2.87 +					<argLine>-Xmx256m</argLine>
    2.88 +					<systemProperties>
    2.89 +						<property>
    2.90 +							<name>maven.home</name>
    2.91 +							<value>${maven.home}</value>
    2.92 +						</property>
    2.93 +					</systemProperties>
    2.94 +				</configuration>
    2.95 +			</plugin>
    2.96 +		</plugins>
    2.97 +	</build>
    2.98 +
    2.99 +</project>