|
79 | 79 | <jedis.version>2.4.1</jedis.version> |
80 | 80 | <jetty.version>8.1.15.v20140411</jetty.version> |
81 | 81 | <jetty-jsp.version>2.2.0.v201112011158</jetty-jsp.version> |
| 82 | + <jaxen.version>1.1.6</jaxen.version> |
| 83 | + <jdom2.version>2.0.5</jdom2.version> |
82 | 84 | <joda-time.version>2.3</joda-time.version> |
83 | 85 | <jolokia.version>1.2.1</jolokia.version> |
84 | 86 | <jstl.version>1.2</jstl.version> |
|
109 | 111 | <spring-social-linkedin.version>1.0.1.RELEASE</spring-social-linkedin.version> |
110 | 112 | <spring-security.version>3.2.4.RELEASE</spring-security.version> |
111 | 113 | <spring-security-jwt.version>1.0.2.RELEASE</spring-security-jwt.version> |
| 114 | + <spring-ws.version>2.2.0.RELEASE</spring-ws.version> |
112 | 115 | <thymeleaf.version>2.1.3.RELEASE</thymeleaf.version> |
113 | 116 | <thymeleaf-extras-springsecurity3.version>2.1.1.RELEASE</thymeleaf-extras-springsecurity3.version> |
114 | 117 | <thymeleaf-layout-dialect.version>1.2.4</thymeleaf-layout-dialect.version> |
115 | 118 | <tomcat.version>7.0.54</tomcat.version> |
116 | 119 | <velocity.version>1.7</velocity.version> |
117 | 120 | <velocity-tools.version>2.0</velocity-tools.version> |
| 121 | + <wsdl4j.version>1.6.1</wsdl4j.version> |
118 | 122 | </properties> |
119 | 123 | <prerequisites> |
120 | 124 | <maven>3.0.0</maven> |
|
330 | 334 | <artifactId>spring-boot-starter-websocket</artifactId> |
331 | 335 | <version>1.1.0.BUILD-SNAPSHOT</version> |
332 | 336 | </dependency> |
| 337 | + <dependency> |
| 338 | + <groupId>org.springframework.boot</groupId> |
| 339 | + <artifactId>spring-boot-starter-ws</artifactId> |
| 340 | + <version>1.1.0.BUILD-SNAPSHOT</version> |
| 341 | + </dependency> |
333 | 342 |
|
334 | 343 | <!-- Third Party --> |
335 | 344 | <dependency> |
|
454 | 463 | <artifactId>jstl</artifactId> |
455 | 464 | <version>${jstl.version}</version> |
456 | 465 | </dependency> |
| 466 | + <dependency> |
| 467 | + <groupId>jaxen</groupId> |
| 468 | + <artifactId>jaxen</artifactId> |
| 469 | + <version>${jaxen.version}</version> |
| 470 | + </dependency> |
457 | 471 | <dependency> |
458 | 472 | <groupId>joda-time</groupId> |
459 | 473 | <artifactId>joda-time</artifactId> |
|
819 | 833 | <artifactId>jolokia-core</artifactId> |
820 | 834 | <version>${jolokia.version}</version> |
821 | 835 | </dependency> |
| 836 | + <dependency> |
| 837 | + <groupId>org.jdom</groupId> |
| 838 | + <artifactId>jdom2</artifactId> |
| 839 | + <version>${jdom2.version}</version> |
| 840 | + </dependency> |
822 | 841 | <dependency> |
823 | 842 | <groupId>org.liquibase</groupId> |
824 | 843 | <artifactId>liquibase-core</artifactId> |
|
1058 | 1077 | <artifactId>spring-social-facebook-web</artifactId> |
1059 | 1078 | <version>${spring-social-facebook.version}</version> |
1060 | 1079 | </dependency> |
| 1080 | + <dependency> |
| 1081 | + <groupId>org.springframework.social</groupId> |
| 1082 | + <artifactId>spring-social-linkedin</artifactId> |
| 1083 | + <version>${spring-social-linkedin.version}</version> |
| 1084 | + </dependency> |
1061 | 1085 | <dependency> |
1062 | 1086 | <groupId>org.springframework.social</groupId> |
1063 | 1087 | <artifactId>spring-social-twitter</artifactId> |
1064 | 1088 | <version>${spring-social-twitter.version}</version> |
1065 | 1089 | </dependency> |
1066 | 1090 | <dependency> |
1067 | | - <groupId>org.springframework.social</groupId> |
1068 | | - <artifactId>spring-social-linkedin</artifactId> |
1069 | | - <version>${spring-social-linkedin.version}</version> |
| 1091 | + <groupId>org.springframework.ws</groupId> |
| 1092 | + <artifactId>spring-ws-core</artifactId> |
| 1093 | + <version>${spring-ws.version}</version> |
| 1094 | + <exclusions> |
| 1095 | + <exclusion> |
| 1096 | + <groupId>commons-logging</groupId> |
| 1097 | + <artifactId>commons-logging</artifactId> |
| 1098 | + </exclusion> |
| 1099 | + </exclusions> |
| 1100 | + </dependency> |
| 1101 | + <dependency> |
| 1102 | + <groupId>org.springframework.ws</groupId> |
| 1103 | + <artifactId>spring-ws-support</artifactId> |
| 1104 | + <version>${spring-ws.version}</version> |
| 1105 | + <exclusions> |
| 1106 | + <exclusion> |
| 1107 | + <groupId>commons-logging</groupId> |
| 1108 | + <artifactId>commons-logging</artifactId> |
| 1109 | + </exclusion> |
| 1110 | + </exclusions> |
| 1111 | + </dependency> |
| 1112 | + <dependency> |
| 1113 | + <groupId>org.springframework.ws</groupId> |
| 1114 | + <artifactId>spring-ws-security</artifactId> |
| 1115 | + <version>${spring-ws.version}</version> |
| 1116 | + <exclusions> |
| 1117 | + <exclusion> |
| 1118 | + <groupId>commons-logging</groupId> |
| 1119 | + <artifactId>commons-logging</artifactId> |
| 1120 | + </exclusion> |
| 1121 | + </exclusions> |
| 1122 | + </dependency> |
| 1123 | + <dependency> |
| 1124 | + <groupId>org.springframework.ws</groupId> |
| 1125 | + <artifactId>spring-ws-test</artifactId> |
| 1126 | + <version>${spring-ws.version}</version> |
| 1127 | + <exclusions> |
| 1128 | + <exclusion> |
| 1129 | + <groupId>commons-logging</groupId> |
| 1130 | + <artifactId>commons-logging</artifactId> |
| 1131 | + </exclusion> |
| 1132 | + </exclusions> |
1070 | 1133 | </dependency> |
1071 | 1134 | <dependency> |
1072 | 1135 | <groupId>org.thymeleaf</groupId> |
1073 | 1136 | <artifactId>thymeleaf</artifactId> |
1074 | 1137 | <version>${thymeleaf.version}</version> |
1075 | 1138 | </dependency> |
1076 | | - <dependency> |
1077 | | - <groupId>org.thymeleaf.extras</groupId> |
1078 | | - <artifactId>thymeleaf-extras-springsecurity3</artifactId> |
1079 | | - <version>${thymeleaf-extras-springsecurity3.version}</version> |
1080 | | - </dependency> |
1081 | 1139 | <dependency> |
1082 | 1140 | <groupId>org.thymeleaf</groupId> |
1083 | 1141 | <artifactId>thymeleaf-spring4</artifactId> |
1084 | 1142 | <version>${thymeleaf.version}</version> |
1085 | 1143 | </dependency> |
| 1144 | + <dependency> |
| 1145 | + <groupId>org.thymeleaf.extras</groupId> |
| 1146 | + <artifactId>thymeleaf-extras-springsecurity3</artifactId> |
| 1147 | + <version>${thymeleaf-extras-springsecurity3.version}</version> |
| 1148 | + </dependency> |
1086 | 1149 | <dependency> |
1087 | 1150 | <groupId>org.yaml</groupId> |
1088 | 1151 | <artifactId>snakeyaml</artifactId> |
|
1093 | 1156 | <artifactId>jedis</artifactId> |
1094 | 1157 | <version>${jedis.version}</version> |
1095 | 1158 | </dependency> |
| 1159 | + <dependency> |
| 1160 | + <groupId>wsdl4j</groupId> |
| 1161 | + <artifactId>wsdl4j</artifactId> |
| 1162 | + <version>${wsdl4j.version}</version> |
| 1163 | + </dependency> |
1096 | 1164 | </dependencies> |
1097 | 1165 | </dependencyManagement> |
1098 | 1166 | <build> |
|
0 commit comments