一、pom.xml

  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.sh</groupId>
  5   <artifactId>shirotest</artifactId>
  6   <packaging>war</packaging>
  7   <version>0.0.1-SNAPSHOT</version>
  8   <name>shirotest Maven Webapp</name>
  9   <url>http://maven.apache.org</url>
 10 
 11   <dependencies>
 12   
 13   
 14 <!-- https://mvnrepository.com/artifact/org.apache.shiro/shiro-all -->
 15 <dependency>
 16     <groupId>org.apache.shiro</groupId>
 17     <artifactId>shiro-all</artifactId>
 18     <version>1.2.2</version>
 19 </dependency>
 20 <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
 21 <dependency>
 22     <groupId>org.apache.commons</groupId>
 23     <artifactId>commons-lang3</artifactId>
 24     <version>3.4</version>
 25 </dependency>
 26   
 27   
 28 <dependency>
 29     <groupId>javax.servlet</groupId>
 30     <artifactId>servlet-api</artifactId>
 31     <version>2.5</version>
 32     <scope>provided</scope>
 33 </dependency>
 34     <dependency>
 35       <groupId>junit</groupId>
 36       <artifactId>junit</artifactId>
 37       <version>3.8.1</version>
 38       <scope>test</scope>
 39     </dependency>
 40     <!-- https://mvnrepository.com/artifact/jstl/jstl -->
 41 <dependency>
 42     <groupId>jstl</groupId>
 43     <artifactId>jstl</artifactId>
 44     <version>1.2</version>
 45 </dependency>
 46     <!-- https://mvnrepository.com/artifact/org.springframework/spring-aop -->
 47     <dependency>
 48         <groupId>org.springframework</groupId>
 49         <artifactId>spring-aop</artifactId>
 50         <version>3.2.0.RELEASE</version>
 51     </dependency>
 52     <!-- https://mvnrepository.com/artifact/org.springframework/spring-aspects -->
 53     <dependency>
 54         <groupId>org.springframework</groupId>
 55         <artifactId>spring-aspects</artifactId>
 56         <version>3.2.0.RELEASE</version>
 57     </dependency>
 58     <!-- https://mvnrepository.com/artifact/org.springframework/spring-beans -->
 59     <dependency>
 60         <groupId>org.springframework</groupId>
 61         <artifactId>spring-beans</artifactId>
 62         <version>3.2.0.RELEASE</version>
 63     </dependency>
 64     <!-- https://mvnrepository.com/artifact/org.springframework/spring-context -->
 65     <dependency>
 66         <groupId>org.springframework</groupId>
 67         <artifactId>spring-context</artifactId>
 68         <version>3.2.0.RELEASE</version>
 69     </dependency>
 70     <!-- https://mvnrepository.com/artifact/org.springframework/spring-context-support -->
 71     <dependency>
 72         <groupId>org.springframework</groupId>
 73         <artifactId>spring-context-support</artifactId>
 74         <version>3.2.0.RELEASE</version>
 75     </dependency>
 76     <!-- https://mvnrepository.com/artifact/org.springframework/spring-core -->
 77     <dependency>
 78         <groupId>org.springframework</groupId>
 79         <artifactId>spring-core</artifactId>
 80         <version>3.2.0.RELEASE</version>
 81     </dependency>
 82     <!-- https://mvnrepository.com/artifact/org.springframework/spring-expression -->
 83     <dependency>
 84         <groupId>org.springframework</groupId>
 85         <artifactId>spring-expression</artifactId>
 86         <version>3.2.0.RELEASE</version>
 87     </dependency>
 88     <!-- https://mvnrepository.com/artifact/org.springframework/spring-instrument -->
 89     <dependency>
 90         <groupId>org.springframework</groupId>
 91         <artifactId>spring-instrument</artifactId>
 92         <version>3.2.0.RELEASE</version>
 93     </dependency>
 94     <!-- https://mvnrepository.com/artifact/org.springframework/spring-instrument-tomcat -->
 95     <dependency>
 96         <groupId>org.springframework</groupId>
 97         <artifactId>spring-instrument-tomcat</artifactId>
 98         <version>3.2.0.RELEASE</version>
 99     </dependency>
100      <!-- https://mvnrepository.com/artifact/org.springframework/spring-jdbc -->
101     <dependency>
102         <groupId>org.springframework</groupId>
103         <artifactId>spring-jdbc</artifactId>
104         <version>3.2.0.RELEASE</version>
105     </dependency>
106      <!-- https://mvnrepository.com/artifact/org.springframework/spring-orm -->
107     <dependency>
108         <groupId>org.springframework</groupId>
109         <artifactId>spring-orm</artifactId>
110         <version>3.2.0.RELEASE</version>
111     </dependency>
112      <!-- https://mvnrepository.com/artifact/org.springframework/spring-oxm -->
113     <dependency>
114         <groupId>org.springframework</groupId>
115         <artifactId>spring-oxm</artifactId>
116         <version>3.2.0.RELEASE</version>
117     </dependency>
118      <!-- https://mvnrepository.com/artifact/org.springframework/spring-struts -->
119     <dependency>
120         <groupId>org.springframework</groupId>
121         <artifactId>spring-struts</artifactId>
122         <version>3.2.0.RELEASE</version>
123     </dependency>
124      <!-- https://mvnrepository.com/artifact/org.springframework/spring-test -->
125     <dependency>
126         <groupId>org.springframework</groupId>
127         <artifactId>spring-test</artifactId>
128         <version>3.2.0.RELEASE</version>
129     </dependency>
130     <!-- https://mvnrepository.com/artifact/org.springframework/spring-tx -->
131     <dependency>
132         <groupId>org.springframework</groupId>
133         <artifactId>spring-tx</artifactId>
134         <version>3.2.0.RELEASE</version>
135     </dependency>
136     <!-- https://mvnrepository.com/artifact/org.springframework/spring-web -->
137     <dependency>
138         <groupId>org.springframework</groupId>
139         <artifactId>spring-web</artifactId>
140         <version>3.2.0.RELEASE</version>
141     </dependency>
142     <!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
143     <dependency>
144         <groupId>org.springframework</groupId>
145         <artifactId>spring-webmvc</artifactId>
146         <version>3.2.0.RELEASE</version>
147     </dependency>
148     <!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc-portlet -->
149     <dependency>
150         <groupId>org.springframework</groupId>
151         <artifactId>spring-webmvc-portlet</artifactId>
152         <version>3.2.0.RELEASE</version>
153     </dependency>
154   </dependencies>
155   <build>
156     <finalName>shirotest</finalName>
157   </build>
158 </project>
View Code

相关文章:

  • 2022-01-07
  • 2022-12-23
  • 2021-12-03
  • 2021-11-22
  • 2021-12-03
  • 2021-07-29
  • 2022-12-23
猜你喜欢
  • 2021-11-21
  • 2022-12-23
  • 2022-01-30
  • 2022-12-23
  • 2022-02-07
  • 2022-01-18
  • 2021-11-14
相关资源
相似解决方案