|
107 | 107 | <!-- Apache Commons dependencies -->
|
108 | 108 | <commons-beanutils.version>1.9.4</commons-beanutils.version>
|
109 | 109 | <commons-cli.version>1.2</commons-cli.version>
|
| 110 | + <commons-codec.version>1.11</commons-codec.version> |
110 | 111 | <commons-collections.version>3.2.2</commons-collections.version>
|
| 112 | + <commons-compress.version>1.19</commons-compress.version> |
| 113 | + <commons-csv.version>1.0</commons-csv.version> |
111 | 114 | <commons-io.version>2.5</commons-io.version>
|
112 | 115 | <commons-lang3.version>3.7</commons-lang3.version>
|
| 116 | + <commons-logging.version>1.1.3</commons-logging.version> |
| 117 | + <commons-logging-api.version>1.1</commons-logging-api.version> |
113 | 118 | <commons-math3.version>3.1.1</commons-math3.version>
|
| 119 | + <commons-net.version>3.6</commons-net.version> |
| 120 | + <commons-text.version>1.4</commons-text.version> |
114 | 121 |
|
115 | 122 | <!-- Apache Ratis version -->
|
116 | 123 | <ratis.version>0.3.0-eca3531-SNAPSHOT</ratis.version>
|
|
119 | 126 | <hikari.version>2.4.12</hikari.version>
|
120 | 127 | <mssql.version>6.2.1.jre7</mssql.version>
|
121 | 128 | <okhttp.version>2.7.5</okhttp.version>
|
| 129 | + <jdom.version>1.1</jdom.version> |
| 130 | + <grizzly.version>2.2.21</grizzly.version> |
122 | 131 | <gson.version>2.2.4</gson.version>
|
| 132 | + <htrace3.version>3.1.0-incubating</htrace3.version> |
| 133 | + <htrace4.version>4.1.0-incubating</htrace4.version> |
| 134 | + <metrics.version>3.2.4</metrics.version> |
123 | 135 | <netty3.version>3.10.6.Final</netty3.version>
|
124 | 136 | <netty4.version>4.0.52.Final</netty4.version>
|
125 | 137 |
|
|
637 | 649 | <dependency>
|
638 | 650 | <groupId>org.apache.commons</groupId>
|
639 | 651 | <artifactId>commons-compress</artifactId>
|
640 |
| - <version>1.19</version> |
| 652 | + <version>${commons-compress.version}</version> |
641 | 653 | </dependency>
|
642 | 654 | <dependency>
|
643 | 655 | <groupId>org.apache.commons</groupId>
|
644 | 656 | <artifactId>commons-csv</artifactId>
|
645 |
| - <version>1.0</version> |
| 657 | + <version>${commons-csv.version}</version> |
646 | 658 | </dependency>
|
647 | 659 | <dependency>
|
648 | 660 | <groupId>org.apache.httpcomponents</groupId>
|
|
657 | 669 | <dependency>
|
658 | 670 | <groupId>commons-codec</groupId>
|
659 | 671 | <artifactId>commons-codec</artifactId>
|
660 |
| - <version>1.11</version> |
| 672 | + <version>${commons-codec.version}</version> |
661 | 673 | </dependency>
|
662 | 674 | <dependency>
|
663 | 675 | <groupId>commons-net</groupId>
|
664 | 676 | <artifactId>commons-net</artifactId>
|
665 |
| - <version>3.6</version> |
| 677 | + <version>${commons-net.version}</version> |
666 | 678 | </dependency>
|
667 | 679 | <dependency>
|
668 | 680 | <groupId>javax.servlet</groupId>
|
|
869 | 881 | <dependency>
|
870 | 882 | <groupId>commons-logging</groupId>
|
871 | 883 | <artifactId>commons-logging</artifactId>
|
872 |
| - <version>1.1.3</version> |
| 884 | + <version>${commons-logging.version}</version> |
873 | 885 | <exclusions>
|
874 | 886 | <exclusion>
|
875 | 887 | <groupId>avalon-framework</groupId>
|
|
888 | 900 | <dependency>
|
889 | 901 | <groupId>commons-logging</groupId>
|
890 | 902 | <artifactId>commons-logging-api</artifactId>
|
891 |
| - <version>1.1</version> |
| 903 | + <version>${commons-logging-api.version}</version> |
892 | 904 | </dependency>
|
893 | 905 | <dependency>
|
894 | 906 | <groupId>log4j</groupId>
|
|
987 | 999 | <dependency>
|
988 | 1000 | <groupId>org.apache.commons</groupId>
|
989 | 1001 | <artifactId>commons-text</artifactId>
|
990 |
| - <version>1.4</version> |
| 1002 | + <version>${commons-text.version}</version> |
991 | 1003 | </dependency>
|
992 | 1004 | <dependency>
|
993 | 1005 | <groupId>org.slf4j</groupId>
|
|
1123 | 1135 | <dependency>
|
1124 | 1136 | <groupId>org.apache.htrace</groupId>
|
1125 | 1137 | <artifactId>htrace-core</artifactId>
|
1126 |
| - <version>3.1.0-incubating</version> |
| 1138 | + <version>${htrace3.version}</version> |
1127 | 1139 | </dependency>
|
1128 | 1140 | <dependency>
|
1129 | 1141 | <groupId>org.apache.htrace</groupId>
|
1130 | 1142 | <artifactId>htrace-core4</artifactId>
|
1131 |
| - <version>4.1.0-incubating</version> |
| 1143 | + <version>${htrace4.version}</version> |
1132 | 1144 | </dependency>
|
1133 | 1145 | <dependency>
|
1134 | 1146 | <groupId>org.jdom</groupId>
|
1135 | 1147 | <artifactId>jdom</artifactId>
|
1136 |
| - <version>1.1</version> |
| 1148 | + <version>${jdom.version}</version> |
1137 | 1149 | </dependency>
|
1138 | 1150 | <dependency>
|
1139 | 1151 | <groupId>com.googlecode.json-simple</groupId>
|
|
1193 | 1205 | <dependency>
|
1194 | 1206 | <groupId>io.dropwizard.metrics</groupId>
|
1195 | 1207 | <artifactId>metrics-core</artifactId>
|
1196 |
| - <version>3.2.4</version> |
| 1208 | + <version>${metrics.version}</version> |
1197 | 1209 | </dependency>
|
1198 | 1210 | <dependency>
|
1199 | 1211 | <groupId>org.apache.hadoop</groupId>
|
|
1235 | 1247 | <dependency>
|
1236 | 1248 | <groupId>org.glassfish.grizzly</groupId>
|
1237 | 1249 | <artifactId>grizzly-http-servlet</artifactId>
|
1238 |
| - <version>2.2.21</version> |
| 1250 | + <version>${grizzly.version}</version> |
1239 | 1251 | </dependency>
|
1240 | 1252 | <dependency>
|
1241 | 1253 | <groupId>org.glassfish.grizzly</groupId>
|
1242 | 1254 | <artifactId>grizzly-http</artifactId>
|
1243 |
| - <version>2.2.21</version> |
| 1255 | + <version>${grizzly.version}</version> |
1244 | 1256 | </dependency>
|
1245 | 1257 | <dependency>
|
1246 | 1258 | <groupId>org.glassfish.grizzly</groupId>
|
1247 | 1259 | <artifactId>grizzly-http-server</artifactId>
|
1248 |
| - <version>2.2.21</version> |
| 1260 | + <version>${grizzly.version}</version> |
1249 | 1261 | </dependency>
|
1250 | 1262 |
|
1251 | 1263 | <dependency>
|
|
0 commit comments