mywork-web/pom.xml
changeset 16 2d6a668325f9
parent 15 739f329b9e1e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/mywork-web/pom.xml	Wed Nov 23 17:52:25 2011 +0300
     1.3 @@ -0,0 +1,102 @@
     1.4 +<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">
     1.5 +	<modelVersion>4.0.0</modelVersion>
     1.6 +	<groupId>ru.indvdum.mywork</groupId>
     1.7 +	<artifactId>mywork-web</artifactId>
     1.8 +	<version>0.0.1.0-SNAPSHOT</version>
     1.9 +	<description>My Work WEB</description>
    1.10 +	<parent>
    1.11 +		<groupId>ru.indvdum.mywork</groupId>
    1.12 +		<artifactId>mywork-all</artifactId>
    1.13 +		<version>0.0.1.0-SNAPSHOT</version>
    1.14 +	</parent>
    1.15 +	<properties>
    1.16 +		<jetty.version>6.1.26</jetty.version>
    1.17 +		<vaadin.version>6.5.0</vaadin.version>
    1.18 +		<gwt.version>2.1.1</gwt.version>
    1.19 +		<oracle.jdbc.version>10.1.0.5.0</oracle.jdbc.version>
    1.20 +	</properties>
    1.21 +	<build>
    1.22 +		<plugins>
    1.23 +			<plugin>
    1.24 +				<groupId>org.apache.maven.plugins</groupId>
    1.25 +				<artifactId>maven-resources-plugin</artifactId>
    1.26 +				<version>${maven-resources-plugin.version}</version>
    1.27 +				<configuration>
    1.28 +					<encoding>UTF-8</encoding>
    1.29 +				</configuration>
    1.30 +			</plugin>
    1.31 +			<plugin>
    1.32 +				<artifactId>maven-source-plugin</artifactId>
    1.33 +				<configuration>
    1.34 +					<attach>true</attach>
    1.35 +				</configuration>
    1.36 +				<executions>
    1.37 +					<execution>
    1.38 +						<phase>generate-sources</phase>
    1.39 +						<goals>
    1.40 +							<goal>jar</goal>
    1.41 +						</goals>
    1.42 +					</execution>
    1.43 +				</executions>
    1.44 +			</plugin>
    1.45 +			<plugin>
    1.46 +				<groupId>org.codehaus.mojo</groupId>
    1.47 +				<artifactId>exec-maven-plugin</artifactId>
    1.48 +				<version>1.2</version>
    1.49 +				<executions>
    1.50 +					<execution>
    1.51 +						<goals>
    1.52 +							<goal>exec</goal>
    1.53 +						</goals>
    1.54 +					</execution>
    1.55 +				</executions>
    1.56 +				<configuration>
    1.57 +					<executable>java</executable>
    1.58 +					<arguments>
    1.59 +						<argument>-classpath</argument>
    1.60 +						<classpath/>
    1.61 +						<argument>ru.indvdum.mywork.MyWork</argument>
    1.62 +					</arguments>
    1.63 +				</configuration>
    1.64 +			</plugin>
    1.65 +		</plugins>
    1.66 +	</build>
    1.67 +	<dependencies>
    1.68 +		<dependency>
    1.69 +			<groupId>org.mortbay.jetty</groupId>
    1.70 +			<artifactId>jetty</artifactId>
    1.71 +			<version>${jetty.version}</version>
    1.72 +		</dependency>
    1.73 +		<dependency>
    1.74 +			<groupId>com.vaadin</groupId>
    1.75 +			<artifactId>vaadin</artifactId>
    1.76 +			<version>${vaadin.version}</version>
    1.77 +		</dependency>
    1.78 +		<dependency>
    1.79 +			<groupId>com.vaadin.addon</groupId>
    1.80 +			<artifactId>jpacontainer-addon-agpl-3.0</artifactId>
    1.81 +			<version>1.2.0</version>
    1.82 +			<exclusions>
    1.83 +				<exclusion>
    1.84 +					<groupId>javax.persistence</groupId>
    1.85 +					<artifactId>persistence-api</artifactId>
    1.86 +				</exclusion>
    1.87 +			</exclusions>
    1.88 +		</dependency>
    1.89 +		<dependency>
    1.90 +			<groupId>com.google.gwt</groupId>
    1.91 +			<artifactId>gwt-user</artifactId>
    1.92 +			<version>${gwt.version}</version>
    1.93 +		</dependency>
    1.94 +		<!--dependency>
    1.95 +			<groupId>com.oracle</groupId>
    1.96 +			<artifactId>ojdbc14</artifactId>
    1.97 +			<version>${oracle.jdbc.version}</version>
    1.98 +		</dependency-->
    1.99 +		<dependency>
   1.100 +			<groupId>org.apache.openjpa</groupId>
   1.101 +			<artifactId>openjpa</artifactId>
   1.102 +			<version>${openjpa.version}</version>
   1.103 +		</dependency>
   1.104 +	</dependencies>
   1.105 +</project>