Latest version
[dataminer.git] / pom.xml
blobdadb31f14d3c51bbd5cc99977f1909112e523cc2
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     <!--repository>
31       <id>sakaiproject</id>
32       <url>http://source.sakaiproject.org/maven2</url>
33     </repository-->
34   </repositories>
36   <pluginRepositories>
37     <pluginRepository>
38       <id>scala-tools.releases</id>
39       <name>Scala-Tools Plugins Repository for Releases</name>
40       <url>http://scala-tools.org/repo-releases</url>
41     </pluginRepository>
42   </pluginRepositories>
44   <dependencies>
45     <dependency>
46       <groupId>net.liftweb</groupId>
47       <artifactId>lift-mapper</artifactId>
48       <version>2.0-M3</version>
49     </dependency>
50     <dependency>
51       <groupId>com.h2database</groupId>
52       <artifactId>h2</artifactId>
53       <version>1.2.121</version>
54     </dependency>
55     <dependency>
56       <groupId>javax.servlet</groupId>
57       <artifactId>servlet-api</artifactId>
58       <version>2.5</version>
59       <scope>provided</scope>
60     </dependency>
61     <dependency>
62       <groupId>junit</groupId>
63       <artifactId>junit</artifactId>
64       <version>4.7</version>
65       <scope>test</scope>
66     </dependency>
67     <dependency>
68       <groupId>org.mortbay.jetty</groupId>
69       <artifactId>jetty</artifactId>
70       <version>[6.1.6,7.0)</version>
71       <scope>test</scope>
72     </dependency>
73     <!-- for LiftConsole -->
74     <dependency>
75       <groupId>org.scala-lang</groupId>
76       <artifactId>scala-compiler</artifactId>
77       <version>${scala.version}</version>
78       <scope>test</scope>
79     </dependency>
80     <dependency>
81       <groupId>postgresql</groupId>
82       <artifactId>postgresql</artifactId>
83       <version>8.4-701.jdbc4</version>
84     </dependency>
85     <dependency>
86       <groupId>org.python</groupId>
87       <artifactId>jython-complete</artifactId>
88       <version>2.5.1</version>
89       <scope>runtime</scope>
90     </dependency>
91   </dependencies>
93   <build>
94     <sourceDirectory>src/main/scala</sourceDirectory>
95     <testSourceDirectory>src/test/scala</testSourceDirectory>
96     <plugins>
97       <plugin>
98         <groupId>org.scala-tools</groupId>
99         <artifactId>maven-scala-plugin</artifactId>
100         <version>2.13.1</version>
101         <configuration>
102           <args> 
103             <arg>-deprecation</arg>
104             <arg>-unchecked</arg>
105           </args>
106         </configuration>
107         <executions>
108           <execution>
109             <goals>
110               <goal>compile</goal>
111               <goal>testCompile</goal>
112             </goals>
113           </execution>
114         </executions>
115       </plugin>
116       <plugin>
117         <groupId>org.mortbay.jetty</groupId>
118         <artifactId>maven-jetty-plugin</artifactId>
119         <configuration>
120           <contextPath>/</contextPath>
121           <scanIntervalSeconds>5</scanIntervalSeconds>
122         </configuration>
123       </plugin>
124       <plugin>
125         <groupId>net.sf.alchim</groupId>
126         <artifactId>yuicompressor-maven-plugin</artifactId>
127         <version>0.7.1</version>
128         <executions>
129           <execution>
130             <goals>
131               <goal>compress</goal>
132             </goals>
133           </execution>
134         </executions>
135         <configuration>
136           <nosuffix>true</nosuffix>
137         </configuration>
138       </plugin>
139       <plugin>
140         <groupId>org.apache.maven.plugins</groupId>
141         <artifactId>maven-idea-plugin</artifactId>
142         <version>2.2</version>
143         <configuration>
144           <downloadSources>true</downloadSources>
145         </configuration>
146       </plugin>
147       <plugin>
148         <groupId>org.apache.maven.plugins</groupId>
149         <artifactId>maven-eclipse-plugin</artifactId>
150         <version>2.7</version>
151         <configuration>
152           <downloadSources>true</downloadSources>
153           <additionalProjectnatures>
154             <projectnature>ch.epfl.lamp.sdt.core.scalanature</projectnature>
155           </additionalProjectnatures>
156           <additionalBuildcommands>
157             <buildcommand>ch.epfl.lamp.sdt.core.scalabuilder</buildcommand>
158           </additionalBuildcommands>
159           <classpathContainers>
160             <classpathContainer>ch.epfl.lamp.sdt.launching.SCALA_CONTAINER</classpathContainer>
161             <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER</classpathContainer>
162           </classpathContainers>
163         </configuration>
164       </plugin>
165     </plugins>
166   </build>
167   <reporting>
168     <plugins>
169       <plugin>
170         <groupId>org.scala-tools</groupId>
171         <artifactId>maven-scala-plugin</artifactId>
172         <version>2.13.1</version>
173       </plugin>
174     </plugins>
175   </reporting>
176 </project>