Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for Release (0.23 sec)

  1. src/test/resources/plugin/repo1/fess-ds-atlassian/maven-metadata.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <metadata>
        <groupId>org.codelibs.fess</groupId>
        <artifactId>fess-ds-atlassian</artifactId>
        <versioning>
            <latest>13.2.0</latest>
            <release>13.2.0</release>
            <versions>
                <version>12.2.0</version>
                <version>12.5.0</version>
                <version>12.6.0</version>
                <version>12.7.0</version>
                <version>13.0.0</version>
    XML
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Tue Aug 13 07:34:14 GMT 2019
    - 606 bytes
    - Viewed (0)
  2. src/test/resources/plugin/repo2/fess-ds-atlassian/maven-metadata.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <metadata modelVersion="1.1.0">
      <groupId>org.codelibs.fess</groupId>
      <artifactId>fess-ds-atlassian</artifactId>
      <versioning>
        <latest>13.2.1-SNAPSHOT</latest>
        <release></release>
        <versions>
          <version>12.2.0-SNAPSHOT</version>
          <version>12.5.0-SNAPSHOT</version>
          <version>12.5.1-SNAPSHOT</version>
          <version>12.6.1-SNAPSHOT</version>
          <version>13.0.1-SNAPSHOT</version>
    XML
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Aug 15 02:16:52 GMT 2019
    - 623 bytes
    - Viewed (0)
  3. README.md

        $ mvn antrun:run
    
    ### Run Fess
    
    Run or debug org.codelibs.fess.FessBoot on your IDE, and then access http://localhost:8080/
    
    ### Build Package
    
    Run the `package` goal and then the release file will be created in target/releases.
    
        $ mvn package
        $ mvn rpm:rpm   # .rpm package
        $ mvn jdeb:jdeb # .deb package
    
    ### Generate Source Code
    
        $ mvn dbflute:download # (one time command)
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Feb 25 00:40:07 GMT 2024
    - 7.6K bytes
    - Viewed (0)
  4. plugin.xml

    	<property name="maven.release.repo.url" value="https://oss.sonatype.org/content/repositories/releases" />
    
    	<target name="install.plugins">
    		<mkdir dir="${target.dir}" />
    		<delete dir="${plugins.dir}" />
    		<mkdir dir="${plugins.dir}" />
    		<!-- analysis-extension -->
    		<antcall target="install.plugin">
    			<param name="repo.url" value="${maven.release.repo.url}" />
    XML
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Apr 04 02:03:51 GMT 2024
    - 3.5K bytes
    - Viewed (1)
  5. module.xml

    	<property name="maven.release.repo.url" value="https://maven.codelibs.org/" />
    	<property name="opensearch.version" value="2.13.0" />
    
    	<target name="install.modules">
    		<mkdir dir="${target.dir}" />
    		<delete dir="${modules.dir}" />
    		<mkdir dir="${modules.dir}" />
    
    		<!-- analysis-common -->
    		<antcall target="install.module">
    			<param name="repo.url" value="${maven.release.repo.url}" />
    XML
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Apr 04 02:03:51 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  6. deps.xml

    	<property name="kopf.branch" value="fess-14" />
    
    	<!-- Maven Repository -->
    	<property name="maven.snapshot.repo.url" value="https://oss.sonatype.org/content/repositories/snapshots" />
    	<property name="maven.release.repo.url" value="https://repo1.maven.org/maven2" />
    
    	<target name="install.jars">
    		<mkdir dir="${target.dir}" />
    		<delete dir="${webinf.dir}/lib" />
    		<mkdir dir="${webinf.dir}/lib" />
    XML
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Apr 13 11:44:26 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  7. .github/ISSUE_TEMPLATE/bug_report.md

    ---
    name: Bug report
    about: Create a report to help us improve
    title: ''
    labels: bug
    assignees: ''
    
    ---
    
    (_Please use [discuss.codelibs.org](https://discuss.codelibs.org/c/FessEN/8) before filing a bug._)
    
    **Describe the bug**
    A clear and concise description of what the bug is.
    
    **To Reproduce**
    Steps to reproduce the behavior:
    1. Go to '...'
    2. Click on '....'
    3. Scroll down to '....'
    4. See error
    
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Mon Aug 17 22:53:30 GMT 2020
    - 782 bytes
    - Viewed (0)
  8. src/packaging/common/scripts/postinst

            echo "### NOT starting on installation, please execute the following statements to configure fess service to start automatically using chkconfig"
            echo " sudo chkconfig --add fess"
            echo "### You can start fess service by executing"
            echo " sudo service fess start"
    
        elif command -v update-rc.d >/dev/null; then
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Dec 10 01:24:02 GMT 2015
    - 3.1K bytes
    - Viewed (0)
  9. .github/ISSUE_TEMPLATE/question.md

    ---
    name: Questions
    about: See discuss.codelibs.org
    title: 'DO NOT CREATE ME'
    labels: ''
    assignees: ''
    
    ---
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri May 15 12:05:24 GMT 2020
    - 183 bytes
    - Viewed (0)
  10. src/packaging/rpm/init.d/fess

    checkJava() {
        if [ -x "$JAVA_HOME/bin/java" ]; then
            JAVA="$JAVA_HOME/bin/java"
        else
            JAVA=`which java`
        fi
    
        if [ ! -x "$JAVA" ]; then
            echo "Could not find any executable java binary. Please install java in your PATH or set JAVA_HOME"
            exit 1
        fi
    }
    
    start() {
        checkJava
        [ -x $exec ] || exit 5
    
        # Ensure that the PID_DIR exists (it is cleaned at OS startup time)
    Shell Script
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 3.7K bytes
    - Viewed (1)
Back to top