Changeset 1911

Show
Ignore:
Timestamp:
2008-04-13 02:43:13 (4 months ago)
Author:
mosipov
Message:

ASSIGNED - #2082: assemblies broken

Location:
FCKeditor.Java/branches/2.4
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • FCKeditor.Java/branches/2.4/pom.xml

    r1904 r1911  
    33        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    44        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
    5                       http://maven.apache.org/xsd/maven-4.0.0.xsd" 
    6 > 
     5                      http://maven.apache.org/xsd/maven-4.0.0.xsd"> 
    76        <modelVersion>4.0.0</modelVersion> 
    87        <groupId>net.fckeditor</groupId> 
     
    113112                                                        <tasks> 
    114113                                                                <copy overwrite="true" todir="src/site" 
    115                                                                         flatten="true" 
    116                                                                 > 
     114                                                                        flatten="true"> 
    117115                                                                        <fileset dir=".."> 
    118116                                                                                <include 
    119                                                                                         name="src/site/site.xml" 
    120                                                                                 /> 
     117                                                                                        name="src/site/site.xml" /> 
    121118                                                                        </fileset> 
    122119                                                                </copy> 
    123120                                                                <replace value="&lt;src&gt;../" 
    124                                                                         token="&lt;src&gt;/" dir=".." 
    125                                                                 > 
     121                                                                        token="&lt;src&gt;/" dir=".."> 
    126122                                                                        <include 
    127                                                                                 name="${pom.artifactId}/src/site/site.xml" 
    128                                                                         /> 
     123                                                                                name="${pom.artifactId}/src/site/site.xml" /> 
    129124                                                                        <exclude 
    130                                                                                 name="fckeditor-java/src/site/site.xml" 
    131                                                                         /> 
     125                                                                                name="fckeditor-java/src/site/site.xml" /> 
    132126                                                                </replace> 
    133127                                                                <replace value="href=&quot;../" 
    134                                                                         token="href=&quot;/" dir=".." 
    135                                                                 > 
     128                                                                        token="href=&quot;/" dir=".."> 
    136129                                                                        <include 
    137                                                                                 name="${pom.artifactId}/src/site/site.xml" 
    138                                                                         /> 
     130                                                                                name="${pom.artifactId}/src/site/site.xml" /> 
    139131                                                                        <exclude 
    140                                                                                 name="fckeditor-java/src/site/site.xml" 
    141                                                                         /> 
     132                                                                                name="fckeditor-java/src/site/site.xml" /> 
    142133                                                                </replace> 
    143134                                                                <replace value="href=&quot;" 
    144                                                                         token="href=&quot;../${pom.artifactId}/" dir=".." 
    145                                                                 > 
     135                                                                        token="href=&quot;../${pom.artifactId}/" dir=".."> 
    146136                                                                        <include 
    147                                                                                 name="${pom.artifactId}/src/site/site.xml" 
    148                                                                         /> 
     137                                                                                name="${pom.artifactId}/src/site/site.xml" /> 
    149138                                                                        <exclude 
    150                                                                                 name="fckeditor-java/src/site/site.xml" 
    151                                                                         /> 
     139                                                                                name="fckeditor-java/src/site/site.xml" /> 
    152140                                                                </replace> 
    153141                                                        </tasks> 
     
    212200        <name>FCKeditor.Java Integration</name> 
    213201        <description> 
    214                 The FCKeditor.Java Integration fosters the entire project documentation, 
    215                 the Java library, and a drop-in demo webapp. All three depict and enable 
    216                 you to learn and to integrate the FCKeditor in your web environment. 
     202                The FCKeditor.Java Integration fosters the entire project 
     203                documentation, the Java library, and a drop-in demo webapp. All 
     204                three depict and enable you to learn and to integrate the 
     205                FCKeditor in your web environment. 
    217206        </description> 
    218207        <url>http://www.fckeditor.net/java</url> 
  • FCKeditor.Java/branches/2.4/src/main/assembly/bin.xml

    r1779 r1911  
    66        </formats> 
    77        <includeSiteDirectory>true</includeSiteDirectory> 
     8        <moduleSets> 
     9                <moduleSet> 
     10                        <excludes> 
     11                                <exclude>*:war</exclude> 
     12                        </excludes> 
     13                        <binaries> 
     14                                <includeDependencies>false</includeDependencies> 
     15                                <unpack>false</unpack> 
     16                        </binaries> 
     17                </moduleSet> 
     18        </moduleSets> 
    819        <fileSets> 
    920                <fileSet> 
     
    1223                        </includes> 
    1324                </fileSet> 
    14                 <fileSet> 
    15                         <directory>target</directory> 
    16                         <outputDirectory /> 
    17                         <includes> 
    18                                 <include>*.jar</include>  
    19                         </includes> 
    20                 </fileSet> 
    2125        </fileSets> 
    2226        <dependencySets> 
    2327                <dependencySet> 
    24                         <useProjectArtifact>false</useProjectArtifact> 
    2528                        <outputDirectory>lib</outputDirectory> 
    2629                </dependencySet> 
  • FCKeditor.Java/branches/2.4/src/main/assembly/src.xml

    r1910 r1911  
    55                <format>zip</format> 
    66        </formats> 
     7        <moduleSets> 
     8                <moduleSet> 
     9                        <sources> 
     10                                <fileSets> 
     11                                        <fileSet> 
     12                                                <excludes> 
     13                                                        <exclude>target/</exclude> 
     14                                                </excludes> 
     15                                        </fileSet> 
     16                                </fileSets> 
     17                        </sources> 
     18                </moduleSet> 
     19        </moduleSets> 
    720        <fileSets> 
    821                <fileSet> 
    922                        <includes> 
    10                                 <include>**/src/</include> 
    11                                 <include>**/README*</include> 
    12                                 <include>**/LICENSE*</include> 
    13                                 <include>**/NOTICE*</include> 
    14                                 <include>**/*.xml</include> 
     23                                <include>src/</include> 
     24                                <include>*.txt</include> 
     25                                <include>*.xml</include> 
    1526                        </includes> 
    16                         <excludes> 
    17                                 <exclude>**/target/</exclude> 
    18                         </excludes> 
    1927                </fileSet> 
    2028        </fileSets>