|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>com.tagtraum</groupId> |
5 | 5 | <artifactId>gcviewer</artifactId> |
6 | | -<version>1.32-SNAPSHOT</version> |
| 6 | +<version>1.32</version> |
7 | 7 | <packaging>jar</packaging> |
8 | 8 | <name>GCViewer</name> |
9 | 9 | <url>http://github.com/chewiebug/GCViewer/wiki</url> |
|
117 | 117 | <artifactId>maven-deploy-plugin</artifactId> |
118 | 118 | <version>2.7</version> |
119 | 119 | </plugin> |
| 120 | + |
120 | 121 | <!--This plugin's configuration is used to store Eclipse m2e settings |
121 | 122 | only. It has no influence on the Maven build itself. --> |
122 | 123 | <plugin> |
|
147 | 148 | <ignore></ignore> |
148 | 149 | </action> |
149 | 150 | </pluginExecution> |
| 151 | +<pluginExecution> |
| 152 | +<pluginExecutionFilter> |
| 153 | +<groupId>org.jacoco</groupId> |
| 154 | +<artifactId> |
| 155 | +jacoco-maven-plugin |
| 156 | +</artifactId> |
| 157 | +<versionRange> |
| 158 | +[0.6.2.201302030002,) |
| 159 | +</versionRange> |
| 160 | +<goals> |
| 161 | +<goal>prepare-agent</goal> |
| 162 | +</goals> |
| 163 | +</pluginExecutionFilter> |
| 164 | +<action> |
| 165 | +<ignore></ignore> |
| 166 | +</action> |
| 167 | +</pluginExecution> |
150 | 168 | </pluginExecutions> |
151 | 169 | </lifecycleMappingMetadata> |
152 | 170 | </configuration> |
|
203 | 221 | </configuration> |
204 | 222 | </plugin> |
205 | 223 |
|
| 224 | +<plugin> |
| 225 | +<groupId>org.jacoco</groupId> |
| 226 | +<artifactId>jacoco-maven-plugin</artifactId> |
| 227 | +<version>0.6.2.201302030002</version> |
| 228 | +<executions> |
| 229 | +<execution> |
| 230 | +<id>prepare-agent</id> |
| 231 | +<goals> |
| 232 | +<goal>prepare-agent</goal> |
| 233 | +</goals> |
| 234 | +</execution> |
| 235 | +<execution> |
| 236 | +<id>report</id> |
| 237 | +<phase>prepare-package</phase> |
| 238 | +<goals> |
| 239 | +<goal>report</goal> |
| 240 | +</goals> |
| 241 | +</execution> |
| 242 | +<execution> |
| 243 | +<id>check</id> |
| 244 | +<goals> |
| 245 | +<goal>check</goal> |
| 246 | +</goals> |
| 247 | +<configuration> |
| 248 | +<check> |
| 249 | +<classRatio>33</classRatio> |
| 250 | +<instructionRatio>38</instructionRatio> |
| 251 | +<methodRatio>31</methodRatio> |
| 252 | +<branchRatio>37</branchRatio> |
| 253 | +<complexityRatio>28</complexityRatio> |
| 254 | +<lineRatio>39</lineRatio> |
| 255 | +</check> |
| 256 | +</configuration> |
| 257 | +</execution> |
| 258 | +</executions> |
| 259 | +</plugin> |
| 260 | + |
206 | 261 | <plugin> |
207 | 262 | <artifactId>maven-resources-plugin</artifactId> |
208 | 263 | <executions> |
|
329 | 384 | <fileset dir="${project.basedir}/target"> |
330 | 385 | <include name="${project.build.finalName}.${project.packaging}" /> |
331 | 386 | <include name="gcviewer-mac-${project.version}.zip" /> |
332 | | - <include name="README" /> |
| 387 | +<include name="README" /> |
333 | 388 | </fileset> |
334 | 389 | </scp> |
335 | 390 | </target> |
|
0 commit comments