Verified new version of lift is still broken
[dataminer.git] / pom.xml
blobc54d0c741bc2c97ff54136b4d36f7b082bb6a5b4
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
6   
7   <modelVersion>4.0.0</modelVersion>
8   <groupId>net.dataminer</groupId>
9   <artifactId>dataminer</artifactId>
10   <version>1.0-SNAPSHOT</version>
11   <packaging>war</packaging>
12   <name>dataminer Project</name>
13   <inceptionYear>2010</inceptionYear>
14   <properties>
15     <scala.version>2.7.7</scala.version>
16   </properties>
18   <repositories>
19     <repository>
20       <id>scala-tools.releases</id>
21       <name>Scala-Tools Dependencies Repository for Releases</name>
22       <url>http://scala-tools.org/repo-releases</url>
23     </repository>
24     <repository>
25       <id>scala-tools.snapshots</id>
26       <name>Scala-Tools Dependencies Repository for Snapshots</name>
27       <url>http://scala-tools.org/repo-snapshots</url>
28       <snapshots/>
29     </repository>
30   </repositories>
32   <pluginRepositories>
33     <pluginRepository>
34       <id>scala-tools.releases</id>
35       <name>Scala-Tools Plugins Repository for Releases</name>
36       <url>http://scala-tools.org/repo-releases</url>
37     </pluginRepository>
38   </pluginRepositories>
40   <dependencies>
41     <dependency>
42       <groupId>net.liftweb</groupId>
43       <artifactId>lift-mapper</artifactId>
44       <version>2.0-M3</version>
45     </dependency>
46     <dependency>
47       <groupId>javax.servlet</groupId>
48       <artifactId>servlet-api</artifactId>
49       <version>2.5</version>
50       <scope>provided</scope>
51     </dependency>
52     <dependency>
53       <groupId>junit</groupId>
54       <artifactId>junit</artifactId>
55       <version>4.7</version>
56       <scope>test</scope>
57     </dependency>
58     <dependency>
59       <groupId>org.mortbay.jetty</groupId>
60       <artifactId>jetty</artifactId>
61       <version>[6.1.6,7.0)</version>
62       <scope>test</scope>
63     </dependency>
64     <!-- for LiftConsole -->
65     <dependency>
66       <groupId>org.scala-lang</groupId>
67       <artifactId>scala-compiler</artifactId>
68       <version>${scala.version}</version>
69       <scope>test</scope>
70     </dependency>
71     <dependency>
72       <groupId>postgresql</groupId>
73       <artifactId>postgresql</artifactId>
74       <version>8.4-701.jdbc4</version>
75     </dependency>
76   </dependencies>
78   <build>
79     <sourceDirectory>src/main/scala</sourceDirectory>
80     <testSourceDirectory>src/test/scala</testSourceDirectory>
81     <plugins>
82       <plugin>
83         <groupId>org.scala-tools</groupId>
84         <artifactId>maven-scala-plugin</artifactId>
85         <version>2.13.1</version>
86         <!--configuration>
87           <args> 
88             <arg>-deprecation</arg>
89           </args>
90         </configuration-->
91         <executions>
92           <execution>
93             <goals>
94               <goal>compile</goal>
95               <goal>testCompile</goal>
96             </goals>
97           </execution>
98         </executions>
99       </plugin>
100       <plugin>
101         <groupId>org.mortbay.jetty</groupId>
102         <artifactId>maven-jetty-plugin</artifactId>
103         <configuration>
104           <contextPath>/</contextPath>
105           <scanIntervalSeconds>5</scanIntervalSeconds>
106         </configuration>
107       </plugin>
108       <plugin>
109         <groupId>net.sf.alchim</groupId>
110         <artifactId>yuicompressor-maven-plugin</artifactId>
111         <version>0.7.1</version>
112         <executions>
113           <execution>
114             <goals>
115               <goal>compress</goal>
116             </goals>
117           </execution>
118         </executions>
119         <configuration>
120           <nosuffix>true</nosuffix>
121         </configuration>
122       </plugin>
123       <plugin>
124         <groupId>org.apache.maven.plugins</groupId>
125         <artifactId>maven-idea-plugin</artifactId>
126         <version>2.2</version>
127         <configuration>
128           <downloadSources>true</downloadSources>
129         </configuration>
130       </plugin>
131       <plugin>
132         <groupId>org.apache.maven.plugins</groupId>
133         <artifactId>maven-eclipse-plugin</artifactId>
134         <version>2.7</version>
135         <configuration>
136           <downloadSources>true</downloadSources>
137           <additionalProjectnatures>
138             <projectnature>ch.epfl.lamp.sdt.core.scalanature</projectnature>
139           </additionalProjectnatures>
140           <additionalBuildcommands>
141             <buildcommand>ch.epfl.lamp.sdt.core.scalabuilder</buildcommand>
142           </additionalBuildcommands>
143           <classpathContainers>
144             <classpathContainer>ch.epfl.lamp.sdt.launching.SCALA_CONTAINER</classpathContainer>
145             <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER</classpathContainer>
146           </classpathContainers>
147         </configuration>
148       </plugin>
149     </plugins>
150   </build>
151   <reporting>
152     <plugins>
153       <plugin>
154         <groupId>org.scala-tools</groupId>
155         <artifactId>maven-scala-plugin</artifactId>
156         <version>2.13.1</version>
157       </plugin>
158     </plugins>
159   </reporting>
160 </project>