Author: brett
Date: Sun Jul 31 19:12:11 2005
New Revision: 226715

URL: http://svn.apache.org/viewcvs?rev=226715&view=rev
Log:
get repoclean compiling again, add assembly descriptor in place of install 
script

Added:
    maven/components/trunk/sandbox/repoclean/src/assembly/
    maven/components/trunk/sandbox/repoclean/src/assembly/bin.xml   (with props)
Removed:
    maven/components/trunk/sandbox/repoclean/install.sh
Modified:
    maven/components/trunk/sandbox/repoclean/pom.xml

Modified: maven/components/trunk/sandbox/repoclean/pom.xml
URL: 
http://svn.apache.org/viewcvs/maven/components/trunk/sandbox/repoclean/pom.xml?rev=226715&r1=226714&r2=226715&view=diff
==============================================================================
--- maven/components/trunk/sandbox/repoclean/pom.xml (original)
+++ maven/components/trunk/sandbox/repoclean/pom.xml Sun Jul 31 19:12:11 2005
@@ -5,32 +5,26 @@
   <artifactId>repoclean</artifactId>
   <version>1.0-SNAPSHOT</version>
   <name>Maven v3-to-v4 Repository Cleaner</name>
-  
+
   <dependencies>
     <dependency>
       <groupId>plexus</groupId>
       <artifactId>plexus-container-default</artifactId>
-      <version>1.0-alpha-3-SNAPSHOT</version>
+      <version>1.0-alpha-3</version>
       <scope>compile</scope>
     </dependency>
     <dependency>
       <groupId>plexus</groupId>
       <artifactId>plexus-mail-sender-api</artifactId>
-      <version>1.0-alpha-1-SNAPSHOT</version>
+      <version>1.0-alpha-1</version>
       <scope>compile</scope>
     </dependency>
     <dependency>
       <groupId>plexus</groupId>
       <artifactId>plexus-mail-sender-simple</artifactId>
-      <version>1.0-alpha-1-SNAPSHOT</version>
+      <version>1.0-alpha-1</version>
       <scope>compile</scope>
     </dependency>
-    <!-- dependency>
-      <groupId>plexus</groupId>
-      <artifactId>plexus-utils</artifactId>
-      <version>1.0-alpha-2</version>
-      <scope>compile</scope>
-    </dependency -->
     <dependency>
       <groupId>classworlds</groupId>
       <artifactId>classworlds</artifactId>
@@ -40,13 +34,13 @@
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-artifact</artifactId>
-      <version>2.0-SNAPSHOT</version>
+      <version>2.0-alpha-2</version>
       <scope>compile</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-model</artifactId>
-      <version>2.0-SNAPSHOT</version>
+      <version>2.0-alpha-2</version>
       <scope>compile</scope>
     </dependency>
     <dependency>
@@ -55,5 +49,28 @@
       <version>3.8.1</version>
       <scope>test</scope>
     </dependency>
+
+    <dependency>
+      <groupId>org.apache.maven.wagon</groupId>
+      <artifactId>wagon-provider-api</artifactId>
+      <version>1.0-alpha-2</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.wagon</groupId>
+      <artifactId>wagon-file</artifactId>
+      <version>1.0-alpha-2</version>
+      <scope>provided</scope>
+    </dependency>
   </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <configuration>
+          <descriptor>src/assembly/bin.xml</descriptor>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 </project>

Added: maven/components/trunk/sandbox/repoclean/src/assembly/bin.xml
URL: 
http://svn.apache.org/viewcvs/maven/components/trunk/sandbox/repoclean/src/assembly/bin.xml?rev=226715&view=auto
==============================================================================
--- maven/components/trunk/sandbox/repoclean/src/assembly/bin.xml (added)
+++ maven/components/trunk/sandbox/repoclean/src/assembly/bin.xml Sun Jul 31 
19:12:11 2005
@@ -0,0 +1,31 @@
+<assembly>
+  <id>bin</id>
+  <formats>
+    <format>tar.gz</format>
+  </formats>
+  <fileSets>
+    <fileSet>
+      <directory>src/main/bash</directory>
+    </fileSet>
+    <fileSet>
+      <!-- TODO: use expressions instead: ${project.build.directory}, 
${project.build.finalName}, or have a <build /> tag to include the built 
artifact -->
+      <directory>target</directory>
+      <outputDirectory>lib</outputDirectory>
+      <includes>
+        <include>repoclean-*.jar</include>
+      </includes>
+      <excludes>
+        <exclude>repoclean-*-sources.jar</exclude>
+      </excludes>
+    </fileSet>
+  </fileSets>
+  <dependencySets>
+    <dependencySet>
+      <outputDirectory>lib</outputDirectory>
+      <excludes>
+        <!-- transitively picked up via default container - not needed -->
+        <exclude>junit:junit</exclude>
+      </excludes>
+    </dependencySet>
+  </dependencySets>
+</assembly>

Propchange: maven/components/trunk/sandbox/repoclean/src/assembly/bin.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/components/trunk/sandbox/repoclean/src/assembly/bin.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to