Projects prototypes
authorindvdum (gotoindvdum[at]gmail[dot]com)
Thu, 08 Nov 2012 23:10:39 +0400
changeset 029bfa9f8e2c8
child 1 452e65d696a3
Projects prototypes
pom.xml
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/pom.xml	Thu Nov 08 23:10:39 2012 +0400
     1.3 @@ -0,0 +1,80 @@
     1.4 +<?xml version="1.0" encoding="UTF-8"?>
     1.5 +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     1.6 +	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
     1.7 +	<modelVersion>4.0.0</modelVersion>
     1.8 +	<artifactId>commons-jpa</artifactId>
     1.9 +	<name>commons-jpa</name>
    1.10 +	<packaging>jar</packaging>
    1.11 +	<description>commons-jpa</description>
    1.12 +	<properties>
    1.13 +	</properties>
    1.14 +	<parent>
    1.15 +		<groupId>ru.bazon.download-x</groupId>
    1.16 +		<artifactId>download-x-all</artifactId>
    1.17 +		<version>0.1.0.0-SNAPSHOT</version>
    1.18 +	</parent>
    1.19 +	<build>
    1.20 +		<plugins>
    1.21 +			<plugin>
    1.22 +				<artifactId>maven-compiler-plugin</artifactId>
    1.23 +				<version>${maven-compiler-plugin.version}</version>
    1.24 +				<configuration>
    1.25 +					<compilerId>groovy-eclipse-compiler</compilerId>
    1.26 +					<compilerArgument>nowarn</compilerArgument>
    1.27 +					 <verbose>true</verbose>
    1.28 +				</configuration>
    1.29 +				<dependencies>
    1.30 +					<dependency>
    1.31 +						<groupId>org.codehaus.groovy</groupId>
    1.32 +						<artifactId>groovy-eclipse-compiler</artifactId>
    1.33 +						<version>${groovy-eclipse-compiler.version}</version>
    1.34 +					</dependency>
    1.35 +				</dependencies>
    1.36 +			</plugin>
    1.37 +			<plugin>
    1.38 +				<groupId>org.codehaus.mojo</groupId>
    1.39 +				<artifactId>build-helper-maven-plugin</artifactId>
    1.40 +				<version>${build-helper-maven-plugin.version}</version>
    1.41 +				<executions>
    1.42 +					<execution>
    1.43 +						<id>add-source</id>
    1.44 +						<phase>generate-sources</phase>
    1.45 +						<goals>
    1.46 +							<goal>add-source</goal>
    1.47 +						</goals>
    1.48 +						<configuration>
    1.49 +							<sources>
    1.50 +								<source>src/main/groovy</source>
    1.51 +								<source>src/test/groovy</source>
    1.52 +							</sources>
    1.53 +						</configuration>
    1.54 +					</execution>
    1.55 +				</executions>
    1.56 +			</plugin>
    1.57 +		</plugins>
    1.58 +	</build>
    1.59 +	<dependencies>
    1.60 +		<dependency>
    1.61 +			<groupId>org.codehaus.groovy</groupId>
    1.62 +			<artifactId>groovy-all</artifactId>
    1.63 +			<version>${groovy.version}</version>
    1.64 +		</dependency>
    1.65 +		<dependency>
    1.66 +			<groupId>org.apache.openjpa</groupId>
    1.67 +			<artifactId>openjpa</artifactId>
    1.68 +			<version>${openjpa.version}</version>
    1.69 +		</dependency>
    1.70 +		<dependency>
    1.71 +			<groupId>commons-dbcp</groupId>
    1.72 +			<artifactId>commons-dbcp</artifactId>
    1.73 +			<version>${commons-dbcp.version}</version>
    1.74 +			<scope>test</scope>
    1.75 +		</dependency>
    1.76 +		<dependency>
    1.77 +			<groupId>org.apache.derby</groupId>
    1.78 +			<artifactId>derby</artifactId>
    1.79 +			<version>${derby.version}</version>
    1.80 +			<scope>test</scope>
    1.81 +		</dependency>
    1.82 +	</dependencies>
    1.83 +</project>