Author: tchemit Date: 2008-03-31 23:23:32 +0000 (Mon, 31 Mar 2008) New Revision: 266 Modified: trunk/lutinvcs/lutinvcs-ui/pom.xml Log: use mock provider (should be only in test phase!) Modified: trunk/lutinvcs/lutinvcs-ui/pom.xml =================================================================== --- trunk/lutinvcs/lutinvcs-ui/pom.xml 2008-03-31 23:23:08 UTC (rev 265) +++ trunk/lutinvcs/lutinvcs-ui/pom.xml 2008-03-31 23:23:32 UTC (rev 266) @@ -25,6 +25,25 @@ <build> <plugins> <plugin> + <!--- Clean phase : we must clean also src/java files --> + <artifactId>maven-antrun-plugin</artifactId> + <executions> + <execution> + <phase>clean</phase> + <configuration> + <tasks> + <delete includeemptydirs="true"> + <fileset dir="${maven.src.dir}/main/java" includes="**/*"/> + </delete> + </tasks> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> <groupId>lutinplugin</groupId> <artifactId>maven-jaxx-plugin</artifactId> <version>0.2-SNAPSHOT</version> @@ -50,7 +69,7 @@ <!-- should be api depency, not core... --> <artifactId>lutinvcs-core</artifactId> <scope>compile</scope> - <version>0.1-SNAPSHOT</version> + <version>${current.version}</version> </dependency> </dependencies> </plugin> @@ -77,11 +96,15 @@ <artifactId>lutinvcs-core</artifactId> <scope>compile</scope> </dependency> + <dependency> + <groupId>lutinlib.vcs</groupId> + <artifactId>lutinvcs-provider-mock</artifactId> + <scope>compile</scope> + </dependency> <!--Jaxx--> <dependency> <groupId>lutinlib</groupId> <artifactId>jaxx</artifactId> - <version>1.0.4-SNAPSHOT</version> <scope>compile</scope> </dependency> </dependencies>