You are viewing a plain text version of this content. The canonical link for it is here.
Posted to doxia-commits@maven.apache.org by vs...@apache.org on 2008/12/15 22:39:51 UTC

svn commit: r726813 - in /maven/doxia/doxia-tools/trunk/doxia-converter: pom.xml src/main/assembly/ src/main/assembly/jar.xml

Author: vsiveton
Date: Mon Dec 15 13:39:50 2008
New Revision: 726813

URL: http://svn.apache.org/viewvc?rev=726813&view=rev
Log:
o using an assembly file to remove some unused dependencies

Added:
    maven/doxia/doxia-tools/trunk/doxia-converter/src/main/assembly/
    maven/doxia/doxia-tools/trunk/doxia-converter/src/main/assembly/jar.xml   (with props)
Modified:
    maven/doxia/doxia-tools/trunk/doxia-converter/pom.xml

Modified: maven/doxia/doxia-tools/trunk/doxia-converter/pom.xml
URL: http://svn.apache.org/viewvc/maven/doxia/doxia-tools/trunk/doxia-converter/pom.xml?rev=726813&r1=726812&r2=726813&view=diff
==============================================================================
--- maven/doxia/doxia-tools/trunk/doxia-converter/pom.xml (original)
+++ maven/doxia/doxia-tools/trunk/doxia-converter/pom.xml Mon Dec 15 13:39:50 2008
@@ -153,7 +153,9 @@
         <artifactId>maven-assembly-plugin</artifactId>
         <version>2.2-beta-2</version>
         <configuration>
-          <descriptorId>jar-with-dependencies</descriptorId>
+          <descriptors>
+            <descriptor>src/main/assembly/jar.xml</descriptor>
+          </descriptors>
           <finalName>apache-doxia-${project.version}</finalName>
           <archive>
             <manifestEntries>

Added: maven/doxia/doxia-tools/trunk/doxia-converter/src/main/assembly/jar.xml
URL: http://svn.apache.org/viewvc/maven/doxia/doxia-tools/trunk/doxia-converter/src/main/assembly/jar.xml?rev=726813&view=auto
==============================================================================
--- maven/doxia/doxia-tools/trunk/doxia-converter/src/main/assembly/jar.xml (added)
+++ maven/doxia/doxia-tools/trunk/doxia-converter/src/main/assembly/jar.xml Mon Dec 15 13:39:50 2008
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
+  <id>jar-with-dependencies</id>
+  <formats>
+    <format>jar</format>
+  </formats>
+  <includeBaseDirectory>false</includeBaseDirectory>
+  <dependencySets>
+    <dependencySet>
+      <unpack>true</unpack>
+      <scope>runtime</scope>
+      <excludes>
+        <exclude>junit:junit</exclude>
+        <exclude>junit-addons:junit-addons</exclude>
+        <exclude>javax.servlet:servlet-api</exclude>
+      </excludes>
+    </dependencySet>
+  </dependencySets>
+  <fileSets>
+    <fileSet>
+      <directory>target/classes</directory>
+    </fileSet>
+  </fileSets>
+</assembly>
\ No newline at end of file

Propchange: maven/doxia/doxia-tools/trunk/doxia-converter/src/main/assembly/jar.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/doxia/doxia-tools/trunk/doxia-converter/src/main/assembly/jar.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision