Skip to content
This repository was archived by the owner on Apr 5, 2024. It is now read-only.
/ autochef Public archive

Commit 33891d8

Browse files
committed
Linking: migrate project to maven
1 parent b7b1744 commit 33891d8

File tree

5 files changed

+101
-31
lines changed

5 files changed

+101
-31
lines changed

www/link/build.xml

-31
This file was deleted.

www/link/pom.xml

+101
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<project>
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>link</groupId>
6+
<artifactId>link</artifactId>
7+
<packaging>war</packaging>
8+
<version>1.0</version>
9+
<name>link</name>
10+
<description>link</description>
11+
<url>http://link.autochef.net</url>
12+
13+
<dependencies>
14+
15+
<!-- Junit -->
16+
<dependency>
17+
<groupId>junit</groupId>
18+
<artifactId>junit</artifactId>
19+
<version>3.8.1</version>
20+
<scope>test</scope>
21+
</dependency>
22+
23+
<!-- Servlet & Jsp -->
24+
<dependency>
25+
<groupId>javax.servlet</groupId>
26+
<artifactId>servlet-api</artifactId>
27+
<version>2.4</version>
28+
<scope>provided</scope>
29+
</dependency>
30+
<dependency>
31+
<groupId>javax.servlet</groupId>
32+
<artifactId>jsp-api</artifactId>
33+
<version>2.0</version>
34+
<scope>provided</scope>
35+
</dependency>
36+
<dependency>
37+
<groupId>javax.servlet</groupId>
38+
<artifactId>jstl</artifactId>
39+
<version>1.1.2</version>
40+
</dependency>
41+
<dependency>
42+
<groupId>taglibs</groupId>
43+
<artifactId>standard</artifactId>
44+
<version>1.1.2</version>
45+
</dependency>
46+
47+
<!-- PostgreSQL JDBC -->
48+
<dependency>
49+
<groupId>postgresql</groupId>
50+
<artifactId>postgresql</artifactId>
51+
<version>8.4-701.jdbc4</version>
52+
</dependency>
53+
54+
<!-- Log4j -->
55+
<dependency>
56+
<groupId>log4j</groupId>
57+
<artifactId>log4j</artifactId>
58+
<version>1.2.15</version>
59+
<exclusions>
60+
<exclusion>
61+
<groupId>javax.mail</groupId>
62+
<artifactId>mail</artifactId>
63+
</exclusion>
64+
<exclusion>
65+
<groupId>javax.jms</groupId>
66+
<artifactId>jms</artifactId>
67+
</exclusion>
68+
<exclusion>
69+
<groupId>com.sun.jdmk</groupId>
70+
<artifactId>jmxtools</artifactId>
71+
</exclusion>
72+
<exclusion>
73+
<groupId>com.sun.jmx</groupId>
74+
<artifactId>jmxri</artifactId>
75+
</exclusion>
76+
</exclusions>
77+
</dependency>
78+
79+
</dependencies>
80+
81+
<build>
82+
<finalName>link</finalName>
83+
<plugins>
84+
<plugin>
85+
<artifactId>maven-compiler-plugin</artifactId>
86+
<configuration>
87+
<source>1.6</source>
88+
<target>1.6</target>
89+
</configuration>
90+
</plugin>
91+
<plugin>
92+
<groupId>org.mortbay.jetty</groupId>
93+
<artifactId>maven-jetty-plugin</artifactId>
94+
<version>6.1.5</version>
95+
<configuration>
96+
<scanIntervalSeconds>10</scanIntervalSeconds>
97+
</configuration>
98+
</plugin>
99+
</plugins>
100+
</build>
101+
</project>
File renamed without changes.

0 commit comments

Comments
 (0)