|
4 | 4 |
|
5 | 5 | <groupId>com.igormaznitsa</groupId> |
6 | 6 | <artifactId>jbbp</artifactId> |
7 | | - <version>1.2.0-SNAPSHOT</version> |
| 7 | + <version>1.2.0</version> |
8 | 8 | <packaging>jar</packaging> |
9 | 9 |
|
10 | 10 | <name>jbbp</name> |
11 | | - <description>JBBP (Java Binary Block Parser) is a small lightweight framework to parse binary blocks and streamss to their binary parts, also it has DSL to form binary blocks.</description> |
| 11 | + <description>JBBP (Java Binary Block Parser) is a small lightweight framework to parse binary data in Java, it has own DSL to describe parsing data format</description> |
12 | 12 | <url>https://github.com/raydac/java-binary-block-parser</url> |
13 | 13 |
|
14 | 14 | <properties> |
|
98 | 98 |
|
99 | 99 | <profiles> |
100 | 100 | <profile> |
101 | | - <id>Coverage</id> |
| 101 | + <id>coverage</id> |
102 | 102 | <build> |
103 | 103 | <plugins> |
104 | 104 | <plugin> |
105 | 105 | <groupId>org.jacoco</groupId> |
106 | 106 | <artifactId>jacoco-maven-plugin</artifactId> |
107 | | - <version>0.7.4.201502262128</version> |
| 107 | + <version>0.7.5.201505241946</version> |
108 | 108 | <executions> |
109 | 109 | <execution> |
110 | 110 | <goals> |
|
124 | 124 | </build> |
125 | 125 | </profile> |
126 | 126 | <profile> |
127 | | - <id>make-bundle</id> |
| 127 | + <id>bundle</id> |
128 | 128 | <build> |
129 | 129 | <plugins> |
130 | 130 | <plugin> |
131 | 131 | <groupId>org.apache.maven.plugins</groupId> |
132 | 132 | <artifactId>maven-assembly-plugin</artifactId> |
133 | | - <version>2.4</version> |
| 133 | + <version>2.5.4</version> |
134 | 134 | <executions> |
135 | 135 | <execution> |
136 | 136 | <id>make-bundle</id> |
|
149 | 149 | <plugin> |
150 | 150 | <groupId>org.apache.maven.plugins</groupId> |
151 | 151 | <artifactId>maven-source-plugin</artifactId> |
152 | | - <version>2.2.1</version> |
| 152 | + <version>2.4</version> |
153 | 153 | <executions> |
154 | 154 | <execution> |
155 | 155 | <id>generate-sources</id> |
|
203 | 203 | <plugin> |
204 | 204 | <groupId>org.apache.maven.plugins</groupId> |
205 | 205 | <artifactId>maven-compiler-plugin</artifactId> |
206 | | - <version>3.2</version> |
| 206 | + <version>3.3</version> |
207 | 207 | <configuration> |
208 | 208 | <compilerArgument>-Xlint:all</compilerArgument> |
209 | 209 | <verbose>false</verbose> |
|
216 | 216 | <plugin> |
217 | 217 | <groupId>org.apache.maven.plugins</groupId> |
218 | 218 | <artifactId>maven-surefire-plugin</artifactId> |
219 | | - <version>2.18</version> |
| 219 | + <version>2.18.1</version> |
220 | 220 | <configuration> |
221 | 221 | <forkMode>pertest</forkMode> |
222 | 222 | <reuseForks>false</reuseForks> |
|
225 | 225 | <plugin> |
226 | 226 | <groupId>org.codehaus.mojo</groupId> |
227 | 227 | <artifactId>animal-sniffer-maven-plugin</artifactId> |
228 | | - <version>1.13</version> |
| 228 | + <version>1.14</version> |
229 | 229 | <executions> |
230 | 230 | <execution> |
231 | 231 | <id>ensure-java-1.5-class-library</id> |
|
0 commit comments