mywork-web/pom.xml
author indvdum (gotoindvdum@gmail.com)
Wed, 23 Nov 2011 17:52:25 +0300
changeset 16 2d6a668325f9
parent 15 pom.xml@739f329b9e1e
permissions -rw-r--r--
Separating projects
     1 <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">
     2 	<modelVersion>4.0.0</modelVersion>
     3 	<groupId>ru.indvdum.mywork</groupId>
     4 	<artifactId>mywork-web</artifactId>
     5 	<version>0.0.1.0-SNAPSHOT</version>
     6 	<description>My Work WEB</description>
     7 	<parent>
     8 		<groupId>ru.indvdum.mywork</groupId>
     9 		<artifactId>mywork-all</artifactId>
    10 		<version>0.0.1.0-SNAPSHOT</version>
    11 	</parent>
    12 	<properties>
    13 		<jetty.version>6.1.26</jetty.version>
    14 		<vaadin.version>6.5.0</vaadin.version>
    15 		<gwt.version>2.1.1</gwt.version>
    16 		<oracle.jdbc.version>10.1.0.5.0</oracle.jdbc.version>
    17 	</properties>
    18 	<build>
    19 		<plugins>
    20 			<plugin>
    21 				<groupId>org.apache.maven.plugins</groupId>
    22 				<artifactId>maven-resources-plugin</artifactId>
    23 				<version>${maven-resources-plugin.version}</version>
    24 				<configuration>
    25 					<encoding>UTF-8</encoding>
    26 				</configuration>
    27 			</plugin>
    28 			<plugin>
    29 				<artifactId>maven-source-plugin</artifactId>
    30 				<configuration>
    31 					<attach>true</attach>
    32 				</configuration>
    33 				<executions>
    34 					<execution>
    35 						<phase>generate-sources</phase>
    36 						<goals>
    37 							<goal>jar</goal>
    38 						</goals>
    39 					</execution>
    40 				</executions>
    41 			</plugin>
    42 			<plugin>
    43 				<groupId>org.codehaus.mojo</groupId>
    44 				<artifactId>exec-maven-plugin</artifactId>
    45 				<version>1.2</version>
    46 				<executions>
    47 					<execution>
    48 						<goals>
    49 							<goal>exec</goal>
    50 						</goals>
    51 					</execution>
    52 				</executions>
    53 				<configuration>
    54 					<executable>java</executable>
    55 					<arguments>
    56 						<argument>-classpath</argument>
    57 						<classpath/>
    58 						<argument>ru.indvdum.mywork.MyWork</argument>
    59 					</arguments>
    60 				</configuration>
    61 			</plugin>
    62 		</plugins>
    63 	</build>
    64 	<dependencies>
    65 		<dependency>
    66 			<groupId>org.mortbay.jetty</groupId>
    67 			<artifactId>jetty</artifactId>
    68 			<version>${jetty.version}</version>
    69 		</dependency>
    70 		<dependency>
    71 			<groupId>com.vaadin</groupId>
    72 			<artifactId>vaadin</artifactId>
    73 			<version>${vaadin.version}</version>
    74 		</dependency>
    75 		<dependency>
    76 			<groupId>com.vaadin.addon</groupId>
    77 			<artifactId>jpacontainer-addon-agpl-3.0</artifactId>
    78 			<version>1.2.0</version>
    79 			<exclusions>
    80 				<exclusion>
    81 					<groupId>javax.persistence</groupId>
    82 					<artifactId>persistence-api</artifactId>
    83 				</exclusion>
    84 			</exclusions>
    85 		</dependency>
    86 		<dependency>
    87 			<groupId>com.google.gwt</groupId>
    88 			<artifactId>gwt-user</artifactId>
    89 			<version>${gwt.version}</version>
    90 		</dependency>
    91 		<!--dependency>
    92 			<groupId>com.oracle</groupId>
    93 			<artifactId>ojdbc14</artifactId>
    94 			<version>${oracle.jdbc.version}</version>
    95 		</dependency-->
    96 		<dependency>
    97 			<groupId>org.apache.openjpa</groupId>
    98 			<artifactId>openjpa</artifactId>
    99 			<version>${openjpa.version}</version>
   100 		</dependency>
   101 	</dependencies>
   102 </project>