Changeset 1368
- Timestamp:
- 2008-01-19 15:32:03 (8 months ago)
- Location:
- FCKeditor.Java/branches/2.4
- Files:
-
- 1 added
- 4 removed
- 1 modified
-
pom.xml (modified) (8 diffs)
-
src/test/java/net/fckeditor/tool/Util_getSet.java (deleted)
-
src/test/java/net/fckeditor/tool/Util_replace.java (deleted)
-
src/test/java/net/fckeditor/tool/Utils_getSet.java (deleted)
-
src/test/java/net/fckeditor/tool/Utils_replace.java (deleted)
-
src/test/java/net/fckeditor/tool/UtilsTest.java (added)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor.Java/branches/2.4/pom.xml
r1364 r1368 44 44 <version>1.4.3</version> 45 45 </dependency> 46 < !--<dependency>46 <dependency> 47 47 <groupId>org.slf4j</groupId> 48 48 <artifactId>slf4j-log4j12</artifactId> … … 62 62 <scope>runtime</scope> 63 63 </dependency> 64 --></dependencies>64 </dependencies> 65 65 <build> 66 66 <finalName>FCKeditor-${project.version}</finalName> … … 70 70 <artifactId>maven-jetty-plugin</artifactId> 71 71 <configuration> 72 <!-- <useTestClasspath>true</useTestClasspath>-->73 < systemProperties>72 <useTestClasspath>true</useTestClasspath> 73 <!--<systemProperties> 74 74 <systemProperty> 75 75 <name>log4j.configuration</name> … … 88 88 </serverClasses> 89 89 </webAppConfig> 90 </configuration>91 < dependencies>90 --></configuration> 91 <!--<dependencies> 92 92 <dependency> 93 93 <groupId>org.slf4j</groupId> … … 101 101 </dependency> 102 102 </dependencies> 103 </plugin>103 --></plugin> 104 104 <plugin> 105 105 <artifactId>maven-compiler-plugin</artifactId> … … 108 108 <target>jsr14</target> 109 109 </configuration> 110 </plugin> 110 <executions> 111 <execution> 112 <id>test-compiler</id> 113 <phase>process-test-sources</phase> 114 <goals> 115 <goal>testCompile</goal> 116 </goals> 117 <configuration> 118 <source>1.5</source> 119 <target>1.5</target> 120 </configuration> 121 </execution> 122 </executions> 123 </plugin> 124 111 125 <plugin> 112 126 <artifactId>maven-assembly-plugin</artifactId> … … 174 188 <plugin> 175 189 <artifactId>maven-javadoc-plugin</artifactId> 190 </plugin> 191 <plugin> 192 <artifactId>maven-surefire-report-plugin</artifactId> 193 </plugin> 194 <plugin> 195 <artifactId>maven-jxr-plugin</artifactId> 196 </plugin> 197 <plugin> 198 <artifactId>maven-pmd-plugin</artifactId> 199 <configuration> 200 <targetJdk>1.5</targetJdk> 201 </configuration> 176 202 </plugin> 177 203 </plugins> … … 296 322 <maven>2.0.6</maven> 297 323 </prerequisites> 324 <distributionManagement> 325 <site> 326 <id>uni-space</id> 327 <url>scp://duesseldorf.mi.fu-berlin.de/home/bude/ossipov/web-home/public_html/fckeditor-java</url> 328 </site> 329 </distributionManagement> 298 330 </project>