Changeset 4368
- Timestamp:
- 2010-10-13 10:08:30 (3 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 3 edited
- 1 moved
-
process/server/pom.xml (modified) (1 diff)
-
process/test/pom.xml (modified) (1 diff)
-
tools/lily-kauri-plugin/src/main/java/org/lilycms/tools/mavenplugin/kauridepresolver/KauriProjectDependencyResolver.java (moved) (moved from trunk/tools/lily-kauri-plugin/src/main/java/org/lilycms/tools/mavenplugin/kauridepresolver/KauriDependencyResolver.java) (1 diff)
-
tools/lily-kauri-plugin/src/main/java/org/lilycms/tools/mavenplugin/kauridepresolver/KauriRuntimeDependencyResolver.java (added)
-
tools/lily-kauri-plugin/src/main/java/org/lilycms/tools/mavenplugin/kauridepresolver/KauriRuntimeRepository.java (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/process/server/pom.xml
r4363 r4368 106 106 </executions> 107 107 </plugin> 108 109 <plugin> 110 <groupId>org.lilycms</groupId> 111 <artifactId>lily-kauri-plugin</artifactId> 112 <version>0.2-SNAPSHOT</version> 113 <inherited>false</inherited> 114 <configuration> 115 <kauriVersion>${version.kauri}</kauriVersion> 116 </configuration> 117 <executions> 118 <execution> 119 <phase>compile</phase> 120 <goals> 121 <goal>resolve-runtime-dependencies</goal> 122 </goals> 123 </execution> 124 </executions> 125 </plugin> 108 126 </plugins> 109 127 -
trunk/process/test/pom.xml
r4363 r4368 103 103 <phase>compile</phase> 104 104 <goals> 105 <goal>resolve </goal>105 <goal>resolve-project-dependencies</goal> 106 106 </goals> 107 107 </execution> -
trunk/tools/lily-kauri-plugin/src/main/java/org/lilycms/tools/mavenplugin/kauridepresolver/KauriProjectDependencyResolver.java
r4363 r4368 16 16 /** 17 17 * 18 * @goal resolve 18 * @goal resolve-project-dependencies 19 19 * @requiresDependencyResolution runtime 20 20 * @description Resolve (download) all the dependencies of a Kauri project starting from wiring.xml. 21 21 */ 22 public class Kauri DependencyResolver extends AbstractMojo {22 public class KauriProjectDependencyResolver extends AbstractMojo { 23 23 /** 24 24 * Location of the conf directory. -
trunk/tools/lily-kauri-plugin/src/main/java/org/lilycms/tools/mavenplugin/kauridepresolver/KauriRuntimeRepository.java
r4363 r4368 19 19 */ 20 20 public class KauriRuntimeRepository extends AbstractMojo { 21 /**22 * Location of the conf directory.23 *24 * @parameter expression="${basedir}/conf"25 * @required26 */27 protected String confDirectory;28 29 21 /** 30 22 * Kauri version. … … 76 68 77 69 public void execute() throws MojoExecutionException, MojoFailureException { 78 KauriProjectClasspath cp = new KauriProjectClasspath( confDirectory, kauriVersion, getLog(), null,70 KauriProjectClasspath cp = new KauriProjectClasspath(null, kauriVersion, getLog(), null, 79 71 artifactFactory, resolver, remoteRepositories, localRepository); 80 72
Note: See TracChangeset
for help on using the changeset viewer.