init project
authorindvdum
Sat, 05 Feb 2011 13:42:18 +0300
changeset 0d80968cd74c6
child 1 921b2c11b55b
init project
.hgignore
pom.xml
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/.hgignore	Sat Feb 05 13:42:18 2011 +0300
     1.3 @@ -0,0 +1,7 @@
     1.4 +glob:./target/*
     1.5 +glob:./.settings/*
     1.6 +glob:*.classpath
     1.7 +glob:*.project
     1.8 +glob:*.classpath
     1.9 +glob:*.project
    1.10 +glob:*.log
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/pom.xml	Sat Feb 05 13:42:18 2011 +0300
     2.3 @@ -0,0 +1,57 @@
     2.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">
     2.5 +	<modelVersion>4.0.0</modelVersion>
     2.6 +	<groupId>ru.indvdum</groupId>
     2.7 +	<artifactId>mywork</artifactId>
     2.8 +	<version>0.0.1-SNAPSHOT</version>
     2.9 +	<description>My Work</description>
    2.10 +	<properties>
    2.11 +		<jetty.version>6.1.26</jetty.version>
    2.12 +		<vaadin.version>6.5.0</vaadin.version>
    2.13 +		<gwt.version>2.1.1</gwt.version>
    2.14 +	</properties>
    2.15 +	<build>
    2.16 +		<resources>
    2.17 +			<resource>
    2.18 +				<directory>src/main/resources</directory>
    2.19 +				<filtering>false</filtering>
    2.20 +			</resource>
    2.21 +		</resources>
    2.22 +		<plugins>
    2.23 +			<plugin>
    2.24 +				<groupId>org.apache.maven.plugins</groupId>
    2.25 +				<artifactId>maven-eclipse-plugin</artifactId>
    2.26 +				<configuration>
    2.27 +					<downloadSources>true</downloadSources>
    2.28 +					<buildcommands>
    2.29 +						<buildcommand>org.eclipse.jdt.core.javabuilder</buildcommand>
    2.30 +					</buildcommands>
    2.31 +					<classpathContainers>
    2.32 +						<classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER</classpathContainer>
    2.33 +					</classpathContainers>
    2.34 +				</configuration>
    2.35 +			</plugin>
    2.36 +		</plugins>
    2.37 +	</build>
    2.38 +	<dependencies>
    2.39 +		<dependency>
    2.40 +			<groupId>org.mortbay.jetty</groupId>
    2.41 +			<artifactId>jetty</artifactId>
    2.42 +			<version>${jetty.version}</version>
    2.43 +		</dependency>
    2.44 +		<dependency>
    2.45 +			<groupId>com.vaadin</groupId>
    2.46 +			<artifactId>vaadin</artifactId>
    2.47 +			<version>${vaadin.version}</version>
    2.48 +		</dependency>
    2.49 +		<dependency>
    2.50 +			<groupId>com.google.gwt</groupId>
    2.51 +			<artifactId>gwt-dev</artifactId>
    2.52 +			<version>${gwt.version}</version>
    2.53 +		</dependency>
    2.54 +		<dependency>
    2.55 +			<groupId>com.google.gwt</groupId>
    2.56 +			<artifactId>gwt-user</artifactId>
    2.57 +			<version>${gwt.version}</version>
    2.58 +		</dependency>
    2.59 +	</dependencies>
    2.60 +</project>
    2.61 \ No newline at end of file