Browse Source

优化servlet-api依赖

zhouhao 6 years ago
parent
commit
5e2f7952dd
27 changed files with 28 additions and 54 deletions
  1. 1 2
      hsweb-authorization/hsweb-authorization-api/pom.xml
  2. 1 2
      hsweb-authorization/hsweb-authorization-basic/pom.xml
  3. 1 2
      hsweb-authorization/hsweb-authorization-jwt/pom.xml
  4. 1 2
      hsweb-authorization/hsweb-authorization-oauth2/hsweb-authorization-oauth2-auth-server/pom.xml
  5. 2 2
      hsweb-commons/hsweb-commons-utils/pom.xml
  6. 1 2
      hsweb-logging/hsweb-access-logging-aop/pom.xml
  7. 1 2
      hsweb-system/hsweb-system-dashboard/hsweb-system-dashboard-starter/pom.xml
  8. 1 2
      hsweb-system/hsweb-system-datasource/hsweb-system-datasource-starter/pom.xml
  9. 1 2
      hsweb-system/hsweb-system-datasource/hsweb-system-datasource-web/pom.xml
  10. 1 2
      hsweb-system/hsweb-system-dictionary/hsweb-system-dictionary-starter/pom.xml
  11. 1 2
      hsweb-system/hsweb-system-dictionary/hsweb-system-dictionary-web/pom.xml
  12. 1 2
      hsweb-system/hsweb-system-dynamic-form/hsweb-system-dynamic-form-starter/pom.xml
  13. 1 2
      hsweb-system/hsweb-system-dynamic-form/hsweb-system-dynamic-form-web/pom.xml
  14. 1 2
      hsweb-system/hsweb-system-file/hsweb-system-file-starter/pom.xml
  15. 1 2
      hsweb-system/hsweb-system-file/hsweb-system-file-web/pom.xml
  16. 1 2
      hsweb-system/hsweb-system-oauth2-client/hsweb-system-oauth2-client-starter/pom.xml
  17. 1 2
      hsweb-system/hsweb-system-oauth2-client/hsweb-system-oauth2-client-web/pom.xml
  18. 1 2
      hsweb-system/hsweb-system-oauth2-server/hsweb-system-oauth2-server-starter/pom.xml
  19. 1 2
      hsweb-system/hsweb-system-oauth2-server/hsweb-system-oauth2-server-web/pom.xml
  20. 1 2
      hsweb-system/hsweb-system-organizational/hsweb-system-organizational-starter/pom.xml
  21. 1 2
      hsweb-system/hsweb-system-organizational/hsweb-system-organizational-web/pom.xml
  22. 1 2
      hsweb-system/hsweb-system-schedule/hsweb-system-schedule-starter/pom.xml
  23. 1 2
      hsweb-system/hsweb-system-schedule/hsweb-system-schedule-web/pom.xml
  24. 1 2
      hsweb-system/hsweb-system-script/hsweb-system-script-starter/pom.xml
  25. 1 2
      hsweb-system/hsweb-system-script/hsweb-system-script-web/pom.xml
  26. 1 2
      hsweb-system/hsweb-system-template/hsweb-system-template-starter/pom.xml
  27. 1 2
      hsweb-system/hsweb-system-template/hsweb-system-template-web/pom.xml

+ 1 - 2
hsweb-authorization/hsweb-authorization-api/pom.xml

@@ -42,8 +42,7 @@
         </dependency>
         <dependency>
             <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
+            <artifactId>javax.servlet-api</artifactId>
             <optional>true</optional>
         </dependency>
     </dependencies>

+ 1 - 2
hsweb-authorization/hsweb-authorization-basic/pom.xml

@@ -81,8 +81,7 @@
         </dependency>
         <dependency>
             <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
+            <artifactId>javax.servlet-api</artifactId>
             <scope>provided</scope>
         </dependency>
         <dependency>

+ 1 - 2
hsweb-authorization/hsweb-authorization-jwt/pom.xml

