You can download java-core-2.6.jar in this page.
Open Source License
java-core-2.6.jar file has the following types.
META-INF/FCKeditor.tld META-INF/MANIFEST.MF META-INF/maven/net.fckeditor/java-core/pom.properties META-INF/maven/net.fckeditor/java-core/pom.xml net.fckeditor.FCKeditor.class net.fckeditor.FCKeditorConfig.class net.fckeditor.connector.Connector.class net.fckeditor.connector.ConnectorServlet.class net.fckeditor.connector.Dispatcher.class net.fckeditor.connector.exception.FolderAlreadyExistsException.class net.fckeditor.connector.exception.InvalidCurrentFolderException.class net.fckeditor.connector.exception.InvalidNewFolderNameException.class net.fckeditor.connector.exception.ReadException.class net.fckeditor.connector.exception.WriteException.class net.fckeditor.connector.impl.AbstractLocalFileSystemConnector.class net.fckeditor.connector.impl.ContextConnector.class net.fckeditor.connector.impl.LocalConnector.class net.fckeditor.handlers.Command.class net.fckeditor.handlers.PropertiesLoader.class net.fckeditor.handlers.RequestCycleHandler.class net.fckeditor.handlers.ResourceType.class net.fckeditor.localization.LocaleResolver.class net.fckeditor.localization.LocalizedMessages.class net.fckeditor.localization.impl.AcceptLanguageHeaderResolver.class net.fckeditor.localization.impl.JstlResolver.class net.fckeditor.requestcycle.Context.class net.fckeditor.requestcycle.ThreadLocalData.class net.fckeditor.requestcycle.UserAction.class net.fckeditor.requestcycle.UserPathBuilder.class net.fckeditor.requestcycle.impl.ContextPathBuilder.class net.fckeditor.requestcycle.impl.DisabledUserAction.class net.fckeditor.requestcycle.impl.EnabledUserAction.class net.fckeditor.requestcycle.impl.ServerRootPathBuilder.class net.fckeditor.requestcycle.impl.UserActionImpl.class net.fckeditor.response.GetResponse.class net.fckeditor.response.UploadResponse.class net.fckeditor.tags.CheckTag.class net.fckeditor.tags.ConfigTag.class net.fckeditor.tags.EditorTag.class net.fckeditor.tool.Compatibility.class net.fckeditor.tool.Utils.class net.fckeditor.tool.UtilsFile.class net.fckeditor.tool.UtilsResponse.class net.fckeditor.tool.XHtmlTagTool.class net/fckeditor/handlers/default.properties net/fckeditor/localization/default_messages.properties
java-core-2.6.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <!-- * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2004-2010 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * @version: $Id: pom.xml 4830 2009-12-28 14:49:23Z mosipov $ --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>java-core</artifactId> <packaging>jar</packaging> <dependencies> <dependency> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> <version>1.2.1</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>1.3.2</version> </dependency> <dependency> <groupId>org.devlib.schmidt</groupId> <artifactId>imageinfo</artifactId> <version>1.9</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.4</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> <version>1.1.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet.jsp</groupId> <artifactId>jsp-api</artifactId> <version>2.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-nop</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.7</version> <scope>test</scope> </dependency> </dependencies> <parent> <groupId>net.fckeditor</groupId> <artifactId>fckeditor-java</artifactId> <version>2.6</version> </parent> <build> <finalName>fckeditor-${artifactId}-${version}</finalName> <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>rewrite-tagreference-links</id> <phase>site</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <property name="ant.regexp.regexpimpl" value="org.apache.tools.ant.util.regexp.Jdk14RegexpRegexp" /> <replaceregexp byline="true" flags="m" file="target/site/tagreference.html"> <regexp pattern="&lt;a href=&quot;(\p{Graph}+)&quot;\s*&gt;(\p{Graph}+)&lt;/a&gt;" /> <substitution expression="<a href="\1">\2</a>" /> </replaceregexp> </tasks> </configuration> </execution> </executions> <!--<dependencies> <dependency> <groupId>ant</groupId> <artifactId>ant-nodeps</artifactId> <version>1.6.5</version> </dependency> </dependencies>--> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <links> <link>http://tomcat.apache.org/tomcat-5.5-doc/servletapi/</link> <link>http://tomcat.apache.org/tomcat-5.5-doc/jspapi/</link> </links> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>net.sourceforge.maven-taglib</groupId> <artifactId>maven-taglib-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-report-plugin</artifactId> </plugin> <plugin> <artifactId>maven-jxr-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.3</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>taglist-maven-plugin</artifactId> <version>2.3</version> <configuration> <tags> <tag>TODO</tag> <tag>FIXME</tag> </tags> </configuration> </plugin> <plugin> <artifactId> maven-project-info-reports-plugin </artifactId> <reportSets> <reportSet> <reports> <report>dependencies</report> <report>summary</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <quiet>true</quiet> <links> <link>http://tomcat.apache.org/tomcat-5.5-doc/servletapi/</link> <link>http://tomcat.apache.org/tomcat-5.5-doc/jspapi/</link> </links> <show>package</show> <docfilessubdirs>true</docfilessubdirs> <keywords>true</keywords> </configuration> <reportSets> <reportSet> <reports> <report>javadoc</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>clirr-maven-plugin</artifactId> <version>2.2.2</version> <configuration> <comparisonVersion>2.5</comparisonVersion> <minSeverity>info</minSeverity> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>javancss-maven-plugin</artifactId> <version>2.0</version> <configuration> <lineThreshold>15</lineThreshold> </configuration> </plugin> </plugins> </reporting> <name>FCKeditor.Java Integration Core</name> <description> This Java library enables the FCKeditor to be used in a Servlet/J2EE environment. It provides JSP tags for creating a FCKeditor instance and a Servlet handling server-side user files and folders. </description> <url>http://java.fckeditor.net</url> </project>
<dependency> <groupId>net.fckeditor</groupId> <artifactId>java-core</artifactId> <version>2.6</version> </dependency>
If you think the following java-core-2.6.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download java-core-2.6.jar file