Changeset 1893
- Timestamp:
- 2008-04-06 15:49:39 (6 months ago)
- Location:
- FCKeditor.Java/branches/2.4
- Files:
-
- 1 modified
- 4 copied
- 2 moved
-
java-core (moved) (moved from FCKeditor.Java/branches/2.4/fckeditor-java)
-
java-core/pom.xml (copied) (copied from FCKeditor.Java/branches/2.4/fckeditor-java/pom.xml) (3 diffs)
-
java-core/src (copied) (copied from FCKeditor.Java/branches/2.4/fckeditor-java/src)
-
java-demo (moved) (moved from FCKeditor.Java/branches/2.4/fckeditor-java-demo)
-
java-demo/pom.xml (copied) (copied from FCKeditor.Java/branches/2.4/fckeditor-java-demo/pom.xml) (3 diffs)
-
java-demo/src (copied) (copied from FCKeditor.Java/branches/2.4/fckeditor-java-demo/src)
-
pom.xml (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor.Java/branches/2.4/java-core/pom.xml
r1892 r1893 6 6 > 7 7 <modelVersion>4.0.0</modelVersion> 8 <artifactId> fckeditor-java</artifactId>8 <artifactId>java-core</artifactId> 9 9 <packaging>jar</packaging> 10 10 <dependencies> … … 36 36 <parent> 37 37 <groupId>net.fckeditor</groupId> 38 <artifactId>fckeditor-java -parent</artifactId>38 <artifactId>fckeditor-java</artifactId> 39 39 <version>2.4-SNAPSHOT</version> 40 40 </parent> … … 133 133 </reporting> 134 134 135 <name>FCKeditor.Java Integration Pack</name>135 <name>FCKeditor.Java Integration Core</name> 136 136 <description> 137 137 This Java library enables the FCKeditor to be used in a 138 Servlet/J2EE environment. It provides JSP tags for creating a 139 FCKeditor instance and a Servlet handling server-side user files 140 and folders. 138 Servlet/J2EE environment. It provides JSP tags for creating a FCKeditor 139 instance and a Servlet handling server-side user files and folders. 141 140 </description> 142 141 </project> -
FCKeditor.Java/branches/2.4/java-demo/pom.xml
r1892 r1893 6 6 > 7 7 <modelVersion>4.0.0</modelVersion> 8 <artifactId> fckeditor-java-demo</artifactId>8 <artifactId>java-demo</artifactId> 9 9 <packaging>war</packaging> 10 10 <dependencies> 11 11 <dependency> 12 12 <groupId>net.fckeditor</groupId> 13 <artifactId> fckeditor-java</artifactId>13 <artifactId>java-core</artifactId> 14 14 <version>${parent.version}</version> 15 15 </dependency> … … 23 23 <parent> 24 24 <groupId>net.fckeditor</groupId> 25 <artifactId>fckeditor-java -parent</artifactId>25 <artifactId>fckeditor-java</artifactId> 26 26 <version>2.4-SNAPSHOT</version> 27 27 </parent> … … 114 114 <description> 115 115 This is a drop-in demo of the FCKeditor.Java Integration. It's 116 preconfigured with the Java library and a recent FCKeditor 117 version. 116 preconfigured with the Java library and a recent FCKeditor version. 118 117 </description> 119 118 </project> -
FCKeditor.Java/branches/2.4/pom.xml
r1892 r1893 7 7 <modelVersion>4.0.0</modelVersion> 8 8 <groupId>net.fckeditor</groupId> 9 <artifactId>fckeditor-java -parent</artifactId>9 <artifactId>fckeditor-java</artifactId> 10 10 <version>2.4-SNAPSHOT</version> 11 11 <packaging>pom</packaging> … … 28 28 </dependencies> 29 29 <modules> 30 <module> fckeditor-java</module>31 <module> fckeditor-java-demo</module>30 <module>java-core</module> 31 <module>java-demo</module> 32 32 </modules> 33 33 <build> … … 209 209 </reporting> 210 210 211 <name>FCKeditor.Java Integration Parent</name>211 <name>FCKeditor.Java Integration</name> 212 212 <description> 213 The FCKeditor.Java Integration Parent fosters the entire project 214 documentation, the Java library, and a drop-in demo webapp. All three 215 depict and enable you to learn and to integrate the FCKeditor in your 216 web environment. 213 The FCKeditor.Java Integration fosters the entire project documentation, 214 the Java library, and a drop-in demo webapp. All three depict and enable 215 you to learn and to integrate the FCKeditor in your web environment. 217 216 </description> 218 217 <url>http://www.fckeditor.net/java</url>