Changeset 2045
- Timestamp:
- 2008-06-07 23:22:09 (7 months ago)
- Location:
- FCKeditor.Java/trunk
- Files:
-
- 5 modified
-
java-core/pom.xml (modified) (2 diffs)
-
java-demo/pom.xml (modified) (1 diff)
-
pom.xml (modified) (2 diffs)
-
src/main/assembly/bin.xml (modified) (2 diffs)
-
src/site/site.xml (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor.Java/trunk/java-core/pom.xml
r2036 r2045 4 4 <packaging>jar</packaging> 5 5 <dependencies> 6 <dependency> 7 <groupId>commons-fileupload</groupId> 8 <artifactId>commons-fileupload</artifactId> 9 <version>1.2</version> 10 </dependency> 11 <dependency> 12 <groupId>commons-io</groupId> 13 <artifactId>commons-io</artifactId> 14 <version>1.3.2</version> 15 </dependency> 16 <dependency> 17 <groupId>org.slf4j</groupId> 18 <artifactId>slf4j-api</artifactId> 19 <version>${slf4j.version}</version> 20 </dependency> 6 21 <dependency> 7 22 <groupId>javax.servlet</groupId> … … 25 40 <groupId>org.slf4j</groupId> 26 41 <artifactId>slf4j-nop</artifactId> 27 <version> 1.5.0</version>42 <version>${slf4j.version}</version> 28 43 <scope>test</scope> 29 44 </dependency> -
FCKeditor.Java/trunk/java-demo/pom.xml
r2042 r2045 14 14 <groupId>org.slf4j</groupId> 15 15 <artifactId>slf4j-simple</artifactId> 16 <version> 1.5.0</version>16 <version>${slf4j.version}</version> 17 17 <scope>runtime</scope> 18 18 </dependency> -
FCKeditor.Java/trunk/pom.xml
r2038 r2045 5 5 <version>2.4-SNAPSHOT</version> 6 6 <packaging>pom</packaging> 7 <dependencies>8 <dependency>9 <groupId>commons-fileupload</groupId>10 <artifactId>commons-fileupload</artifactId>11 <version>1.2</version>12 </dependency>13 <dependency>14 <groupId>commons-io</groupId>15 <artifactId>commons-io</artifactId>16 <version>1.3.2</version>17 </dependency>18 <dependency>19 <groupId>org.slf4j</groupId>20 <artifactId>slf4j-api</artifactId>21 <version>1.5.0</version>22 </dependency>23 </dependencies>24 7 <modules> 25 8 <module>java-core</module> … … 29 12 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 30 13 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> 14 <slf4j.version>1.5.0</slf4j.version> 31 15 </properties> 32 16 <build> -
FCKeditor.Java/trunk/src/main/assembly/bin.xml
r2001 r2045 12 12 <include>*:jar</include> 13 13 </includes> 14 <binaries> 15 <includeDependencies>false</includeDependencies> 14 <binaries> 15 <dependencySets> 16 <dependencySet> 17 <outputDirectory>lib</outputDirectory> 18 </dependencySet> 19 </dependencySets> 16 20 <outputFileNameMapping> 17 21 fckeditor-${artifactId}-${version}.${extension} … … 54 58 </fileSet> 55 59 </fileSets> 56 <dependencySets>57 <dependencySet>58 <outputDirectory>lib</outputDirectory>59 </dependencySet>60 </dependencySets>61 60 </assembly> -
FCKeditor.Java/trunk/src/site/site.xml
r2035 r2045 42 42 <!-- Postponed to beyond 2.4 --> 43 43 <!--<item name="Changes Report" href="/changes-report.html" />--> 44 <item name="Dependencies" href="/dependencies.html" />45 44 <item name="Issue Tracking" href="/issue-tracking.html" /> 46 45 <item name="Mailing Lists" href="/mail-lists.html" /> … … 90 89 href="/java-core/taglist.html" 91 90 /> 92 <!--<item name="Tag reference" href="/java-core/tagreference.html" />-->93 91 <item name="Test JavaDocs" 94 92 href="/java-core/testapidocs/index.html"