Skip to content

Commit fbe105b

Browse files
committed
maven support
1 parent 3f41be9 commit fbe105b

File tree

1 file changed

+158
-0
lines changed

1 file changed

+158
-0
lines changed

pom.xml

Lines changed: 158 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,158 @@
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">
2+
<modelVersion>4.0.0</modelVersion>
3+
<groupId>com.jfinal</groupId>
4+
<artifactId>jfinal</artifactId>
5+
<packaging>jar</packaging>
6+
<name>JFinal</name>
7+
<version>1.4.0</version>
8+
<url>http://jfinal.googlecode.com</url>
9+
<description>JFinal is a simple, light, rapid,independent, extensible Java WEB + ORM framework. The feature of JFinal looks like ruby on rails especially ActiveRecord.</description>
10+
11+
<properties>
12+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13+
</properties>
14+
15+
<issueManagement>
16+
<system>Github Issue</system>
17+
<url>http://github.com/jfinal/jfinal/issues</url>
18+
</issueManagement>
19+
<licenses>
20+
<license>
21+
<name>The Apache Software License, Version 2.0</name>
22+
<url>http://apache.org/licenses/LICENSE-2.0.txt</url>
23+
</license>
24+
</licenses>
25+
<developers>
26+
<developer>
27+
<id>jfinal</id>
28+
<name>James</name>
29+
<email>jfinal@126.com</email>
30+
<url>http://weibo.com/jfinal</url>
31+
</developer>
32+
</developers>
33+
<scm>
34+
<connection>scm:git:git://github.com/jfinal/jfinal.git</connection>
35+
<developerConnection>scm:git:git://github.com/jfinal/jfinal.git</developerConnection>
36+
<url>git://github.com/jfinal/jfinal.git</url>
37+
</scm>
38+
39+
<parent>
40+
<groupId>org.sonatype.oss</groupId>
41+
<artifactId>oss-parent</artifactId>
42+
<version>7</version>
43+
</parent>
44+
45+
<repositories>
46+
</repositories>
47+
<dependencies>
48+
<dependency>
49+
<groupId>junit</groupId>
50+
<artifactId>junit</artifactId>
51+
<version>4.8.2</version>
52+
<scope>test</scope>
53+
</dependency>
54+
55+
<dependency>
56+
<groupId>javax.servlet</groupId>
57+
<artifactId>servlet-api</artifactId>
58+
<version>2.5</version>
59+
<scope>provided</scope>
60+
</dependency>
61+
<!-- cos -->
62+
<dependency>
63+
<groupId>c3p0</groupId>
64+
<artifactId>c3p0</artifactId>
65+
<version>0.9.1.2</version>
66+
<scope>provided</scope>
67+
</dependency>
68+
<dependency>
69+
<groupId>com.alibaba</groupId>
70+
<artifactId>druid</artifactId>
71+
<version>0.2.25</version>
72+
<scope>provided</scope>
73+
</dependency>
74+
<dependency>
75+
<groupId>net.sf.ehcache</groupId>
76+
<artifactId>ehcache-core</artifactId>
77+
<version>2.6.6</version>
78+
<scope>provided</scope>
79+
</dependency>
80+
<dependency>
81+
<groupId>org.freemarker</groupId>
82+
<artifactId>freemarker</artifactId>
83+
<version>2.3.20</version>
84+
<scope>provided</scope>
85+
</dependency>
86+
<dependency>
87+
<groupId>javax.servlet.jsp.jstl</groupId>
88+
<artifactId>javax.servlet.jsp.jstl-api</artifactId>
89+
<version>1.2.1</version>
90+
<scope>provided</scope>
91+
</dependency>
92+
<dependency>
93+
<groupId>log4j</groupId>
94+
<artifactId>log4j</artifactId>
95+
<version>1.2.16</version>
96+
<scope>provided</scope>
97+
</dependency>
98+
<dependency>
99+
<groupId>org.apache.velocity</groupId>
100+
<artifactId>velocity</artifactId>
101+
<version>1.7</version>
102+
<scope>provided</scope>
103+
</dependency>
104+
<dependency>
105+
<groupId>org.springframework</groupId>
106+
<artifactId>spring-context</artifactId>
107+
<version>3.2.4.RELEASE</version>
108+
<scope>provided</scope>
109+
</dependency>
110+
<dependency>
111+
<groupId>com.jfinal</groupId>
112+
<artifactId>jetty-server</artifactId>
113+
<version>8.1.8</version>
114+
<scope>provided</scope>
115+
</dependency>
116+
<dependency>
117+
<groupId>com.jfinal</groupId>
118+
<artifactId>cos</artifactId>
119+
<version>26Dec2008</version>
120+
<scope>provided</scope>
121+
</dependency>
122+
</dependencies>
123+
124+
<build>
125+
<sourceDirectory>${project.basedir}/src</sourceDirectory>
126+
<testSourceDirectory>${project.basedir}/test</testSourceDirectory>
127+
128+
<resources>
129+
<resource>
130+
<directory>${project.basedir}/src</directory>
131+
<filtering>false</filtering>
132+
<excludes>
133+
<exclude>**/*.java</exclude>
134+
</excludes>
135+
</resource>
136+
</resources>
137+
<testResources>
138+
<testResource>
139+
<directory>${project.basedir}/test</directory>
140+
<filtering>false</filtering>
141+
<excludes>
142+
<exclude>**/*.java</exclude>
143+
</excludes>
144+
</testResource>
145+
</testResources>
146+
<plugins>
147+
<plugin>
148+
<groupId>org.apache.maven.plugins</groupId>
149+
<artifactId>maven-compiler-plugin</artifactId>
150+
<version>2.5</version>
151+
<configuration>
152+
<source>1.6</source>
153+
<target>1.6</target>
154+
</configuration>
155+
</plugin>
156+
</plugins>
157+
</build>
158+
</project>

0 commit comments

Comments
 (0)