Skip to content

Commit a2ae295

Browse files
author
xiaowei1118
committed
init foryouj
add frameworkd
0 parents  commit a2ae295

185 files changed

Lines changed: 33090 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.classpath

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" output="target/classes" path="src/main/java">
4+
<attributes>
5+
<attribute name="optional" value="true"/>
6+
<attribute name="maven.pomderived" value="true"/>
7+
</attributes>
8+
</classpathentry>
9+
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
10+
<attributes>
11+
<attribute name="maven.pomderived" value="true"/>
12+
</attributes>
13+
</classpathentry>
14+
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
15+
<attributes>
16+
<attribute name="optional" value="true"/>
17+
<attribute name="maven.pomderived" value="true"/>
18+
</attributes>
19+
</classpathentry>
20+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
21+
<attributes>
22+
<attribute name="maven.pomderived" value="true"/>
23+
<attribute name="org.eclipse.jst.component.dependency" value="/WEB-INF/lib"/>
24+
</attributes>
25+
</classpathentry>
26+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
27+
<classpathentry kind="output" path="target/classes"/>
28+
</classpath>

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/target
2+
target/*

.project

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>foryou</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.wst.jsdt.core.javascriptValidator</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.jdt.core.javabuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
<buildCommand>
19+
<name>org.eclipse.wst.common.project.facet.core.builder</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
23+
<buildCommand>
24+
<name>org.eclipse.wst.validation.validationbuilder</name>
25+
<arguments>
26+
</arguments>
27+
</buildCommand>
28+
<buildCommand>
29+
<name>com.genuitec.eclipse.j2eedt.core.DeploymentDescriptorValidator</name>
30+
<arguments>
31+
</arguments>
32+
</buildCommand>
33+
<buildCommand>
34+
<name>com.genuitec.eclipse.ast.deploy.core.DeploymentBuilder</name>
35+
<arguments>
36+
</arguments>
37+
</buildCommand>
38+
<buildCommand>
39+
<name>org.eclipse.m2e.core.maven2Builder</name>
40+
<arguments>
41+
</arguments>
42+
</buildCommand>
43+
<buildCommand>
44+
<name>com.genuitec.eclipse.springframework.springbuilder</name>
45+
<arguments>
46+
</arguments>
47+
</buildCommand>
48+
</buildSpec>
49+
<natures>
50+
<nature>com.genuitec.eclipse.springframework.springnature</nature>
51+
<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
52+
<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
53+
<nature>org.eclipse.jdt.core.javanature</nature>
54+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
55+
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
56+
<nature>org.eclipse.wst.jsdt.core.jsNature</nature>
57+
</natures>
58+
</projectDescription>

pom.xml

Lines changed: 137 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,137 @@
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">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.changyu</groupId>
5+
<artifactId>foryou</artifactId>
6+
<packaging>war</packaging>
7+
<version>0.0.1-SNAPSHOT</version>
8+
<name>foryou</name>
9+
<url>http://maven.apache.org</url>
10+
<dependencies>
11+
<dependency>
12+
<groupId>org.springframework</groupId>
13+
<artifactId>spring-test</artifactId>
14+
<version>3.2.0.RELEASE</version>
15+
</dependency>
16+
<dependency>
17+
<groupId>org.springframework</groupId>
18+
<artifactId>spring-webmvc</artifactId>
19+
<version>3.2.0.RELEASE</version>
20+
</dependency>
21+
<dependency>
22+
<groupId>org.springframework</groupId>
23+
<artifactId>spring-core</artifactId>
24+
<version>3.2.0.RELEASE</version>
25+
</dependency>
26+
<dependency>
27+
<groupId>org.mybatis</groupId>
28+
<artifactId>mybatis-spring</artifactId>
29+
<version>1.1.1</version>
30+
</dependency>
31+
<dependency>
32+
<groupId>org.mybatis</groupId>
33+
<artifactId>mybatis</artifactId>
34+
<version>3.3.0</version>
35+
</dependency>
36+
<dependency>
37+
<groupId>com.alibaba</groupId>
38+
<artifactId>druid</artifactId>
39+
<version>1.0.9</version>
40+
</dependency>
41+
42+
<dependency>
43+
<groupId>mysql</groupId>
44+
<artifactId>mysql-connector-java</artifactId>
45+
<version>5.1.21</version>
46+
</dependency>
47+
48+
<dependency>
49+
<groupId>junit</groupId>
50+
<artifactId>junit</artifactId>
51+
<version>4.11</version>
52+
<scope>test</scope>
53+
</dependency>
54+
<dependency>
55+
<groupId>org.aspectj</groupId>
56+
<artifactId>aspectjweaver</artifactId>
57+
<version>1.7.1</version>
58+
</dependency>
59+
60+
<dependency>
61+
<groupId>com.fasterxml.jackson.core</groupId>
62+
<artifactId>jackson-databind</artifactId>
63+
<version>2.5.0</version>
64+
</dependency>
65+
<dependency>
66+
<groupId>org.codehaus.jackson</groupId>
67+
<artifactId>jackson-mapper-asl</artifactId>
68+
<version>1.9.11</version>
69+
</dependency>
70+
<dependency>
71+
<groupId>commons-fileupload</groupId>
72+
<artifactId>commons-fileupload</artifactId>
73+
<version>1.2.2</version>
74+
</dependency>
75+
<dependency>
76+
<groupId>commons-io</groupId>
77+
<artifactId>commons-io</artifactId>
78+
<version>2.3</version>
79+
</dependency>
80+
81+
<dependency>
82+
<groupId>javax.servlet</groupId>
83+
<artifactId>servlet-api</artifactId>
84+
<version>3.0-alpha-1</version>
85+
</dependency>
86+
<dependency>
87+
<groupId>cn.jpush.api</groupId>
88+
<artifactId>jpush-client</artifactId>
89+
<version>3.2.3</version>
90+
</dependency>
91+
92+
<dependency>
93+
<groupId>log4j</groupId>
94+
<artifactId>log4j</artifactId>
95+
<version>1.2.16</version>
96+
</dependency>
97+
98+
<dependency>
99+
<groupId>com.google.code.gson</groupId>
100+
<artifactId>gson</artifactId>
101+
<version>2.2.3</version>
102+
</dependency>
103+
104+
<dependency>
105+
<groupId>com.github.fernandospr</groupId>
106+
<artifactId>javapns-jdk16</artifactId>
107+
<version>2.2.1</version>
108+
</dependency>
109+
110+
<dependency>
111+
<groupId>org.bouncycastle</groupId>
112+
<artifactId>bcprov-jdk16</artifactId>
113+
<version>1.45</version>
114+
</dependency>
115+
<dependency>
116+
<groupId>commons-lang</groupId>
117+
<artifactId>commons-lang</artifactId>
118+
<version>2.6</version>
119+
</dependency>
120+
121+
<!-- For log4j -->
122+
<dependency>
123+
<groupId>org.slf4j</groupId>
124+
<artifactId>slf4j-log4j12</artifactId>
125+
<version>1.7.5</version>
126+
</dependency>
127+
<dependency>
128+
<groupId>com.alibaba</groupId>
129+
<artifactId>fastjson</artifactId>
130+
<version>1.1.26</version>
131+
</dependency>
132+
133+
</dependencies>
134+
<build>
135+
<finalName>foryou</finalName>
136+
</build>
137+
</project>

0 commit comments

Comments
 (0)