1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http:/www.w3.org/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>br.org.javadecompiler</groupId>
5 <artifactId>javadecompiler</artifactId>
6 <version>1.0.0-SNAPSHOT</version>
7 <packaging>jar</packaging>
8 <name>Java Decompiler</name>
9 <description>Java Decompiler</description>
10 <inceptionYear>2008</inceptionYear>
13 <groupId>log4j</groupId>
14 <artifactId>log4j</artifactId>
15 <version>1.2.13</version>
16 <scope>compile</scope>
19 <groupId>junit</groupId>
20 <artifactId>junit</artifactId>
21 <version>3.8.1</version>
28 <groupId>org.apache.maven.plugins</groupId>
29 <artifactId>maven-surefire-plugin</artifactId>
32 <exclude>classes/**</exclude>
37 <groupId>org.apache.maven.plugins</groupId>
38 <artifactId>maven-antrun-plugin</artifactId>
41 <id>generate-test-classes</id>
42 <phase>generate-test-resources</phase>
45 <taskdef resource="net/sf/antcontrib/antlib.xml" />
48 <fileset dir="${basedir}/src/test/resources/jasmin"
52 <echo message="Processing file @{file}" />
53 <java classname="jasmin.Main" failonerror="true">
55 <arg value="${basedir}/src/test/resources/classes" />
56 <arg value="@{file}" />
58 <pathelement location="${basedir}/lib/jasmin-2.3.jar" />
72 <groupId>ant-contrib</groupId>
73 <artifactId>ant-contrib</artifactId>
74 <version>1.0b2</version>