Skip to content

Commit 00297fe

Browse files
committed
spring安全
1 parent 4d2f4a0 commit 00297fe

File tree

3 files changed

+48
-0
lines changed

3 files changed

+48
-0
lines changed

jsp/pom.xml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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">
5+
<parent>
6+
<artifactId>xiaomo</artifactId>
7+
<groupId>info.xiaomo</groupId>
8+
<version>1.0.0-SNAPSHOT</version>
9+
</parent>
10+
<modelVersion>4.0.0</modelVersion>
11+
12+
<artifactId>jsp</artifactId>
13+
<dependencies>
14+
<dependency>
15+
<groupId>info.xiaomo</groupId>
16+
<artifactId>core</artifactId>
17+
<version>1.0.0-SNAPSHOT</version>
18+
</dependency>
19+
<dependency>
20+
<groupId>org.mortbay.jasper</groupId>
21+
<artifactId>jasper-jsp</artifactId>
22+
</dependency>
23+
</dependencies>
24+
25+
</project>

mybatis/pom.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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">
5+
<parent>
6+
<artifactId>xiaomo</artifactId>
7+
<groupId>info.xiaomo</groupId>
8+
<version>1.0.0-SNAPSHOT</version>
9+
</parent>
10+
<modelVersion>4.0.0</modelVersion>
11+
12+
<artifactId>mybatis</artifactId>
13+
14+
15+
</project>

pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626
<module>mongodb</module>
2727
<!-- spring安全设置 -->
2828
<module>security</module>
29+
<module>mybatis</module>
30+
<module>jsp</module>
2931
</modules>
3032
<packaging>pom</packaging>
3133

@@ -77,6 +79,7 @@
7779
<javax-mail.version>1.4.7</javax-mail.version>
7880
<lombak.version>1.16.10</lombak.version>
7981
<springfox-swagger-ui.version>2.2.2</springfox-swagger-ui.version>
82+
<jsper.version>8.0.9.M3</jsper.version>
8083
</properties>
8184

8285

@@ -148,6 +151,11 @@
148151
<artifactId>springfox-swagger2</artifactId>
149152
<version>${springfox-swagger-ui.version}</version>
150153
</dependency>
154+
<dependency>
155+
<groupId>org.mortbay.jasper</groupId>
156+
<artifactId>jasper-jsp</artifactId>
157+
<version>${jsper.version}</version>
158+
</dependency>
151159
</dependencies>
152160
</dependencyManagement>
153161

0 commit comments

Comments
 (0)