@@ -35,8 +35,7 @@
 
         <dependency>
             <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
+            <artifactId>javax.servlet-api</artifactId>
             <scope>provided</scope>
         </dependency>
     </dependencies>

+ 1 - 2
hsweb-authorization/hsweb-authorization-oauth2/hsweb-authorization-oauth2-auth-server/pom.xml

@@ -44,8 +44,7 @@
         </dependency>
         <dependency>
             <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
+            <artifactId>javax.servlet-api</artifactId>
             <optional>true</optional>
         </dependency>
         <dependency>

+ 2 - 2
hsweb-commons/hsweb-commons-utils/pom.xml

@@ -33,10 +33,10 @@
     <description>通用模块-工具类</description>
 
     <dependencies>
+
         <dependency>
             <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
+            <artifactId>javax.servlet-api</artifactId>
             <optional>true</optional>
         </dependency>
 

+ 1 - 2
hsweb-logging/hsweb-access-logging-aop/pom.xml

@@ -53,8 +53,7 @@
         </dependency>
         <dependency>
             <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
+            <artifactId>javax.servlet-api</artifactId>
             <scope>provided</scope>
         </dependency>
     </dependencies>

+ 1 - 2
hsweb-system/hsweb-system-dashboard/hsweb-system-dashboard-starter/pom.xml

@@ -68,8 +68,7 @@
 
         <dependency>
             <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
+            <artifactId>javax.servlet-api</artifactId>
             <scope>test</scope>
         </dependency>
 

+ 1 - 2
hsweb-system/hsweb-system-datasource/hsweb-system-datasource-starter/pom.xml

@@ -72,8 +72,7 @@
 
         <dependency>
             <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
+            <artifactId>javax.servlet-api</artifactId>
             <scope>test</scope>
         </dependency>
 

+ 1 - 2
hsweb-system/hsweb-system-datasource/hsweb-system-datasource-web/pom.xml

@@ -17,8 +17,7 @@
     <dependencies>
         <dependency>
             <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
+            <artifactId>javax.servlet-api</artifactId>
             <optional>true</optional>
         </dependency>
         <dependency>

+ 1 - 2
hsweb-system/hsweb-system-dictionary/hsweb-system-dictionary-starter/pom.xml

@@ -78,8 +78,7 @@
 
         <dependency>
             <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
+            <artifactId>javax.servlet-api</artifactId>
             <scope>test</scope>
         </dependency>
     </dependencies>

+ 1 - 2
hsweb-system/hsweb-system-dictionary/hsweb-system-dictionary-web/pom.xml

@@ -24,8 +24,7 @@
         </dependency>
         <dependency>
             <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
+            <artifactId>javax.servlet-api</artifactId>
             <optional>true</optional>
         </dependency>
     </dependencies>

+ 1 - 2
hsweb-system/hsweb-system-dynamic-form/hsweb-system-dynamic-form-starter/pom.xml

@@ -69,8 +69,7 @@
 
         <dependency>
             <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
+            <artifactId>javax.servlet-api</artifactId>
             <scope>test</scope>
         </dependency>
       

+ 1 - 2
hsweb-system/hsweb-system-dynamic-form/hsweb-system-dynamic-form-web/pom.xml

@@ -16,8 +16,7 @@
     <dependencies>
         <dependency>
             <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
+            <artifactId>javax.servlet-api</artifactId>
             <optional>true</optional>
         </dependency>
         <dependency>

+ 1 - 2
hsweb-system/hsweb-system-file/hsweb-system-file-starter/pom.xml

@@ -76,8 +76,7 @@
 
         <dependency>
             <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
+            <artifactId>javax.servlet-api</artifactId>
             <scope>test</scope>
         </dependency>
       

+ 1 - 2
hsweb-system/hsweb-system-file/hsweb-system-file-web/pom.xml

@@ -16,8 +16,7 @@
     <dependencies>
         <dependency>
             <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
