|
64 | 64 | </profile> |
65 | 65 | </profiles> |
66 | 66 | <dependencies> |
67 | | - <dependency> |
68 | | - <groupId>com.googlecode.json-simple</groupId> |
69 | | - <artifactId>json-simple</artifactId> |
70 | | - <version>1.1.1</version> |
71 | | - </dependency> |
72 | 67 | <dependency> |
73 | 68 | <groupId>org.apache.httpcomponents</groupId> |
74 | 69 | <artifactId>httpclient</artifactId> |
|
100 | 95 | <artifactId>base64</artifactId> |
101 | 96 | <version>2.3.9</version> |
102 | 97 | </dependency> |
103 | | - <dependency> |
104 | | - <groupId>commons-lang</groupId> |
105 | | - <artifactId>commons-lang</artifactId> |
106 | | - <version>2.6</version> |
107 | | - <scope>test</scope> |
108 | | - </dependency> |
109 | 98 | <dependency> |
110 | 99 | <groupId>org.hamcrest</groupId> |
111 | | - <artifactId>hamcrest-all</artifactId> |
112 | | - <version>1.3</version> |
| 100 | + <artifactId>hamcrest</artifactId> |
| 101 | + <version>2.2</version> |
113 | 102 | <scope>test</scope> |
114 | 103 | </dependency> |
115 | 104 | </dependencies> |
116 | 105 | <build> |
117 | 106 | <plugins> |
118 | 107 | <plugin> |
119 | 108 | <artifactId>maven-antrun-plugin</artifactId> |
| 109 | + <version>3.1.0</version> |
120 | 110 | <executions> |
121 | 111 | <execution> |
122 | 112 | <phase>generate-sources</phase> |
123 | 113 | <configuration> |
124 | | - <tasks> |
| 114 | + <target> |
125 | 115 | <filterset id="filters"> |
126 | 116 | <filter token="VERSION" value="${project.version}" /> |
127 | 117 | </filterset> |
128 | 118 | <copy preservelastmodified="true" file="./src/main/java/com/testingbot/resources/BuildUtils.template" tofile="./src/main/java/com/testingbot/BuildUtils.java" overwrite="true"> |
129 | 119 | <filterset refid="filters" /> |
130 | 120 | </copy> |
131 | | - </tasks> |
| 121 | + </target> |
132 | 122 | </configuration> |
133 | 123 | <goals> |
134 | 124 | <goal>run</goal> |
|
215 | 205 | <plugin> |
216 | 206 | <groupId>org.apache.maven.plugins</groupId> |
217 | 207 | <artifactId>maven-gpg-plugin</artifactId> |
218 | | - <version>1.6</version> |
| 208 | + <version>3.2.4</version> |
219 | 209 | <executions> |
220 | 210 | <execution> |
221 | 211 | <id>sign-artifacts</id> |
|
229 | 219 | <plugin> |
230 | 220 | <groupId>org.apache.maven.plugins</groupId> |
231 | 221 | <artifactId>maven-source-plugin</artifactId> |
| 222 | + <version>3.3.1</version> |
232 | 223 | <executions> |
233 | 224 | <execution> |
234 | 225 | <id>attach-sources</id> |
|
241 | 232 | <plugin> |
242 | 233 | <groupId>org.apache.maven.plugins</groupId> |
243 | 234 | <artifactId>maven-javadoc-plugin</artifactId> |
| 235 | + <version>3.6.3</version> |
244 | 236 | <configuration> |
245 | 237 | <source>8</source> |
246 | 238 | <detectJavaApiLink>false</detectJavaApiLink> |
|
0 commit comments