|
6 | 6 | <artifactId>usb4java-javax</artifactId> |
7 | 7 | <packaging>jar</packaging> |
8 | 8 | <name>usb4java-javax</name> |
9 | | - <version>1.2.1-SNAPSHOT</version> |
| 9 | + <version>1.3.0-SNAPSHOT</version> |
10 | 10 | <url>http://usb4java.org/usb4java-javax/</url> |
11 | 11 | <description> |
12 | 12 | Extension for usb4java which implements javax.usb (JSR-80). |
|
81 | 81 | <url>https://ci.ailis.de/job/${project.artifactId}/</url> |
82 | 82 | </ciManagement> |
83 | 83 |
|
| 84 | + <prerequisites> |
| 85 | + <maven>3.0.5</maven> |
| 86 | + </prerequisites> |
| 87 | + |
84 | 88 | <reporting> |
85 | 89 | <plugins> |
86 | 90 | <plugin> |
87 | 91 | <groupId>org.apache.maven.plugins</groupId> |
88 | 92 | <artifactId>maven-project-info-reports-plugin</artifactId> |
89 | | - <version>2.7</version> |
| 93 | + <version>3.0.0</version> |
90 | 94 | <configuration> |
91 | 95 | <dependencyDetailEnabled>false</dependencyDetailEnabled> |
92 | 96 | <dependencyLocationsEnabled>false</dependencyLocationsEnabled> |
|
95 | 99 | <reportSet> |
96 | 100 | <reports> |
97 | 101 | <report>summary</report> |
98 | | - <report>project-team</report> |
99 | | - <report>mailing-list</report> |
100 | | - <report>issue-tracking</report> |
| 102 | + <report>team</report> |
| 103 | + <report>mailing-lists</report> |
| 104 | + <report>issue-management</report> |
101 | 105 | <report>scm</report> |
102 | | - <report>cim</report> |
103 | | - <report>license</report> |
| 106 | + <report>licenses</report> |
104 | 107 | <report>dependencies</report> |
105 | 108 | <report>plugins</report> |
106 | 109 | <report>plugin-management</report> |
|
111 | 114 | <plugin> |
112 | 115 | <groupId>org.apache.maven.plugins</groupId> |
113 | 116 | <artifactId>maven-changes-plugin</artifactId> |
114 | | - <version>2.9</version> |
| 117 | + <version>2.12.1</version> |
| 118 | + <configuration> |
| 119 | + <teamlist>team.html</teamlist> |
| 120 | + </configuration> |
115 | 121 | <reportSets> |
116 | 122 | <reportSet> |
117 | 123 | <reports> |
|
123 | 129 | <plugin> |
124 | 130 | <groupId>org.apache.maven.plugins</groupId> |
125 | 131 | <artifactId>maven-javadoc-plugin</artifactId> |
126 | | - <version>2.9.1</version> |
| 132 | + <version>3.0.1</version> |
127 | 133 | <reportSets> |
128 | 134 | <reportSet> |
129 | 135 | <reports> |
|
136 | 142 | </reporting> |
137 | 143 |
|
138 | 144 | <build> |
139 | | - <pluginManagement> |
140 | | - <plugins> |
141 | | - <plugin> |
142 | | - <groupId>org.apache.maven.plugins</groupId> |
143 | | - <artifactId>maven-surefire-plugin</artifactId> |
144 | | - <version>2.16</version> |
145 | | - </plugin> |
146 | | - </plugins> |
147 | | - </pluginManagement> |
148 | 145 |
|
149 | 146 | <plugins> |
150 | 147 |
|
151 | 148 | <!-- Use Java 6 --> |
152 | 149 | <plugin> |
153 | 150 | <groupId>org.apache.maven.plugins</groupId> |
154 | 151 | <artifactId>maven-compiler-plugin</artifactId> |
155 | | - <version>3.1</version> |
| 152 | + <version>3.8.0</version> |
156 | 153 | <configuration> |
157 | 154 | <source>1.6</source> |
158 | 155 | <target>1.6</target> |
|
164 | 161 | <plugin> |
165 | 162 | <groupId>org.apache.maven.plugins</groupId> |
166 | 163 | <artifactId>maven-site-plugin</artifactId> |
167 | | - <version>3.3</version> |
| 164 | + <version>3.7.1</version> |
168 | 165 | <configuration> |
169 | 166 | <chmod>false</chmod> |
170 | 167 | <locales>en</locales> |
|
176 | 173 | <!-- Build binary artifacts for Unix, Mac OS X and Windows --> |
177 | 174 | <plugin> |
178 | 175 | <artifactId>maven-assembly-plugin</artifactId> |
179 | | - <version>2.2.2</version> |
| 176 | + <version>3.1.0</version> |
180 | 177 | <configuration> |
181 | 178 | <appendAssemblyId>false</appendAssemblyId> |
| 179 | + <attach>true</attach> |
182 | 180 | <descriptors> |
183 | 181 | <descriptor>src/main/assembly/tarball.xml</descriptor> |
184 | 182 | <descriptor>src/main/assembly/zip.xml</descriptor> |
185 | 183 | </descriptors> |
186 | | - <!-- Workaround for issue MASSEMBLY-449 --> |
187 | | - <archiverConfig> |
188 | | - <fileMode>420</fileMode> <!-- 420(dec) = 644(oct) --> |
189 | | - <directoryMode>493</directoryMode> <!-- 493(dec) = 755(oct) --> |
190 | | - <defaultDirectoryMode>493</defaultDirectoryMode> |
191 | | - </archiverConfig> |
192 | 184 | </configuration> |
193 | 185 | <executions> |
194 | 186 | <execution> |
195 | 187 | <id>package-assembly</id> |
196 | 188 | <phase>package</phase> |
197 | 189 | <goals> |
198 | | - <goal>attached</goal> |
| 190 | + <goal>single</goal> |
199 | 191 | </goals> |
200 | 192 | </execution> |
201 | 193 | </executions> |
202 | 194 | </plugin> |
| 195 | + |
| 196 | + <plugin> |
| 197 | + <groupId>org.apache.maven.plugins</groupId> |
| 198 | + <artifactId>maven-surefire-plugin</artifactId> |
| 199 | + <version>2.22.0</version> |
| 200 | + </plugin> |
| 201 | + <plugin> |
| 202 | + <groupId>org.apache.maven.plugins</groupId> |
| 203 | + <artifactId>maven-clean-plugin</artifactId> |
| 204 | + <version>3.1.0</version> |
| 205 | + </plugin> |
| 206 | + <plugin> |
| 207 | + <groupId>org.apache.maven.plugins</groupId> |
| 208 | + <artifactId>maven-deploy-plugin</artifactId> |
| 209 | + <version>3.0.0-M1</version> |
| 210 | + </plugin> |
| 211 | + <plugin> |
| 212 | + <groupId>org.apache.maven.plugins</groupId> |
| 213 | + <artifactId>maven-install-plugin</artifactId> |
| 214 | + <version>3.0.0-M1</version> |
| 215 | + </plugin> |
| 216 | + <plugin> |
| 217 | + <groupId>org.apache.maven.plugins</groupId> |
| 218 | + <artifactId>maven-jar-plugin</artifactId> |
| 219 | + <version>3.1.0</version> |
| 220 | + </plugin> |
| 221 | + <plugin> |
| 222 | + <groupId>org.apache.maven.plugins</groupId> |
| 223 | + <artifactId>maven-resources-plugin</artifactId> |
| 224 | + <version>3.1.0</version> |
| 225 | + </plugin> |
203 | 226 | </plugins> |
204 | 227 | </build> |
205 | 228 |
|
|
233 | 256 | <dependency> |
234 | 257 | <groupId>junit</groupId> |
235 | 258 | <artifactId>junit</artifactId> |
236 | | - <version>4.11</version> |
| 259 | + <version>4.12</version> |
237 | 260 | <scope>test</scope> |
238 | 261 | </dependency> |
239 | 262 | <dependency> |
240 | 263 | <groupId>org.mockito</groupId> |
241 | 264 | <artifactId>mockito-core</artifactId> |
242 | | - <version>1.9.5</version> |
| 265 | + <version>2.23.0</version> |
243 | 266 | <scope>test</scope> |
244 | 267 | </dependency> |
245 | 268 | <dependency> |
|
250 | 273 | <dependency> |
251 | 274 | <groupId>org.apache.commons</groupId> |
252 | 275 | <artifactId>commons-lang3</artifactId> |
253 | | - <version>3.2.1</version> |
| 276 | + <version>3.8.1</version> |
254 | 277 | </dependency> |
255 | 278 | <dependency> |
256 | 279 | <groupId>org.usb4java</groupId> |
257 | 280 | <artifactId>usb4java</artifactId> |
258 | | - <version>1.2.1-SNAPSHOT</version> |
| 281 | + <version>1.3.0-SNAPSHOT</version> |
259 | 282 | </dependency> |
260 | 283 | </dependencies> |
261 | 284 |
|
|
0 commit comments