+            <artifactId>javax.servlet-api</artifactId>
             <optional>true</optional>
         </dependency>
         <dependency>

+ 1 - 2
hsweb-system/hsweb-system-oauth2-client/hsweb-system-oauth2-client-starter/pom.xml

@@ -78,8 +78,7 @@
 
         <dependency>
             <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
+            <artifactId>javax.servlet-api</artifactId>
             <scope>test</scope>
         </dependency>
     </dependencies>

+ 1 - 2
hsweb-system/hsweb-system-oauth2-client/hsweb-system-oauth2-client-web/pom.xml

@@ -15,8 +15,7 @@
     <dependencies>
         <dependency>
             <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
+            <artifactId>javax.servlet-api</artifactId>
             <optional>true</optional>
         </dependency>
         <dependency>

+ 1 - 2
hsweb-system/hsweb-system-oauth2-server/hsweb-system-oauth2-server-starter/pom.xml

@@ -51,8 +51,7 @@
         </dependency>
         <dependency>
             <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
+            <artifactId>javax.servlet-api</artifactId>
             <scope>provided</scope>
         </dependency>
         <dependency>

+ 1 - 2
hsweb-system/hsweb-system-oauth2-server/hsweb-system-oauth2-server-web/pom.xml

@@ -32,8 +32,7 @@
         </dependency>
         <dependency>
             <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
+            <artifactId>javax.servlet-api</artifactId>
             <optional>true</optional>
         </dependency>
     </dependencies>

+ 1 - 2
hsweb-system/hsweb-system-organizational/hsweb-system-organizational-starter/pom.xml

@@ -78,8 +78,7 @@
 
         <dependency>
             <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
+            <artifactId>javax.servlet-api</artifactId>
             <scope>test</scope>
         </dependency>
     </dependencies>

+ 1 - 2
hsweb-system/hsweb-system-organizational/hsweb-system-organizational-web/pom.xml

@@ -15,8 +15,7 @@
     <dependencies>
         <dependency>
             <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
+            <artifactId>javax.servlet-api</artifactId>
             <optional>true</optional>
         </dependency>
         <dependency>

+ 1 - 2
hsweb-system/hsweb-system-schedule/hsweb-system-schedule-starter/pom.xml

@@ -77,8 +77,7 @@
 
         <dependency>
             <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
+            <artifactId>javax.servlet-api</artifactId>
             <scope>test</scope>
         </dependency>
 

+ 1 - 2
hsweb-system/hsweb-system-schedule/hsweb-system-schedule-web/pom.xml

@@ -14,8 +14,7 @@
     <dependencies>
         <dependency>
             <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
+            <artifactId>javax.servlet-api</artifactId>
             <optional>true</optional>
         </dependency>
         <dependency>

+ 1 - 2
hsweb-system/hsweb-system-script/hsweb-system-script-starter/pom.xml

@@ -63,8 +63,7 @@
 
         <dependency>
             <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
+            <artifactId>javax.servlet-api</artifactId>
             <scope>test</scope>
         </dependency>
 

+ 1 - 2
hsweb-system/hsweb-system-script/hsweb-system-script-web/pom.xml

@@ -14,8 +14,7 @@
     <dependencies>
         <dependency>
             <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
+            <artifactId>javax.servlet-api</artifactId>
             <optional>true</optional>
         </dependency>
         <dependency>

+ 1 - 2
hsweb-system/hsweb-system-template/hsweb-system-template-starter/pom.xml

@@ -63,8 +63,7 @@
 
         <dependency>
             <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
+            <artifactId>javax.servlet-api</artifactId>
             <scope>test</scope>
         </dependency>
       

+ 1 - 2
hsweb-system/hsweb-system-template/hsweb-system-template-web/pom.xml

@@ -14,8 +14,7 @@
     <dependencies>
         <dependency>
             <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
+            <artifactId>javax.servlet-api</artifactId>
             <optional>true</optional>
         </dependency>
         <dependency>