Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for getProjectPropertiesFile (0.1 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/util/ResourceUtil.java

        }
    
        /**
         * Gets the path to the project properties file.
         *
         * @return the Path object pointing to the project.properties file
         */
        public static Path getProjectPropertiesFile() {
            return getPath("WEB-INF/", StringUtil.EMPTY, "project.properties");
        }
    
        /**
         * Gets the path to image files directory.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 14.1K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/util/ResourceUtilTest.java

            assertNotNull(pluginPath);
            assertTrue(pluginPath.toString().contains("plugin"));
        }
    
        @Test
        public void test_getProjectPropertiesFile() {
            Path propFile = ResourceUtil.getProjectPropertiesFile();
            assertNotNull(propFile);
            assertTrue(propFile.toString().contains("project.properties"));
        }
    
        @Test
        public void test_getImagePath() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 11.8K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/helper/SystemHelper.java

                            return langItems;
                        }
                    });
    
            ComponentUtil.doInitProcesses(Runnable::run);
    
            parseProjectProperties(ResourceUtil.getProjectPropertiesFile());
    
            updateConfigListenerMap.put("Label", () -> Integer.toString(ComponentUtil.getLabelTypeHelper().load()));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 43.2K bytes
    - Click Count (0)
Back to Top