Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for m2repository (0.06 sec)

  1. README.md

    -script-groovy) L92: - [OGNL](https://github.com/codelibs/fess-script-ognl) L93: L94:## Development Information L95: L96:### Get Source Code L97: L98:1. Clone Fess's repository: L99: ``` L100: $ cd ~/workspace L101: $ git clone https://github.com/codelibs/fess.git L102: ``` L103: L104:2. Import the cloned repository as a [Maven](https://maven.apache.org/) project on [Eclipse](https://www.eclipse.org/eclipseide/) or another IDE. L105: L106:### Setup for OpenSearch Plugins L107: L108:Run...
    github.com/codelibs/fess/README.md
    Sat Oct 12 07:19:47 UTC 2024
      7.3K bytes
  2. FessMultipartRequestHandler.java

    ---------------------------- L118: protected DiskFileItemFactory createDiskFileItemFactory() { L119: final int sizeThreshold = getSizeThreshold(); L120: final File repository = createRepositoryFile(); L121: return DiskFileItemFactory.builder().setBufferSize(sizeThreshold).setFile(repository).get(); L122: } L123: L124: protected int getSizeThreshold() { L125: return ComponentUtil.getFessConfig().getHttpFileuploadThresholdSizeAsInteger(); L126: } L127: L128:...
    github.com/codelibs/fess/src/main/java/org/code...
    Wed Oct 23 13:27:21 UTC 2024
      18.6K bytes
  3. codeql.yml

    L1:# For most projects, this workflow file will not need changing; you simply need L2:# to commit it to your repository. L3:# L4:# You may wish to alter this file to override the set of languages analyzed, L5:# or to provide custom queries or build logic. L6:# L7:# ******** NOTE ******** L8:# We have attempted to detect the languages in your repository. Please check L9:# the `language` matrix defined below to confirm you have the correct set of L10:# supported CodeQL languages. L11:# L12:name: "CodeQL"...
    github.com/codelibs/fess/.github/workflows/code...
    Wed Aug 14 23:51:19 UTC 2024
      4.4K bytes
  4. maven.yml

    uses: actions/checkout@v4 L23: - name: Set up JDK 21 L24: uses: actions/setup-java@v4 L25: with: L26: java-version: '21' L27: distribution: 'temurin' L28: - uses: actions/cache@v4 L29: with: L30: path: ~/.m2/repository L31: key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} L32: restore-keys: | L33: ${{ runner.os }}-maven- L34: - name: Download Plugins with Maven L35: run: mvn -B antrun:run --file pom.xml L36: - name:...
    github.com/codelibs/fess/.github/workflows/mave...
    Sat Feb 10 11:19:11 UTC 2024
      1.1K bytes
  5. plugin.xml

    L1:<?xml version="1.0" encoding="UTF-8"?> L2:<project name="plugin" basedir="."> L3: <property name="plugins.dir" value="${basedir}/plugins" /> L4: <property name="target.dir" value="${basedir}/target/plugins" /> L5: L6: <!-- Maven Repository --> L7: <property name="maven.snapshot.repo.url" value="https://oss.sonatype.org/content/repositories/snapshots" /> L8: <property name="maven.release.repo.url" value="https://oss.sonatype.org/content/repositories/releases" /> L9: L10: <target name="install.plugins">...
    github.com/codelibs/fess/plugin.xml
    Fri Oct 25 23:33:43 UTC 2024
      3.5K bytes
  6. README.md

    ) L92: - [OGNL](https://github.com/codelibs/fess-script-ognl) L93: L94:## Entwicklungsinformationen L95: L96:### Quellcode abrufen L97: L98:1. Klonen Sie das Fess-Repository: L99: ``` L100: $ cd ~/workspace L101: $ git clone https://github.com/codelibs/fess.git L102: ``` L103: L104:2. Importieren Sie das geklonte Repository als ein [Maven](https://maven.apache.org/) Projekt in [Eclipse](https://www.eclipse.org/eclipseide/) oder einer anderen IDE. L105: L106:### Einrichten von OpenSearch-Plugins...
    github.com/codelibs/fess/docs/de/README.md
    Sat Oct 12 07:19:47 UTC 2024
      7.6K bytes
  7. deps.xml

    <property name="thumbnail.dir" value="${basedir}/src/main/webapp/WEB-INF/env/thumbnail" /> L8: <property name="site.dir" value="${basedir}/src/main/webapp/WEB-INF/site" /> L9: <property name="kopf.branch" value="fess-14" /> L10: L11: <!-- Maven Repository --> L12: <property name="maven.snapshot.repo.url" value="https://oss.sonatype.org/content/repositories/snapshots" /> L13: <property name="maven.release.repo.url" value="https://repo1.maven.org/maven2" /> L14: L15: <target name="install.jars"> L16:...
    github.com/codelibs/fess/deps.xml
    Thu Oct 24 04:37:19 UTC 2024
      2.5K bytes
  8. module.xml

    L1:<?xml version="1.0" encoding="UTF-8"?> L2:<project name="module" basedir="."> L3: <property name="modules.dir" value="${basedir}/modules" /> L4: <property name="target.dir" value="${basedir}/target/modules" /> L5: L6: <!-- Maven Repository --> L7: <property name="maven.snapshot.repo.url" value="https://maven.codelibs.org/" /> L8: <property name="maven.release.repo.url" value="https://maven.codelibs.org/" /> L9: <property name="opensearch.version" value="2.17.1" /> L10: L11: <target name="install.modules">...
    github.com/codelibs/fess/module.xml
    Fri Oct 25 12:43:59 UTC 2024
      4.5K bytes
  9. index.html

    L1: L2:<!DOCTYPE html> L3:<html> L4: L5:<head> L6: <title>Central Repository: org/codelibs/fess</title> L7: <meta name="viewport" content="width=device-width, initial-scale=1.0"> L8: <style> L9:body { L10: background: #fff; L11:} L12: </style> L13:</head> L14: L15:<body> L16: <header> L17: <h1>org/codelibs/fess</h1> L18: </header> L19: <hr/> L20: <main> L21: <pre id="contents"> L22:<a href="../">../</a> L23:<a href="fess/" title="fess/">fess/</a> ...
    github.com/codelibs/fess/src/test/resources/plu...
    Mon Jun 17 13:30:41 UTC 2024
      6.2K bytes
  10. AdminPluginAction.java

    result.addAll(getAllAvailableArtifacts()); L150: } catch (final Exception e) { L151: saveError(messages -> messages.addErrorsFailedToFindPlugins(GLOBAL)); L152: logger.warn("Failed to access a plugin repository.", e); L153: } L154: RenderDataUtil.register(data, "availableArtifactItems", result); L155: }).useForm(InstallForm.class, op -> op.setup(form -> {})); L156: } L157: L158: private HtmlResponse asListHtml() { L159:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.9K bytes
Back to top