Rev 52 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 52 | Rev 53 | ||
---|---|---|---|
Line 1... | Line -... | ||
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/maven-v4_0_0.xsd">
|
- | |
- | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
- | 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
2 | <modelVersion>4.0.0</modelVersion> |
3 | <modelVersion>4.0.0</modelVersion> |
3 | <groupId>org.mentawai</groupId> |
4 | <groupId>org.mentawai</groupId> |
4 | <artifactId>mentaservice</artifactId> |
5 | <artifactId>mentaservice</artifactId> |
5 | <packaging>war</packaging> |
6 | <packaging>war</packaging> |
6 | <version>1.0.2-SNAPSHOT</version> |
7 | <version>1.0.2-SNAPSHOT</version> |
Line 12... | Line 13... | ||
12 | <developerConnection>scm:svn:svn://soliveirajr.com/mentatutorials/MentaRefAppWithService/trunk</developerConnection> |
13 | <developerConnection>scm:svn:svn://soliveirajr.com/mentatutorials/MentaRefAppWithService/trunk</developerConnection> |
13 | <url>svn://soliveirajr.com/mentatutorials/MentaRefAppWithService/trunk</url> |
14 | <url>svn://soliveirajr.com/mentatutorials/MentaRefAppWithService/trunk</url> |
14 | </scm>
|
15 | </scm>
|
15 | 16 | ||
16 | <dependencies>
|
17 | <dependencies>
|
- | 18 | ||
- | 19 | <dependency>
|
|
- | 20 | <groupId>me.soliveirajr</groupId> |
|
- | 21 | <artifactId>mentawai</artifactId> |
|
- | 22 | <version>2.5.4-SNAPSHOT</version> |
|
- | 23 | </dependency>
|
|
17 | 24 | ||
18 | <dependency>
|
25 | <dependency>
|
19 | <groupId>javax.servlet.jsp</groupId> |
26 | <groupId>javax.servlet.jsp</groupId> |
20 | <artifactId>jsp-api</artifactId> |
27 | <artifactId>jsp-api</artifactId> |
21 | <version>2.0</version> |
28 | <version>2.0</version> |
Line 38... | Line 45... | ||
38 | 45 | ||
39 | <dependency>
|
46 | <dependency>
|
40 | <groupId>com.h2database</groupId> |
47 | <groupId>com.h2database</groupId> |
41 | <artifactId>h2</artifactId> |
48 | <artifactId>h2</artifactId> |
42 | <version>1.2.138</version> |
49 | <version>1.2.138</version> |
43 | </dependency>
|
- | |
44 | - | ||
45 | <dependency>
|
- | |
46 | <groupId>me.soliveirajr</groupId> |
- | |
47 | <artifactId>mentawai</artifactId> |
- | |
48 | <version>2.5.3</version> |
- | |
49 | </dependency>
|
50 | </dependency>
|
50 | 51 | ||
51 | </dependencies>
|
52 | </dependencies>
|
52 | 53 | ||
53 | <build>
|
54 | <build>
|
54 | <plugins>
|
55 | <plugins>
|
55 | - | ||
56 | - | ||
57 | <plugin>
|
- | |
58 | <groupId>org.mortbay.jetty</groupId> |
- | |
59 | <artifactId>jetty-maven-plugin</artifactId> |
- | |
60 | <version>7.1.0.v20100505</version> |
- | |
61 | <configuration>
|
- | |
62 | <webApp>${basedir}/target/${project.artifactId}.war</webApp> |
- | |
63 | <webAppConfig>
|
- | |
64 | <contextPath>/${project.artifactId}</contextPath> |
- | |
65 | </webAppConfig>
|
- | |
66 | <reload>manual</reload> |
- | |
67 | <connectors>
|
- | |
68 | <connector implementation="org.eclipse.jetty.server.bio.SocketConnector">
|
- | |
69 | <port>8080</port> |
- | |
70 | </connector>
|
- | |
71 | </connectors>
|
- | |
72 | </configuration>
|
- | |
73 | </plugin>
|
- | |
74 | - | ||
- | 56 | ||
- | 57 | ||
- | 58 | <plugin>
|
|
- | 59 | <groupId>org.mortbay.jetty</groupId> |
|
- | 60 | <artifactId>jetty-maven-plugin</artifactId> |
|
- | 61 | <version>7.1.0.v20100505</version> |
|
- | 62 | <configuration>
|
|
- | 63 | <webApp>${basedir}/target/${project.artifactId}.war</webApp> |
|
- | 64 | <webAppConfig>
|
|
- | 65 | <contextPath>/${project.artifactId}</contextPath> |
|
- | 66 | </webAppConfig>
|
|
- | 67 | <reload>manual</reload> |
|
- | 68 | <connectors>
|
|
- | 69 | <connector implementation="org.eclipse.jetty.server.bio.SocketConnector">
|
|
- | 70 | <port>8080</port> |
|
- | 71 | </connector>
|
|
- | 72 | </connectors>
|
|
- | 73 | </configuration>
|
|
- | 74 | </plugin>
|
|
- | 75 | ||
75 | <plugin>
|
76 | <plugin>
|
76 | <groupId>org.apache.maven.plugins</groupId> |
77 | <groupId>org.apache.maven.plugins</groupId> |
77 | <artifactId>maven-compiler-plugin</artifactId> |
78 | <artifactId>maven-compiler-plugin</artifactId> |
78 | <version>2.0.2</version> |
79 | <version>2.0.2</version> |
79 | <configuration>
|
80 | <configuration>
|