Changeset 1911
- Timestamp:
- 2008-04-13 02:43:13 (4 months ago)
- Location:
- FCKeditor.Java/branches/2.4
- Files:
-
- 3 modified
-
pom.xml (modified) (3 diffs)
-
src/main/assembly/bin.xml (modified) (2 diffs)
-
src/main/assembly/src.xml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor.Java/branches/2.4/pom.xml
r1904 r1911 3 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 4 4 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"> 7 6 <modelVersion>4.0.0</modelVersion> 8 7 <groupId>net.fckeditor</groupId> … … 113 112 <tasks> 114 113 <copy overwrite="true" todir="src/site" 115 flatten="true" 116 > 114 flatten="true"> 117 115 <fileset dir=".."> 118 116 <include 119 name="src/site/site.xml" 120 /> 117 name="src/site/site.xml" /> 121 118 </fileset> 122 119 </copy> 123 120 <replace value="<src>../" 124 token="<src>/" dir=".." 125 > 121 token="<src>/" dir=".."> 126 122 <include 127 name="${pom.artifactId}/src/site/site.xml" 128 /> 123 name="${pom.artifactId}/src/site/site.xml" /> 129 124 <exclude 130 name="fckeditor-java/src/site/site.xml" 131 /> 125 name="fckeditor-java/src/site/site.xml" /> 132 126 </replace> 133 127 <replace value="href="../" 134 token="href="/" dir=".." 135 > 128 token="href="/" dir=".."> 136 129 <include 137 name="${pom.artifactId}/src/site/site.xml" 138 /> 130 name="${pom.artifactId}/src/site/site.xml" /> 139 131 <exclude 140 name="fckeditor-java/src/site/site.xml" 141 /> 132 name="fckeditor-java/src/site/site.xml" /> 142 133 </replace> 143 134 <replace value="href="" 144 token="href="../${pom.artifactId}/" dir=".." 145 > 135 token="href="../${pom.artifactId}/" dir=".."> 146 136 <include 147 name="${pom.artifactId}/src/site/site.xml" 148 /> 137 name="${pom.artifactId}/src/site/site.xml" /> 149 138 <exclude 150 name="fckeditor-java/src/site/site.xml" 151 /> 139 name="fckeditor-java/src/site/site.xml" /> 152 140 </replace> 153 141 </tasks> … … 212 200 <name>FCKeditor.Java Integration</name> 213 201 <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. 217 206 </description> 218 207 <url>http://www.fckeditor.net/java</url> -
FCKeditor.Java/branches/2.4/src/main/assembly/bin.xml
r1779 r1911 6 6 </formats> 7 7 <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> 8 19 <fileSets> 9 20 <fileSet> … … 12 23 </includes> 13 24 </fileSet> 14 <fileSet>15 <directory>target</directory>16 <outputDirectory />17 <includes>18 <include>*.jar</include>19 </includes>20 </fileSet>21 25 </fileSets> 22 26 <dependencySets> 23 27 <dependencySet> 24 <useProjectArtifact>false</useProjectArtifact>25 28 <outputDirectory>lib</outputDirectory> 26 29 </dependencySet> -
FCKeditor.Java/branches/2.4/src/main/assembly/src.xml
r1910 r1911 5 5 <format>zip</format> 6 6 </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> 7 20 <fileSets> 8 21 <fileSet> 9 22 <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> 15 26 </includes> 16 <excludes>17 <exclude>**/target/</exclude>18 </excludes>19 27 </fileSet> 20 28 </fileSets>