pom.xml
author indvdum (gotoindvdum[at]gmail[dot]com)
Sun, 25 Nov 2012 03:14:01 +0400
changeset 16 409046072775
parent 7 4c2e4f602872
child 17 ddaceba1ed1e
permissions -rw-r--r--
Moar data access methods
     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     3 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
     4 	<modelVersion>4.0.0</modelVersion>
     5 	<groupId>ru.indvdum.jpa</groupId>
     6 	<artifactId>commons-jpa</artifactId>
     7 	<name>commons-jpa</name>
     8 	<version>${commons-jpa.version}</version>
     9 	<packaging>jar</packaging>
    10 	<description>commons-jpa</description>
    11 	<properties>
    12 	</properties>
    13 	<parent>
    14 		<groupId>ru.bazon.download-x</groupId>
    15 		<artifactId>download-x-all</artifactId>
    16 		<version>0.1.0.0-SNAPSHOT</version>
    17 	</parent>
    18 	<licenses>
    19 		<license>
    20 			<name>The Apache Software License, Version 2.0</name>
    21 			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
    22 			<distribution>repo</distribution>
    23 			<comments>A business-friendly OSS license</comments>
    24 		</license>
    25 	</licenses>
    26 	<developers>
    27 		<developer>
    28 			<id>indvdum</id>
    29 			<name>David Veliev</name>
    30 			<email>gotoindvdum@gmail.com</email>
    31 			<url>http://indvdum.ru</url>
    32 			<roles>
    33 				<role>architect</role>
    34 				<role>developer</role>
    35 			</roles>
    36 			<timezone>+4</timezone>
    37 		</developer>
    38   </developers>
    39 	<build>
    40 		<plugins>
    41 			<plugin>
    42 				<artifactId>maven-compiler-plugin</artifactId>
    43 				<version>${maven-compiler-plugin.version}</version>
    44 				<configuration>
    45 					<compilerId>groovy-eclipse-compiler</compilerId>
    46 					<compilerArgument>nowarn</compilerArgument>
    47 					 <verbose>true</verbose>
    48 				</configuration>
    49 				<dependencies>
    50 					<dependency>
    51 						<groupId>org.codehaus.groovy</groupId>
    52 						<artifactId>groovy-eclipse-compiler</artifactId>
    53 						<version>${groovy-eclipse-compiler.version}</version>
    54 					</dependency>
    55 				</dependencies>
    56 			</plugin>
    57 			<plugin>
    58 				<groupId>org.codehaus.mojo</groupId>
    59 				<artifactId>build-helper-maven-plugin</artifactId>
    60 				<version>${build-helper-maven-plugin.version}</version>
    61 				<executions>
    62 					<execution>
    63 						<id>add-source</id>
    64 						<phase>generate-sources</phase>
    65 						<goals>
    66 							<goal>add-source</goal>
    67 						</goals>
    68 						<configuration>
    69 							<sources>
    70 								<source>src/main/groovy</source>
    71 								<source>src/test/groovy</source>
    72 							</sources>
    73 						</configuration>
    74 					</execution>
    75 				</executions>
    76 			</plugin>
    77 			<plugin>
    78 				<groupId>org.apache.maven.plugins</groupId>
    79 				<artifactId>maven-jar-plugin</artifactId>
    80 				<version>${maven-jar-plugin.version}</version>
    81 				<executions>
    82 					<execution>
    83 						<goals>
    84 							<goal>test-jar</goal>
    85 						</goals>
    86 					</execution>
    87 				</executions>
    88 			</plugin>
    89 		</plugins>
    90 	</build>
    91 	<dependencies>
    92 		<dependency>
    93 			<groupId>org.codehaus.groovy</groupId>
    94 			<artifactId>groovy-all</artifactId>
    95 			<version>${groovy.version}</version>
    96 		</dependency>
    97 		<dependency>
    98 			<groupId>org.apache.openjpa</groupId>
    99 			<artifactId>openjpa</artifactId>
   100 			<version>${openjpa.version}</version>
   101 		</dependency>
   102 		<dependency>
   103 			<groupId>commons-dbcp</groupId>
   104 			<artifactId>commons-dbcp</artifactId>
   105 			<version>${commons-dbcp.version}</version>
   106 		</dependency>
   107 		<dependency>
   108 			<groupId>org.codehaus.jackson</groupId>
   109 			<artifactId>jackson-jaxrs</artifactId>
   110 			<version>${jackson-jaxrs.version}</version>
   111 		</dependency>
   112 		<dependency>
   113 			<groupId>commons-configuration</groupId>
   114 			<artifactId>commons-configuration</artifactId>
   115 			<version>${commons-configuration.version}</version>
   116 		</dependency>
   117 	</dependencies>
   118 </project>