Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 176 for BaseDir (0.06 seconds)

  1. compat/maven-embedder/src/test/java/org/apache/maven/cli/event/ExecutionEventLoggerTest.java

            when(project.getFile()).thenReturn(new File(basedir, "pom.xml"));
            when(project.getBasedir()).thenReturn(basedir);
    
            MavenSession session = mock(MavenSession.class);
            when(session.getTopLevelProject()).thenReturn(project);
            when(event.getSession()).thenReturn(session);
            when(session.getTopDirectory()).thenReturn(basedir.toPath());
    
            // execute
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sun Dec 01 19:41:22 GMT 2024
    - 12.3K bytes
    - Click Count (0)
  2. apache-maven/pom.xml

          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <configuration>
              <systemPropertyVariables>
                <basedir>${basedir}</basedir>
              </systemPropertyVariables>
            </configuration>
            <executions>
              <execution>
                <id>test</id>
                <goals>
                  <goal>test</goal>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Mon Nov 10 03:14:05 GMT 2025
    - 12.7K bytes
    - Click Count (0)
  3. impl/maven-core/src/test/java/org/apache/maven/repository/TestRepositoryConnector.java

        private RemoteRepository repository;
    
        private File basedir;
    
        public TestRepositoryConnector(RemoteRepository repository) {
            this.repository = repository;
            String repositoryUrl = repository.getUrl();
            if (repositoryUrl.contains("${")) {
                // the repository url contains unresolved properties and getting the basedir is not possible
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Sep 11 17:20:46 GMT 2025
    - 5.6K bytes
    - Click Count (0)
  4. dbflute.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <project name="dbflute" basedir=".">
    	<property name="mydbflute.dir" value="${basedir}/mydbflute" />
    	<property name="target.dir" value="${basedir}/target" />
    	<property name="branch.name" value="fess-15.4" />
    	<property name="mydbflute.url" value="https://github.com/lastaflute/lastaflute-example-waterfront/archive/${branch.name}.zip" />
    
    	<target name="mydbflute.check">
    		<condition property="mydbflute.exists">
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Dec 20 08:30:43 GMT 2025
    - 999 bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

                logger.info("Created thumbnail directory: {}", baseDir.getAbsolutePath());
            }
            if (!baseDir.isDirectory()) {
                throw new FessSystemException("Not found: " + baseDir.getAbsolutePath());
            }
    
            if (logger.isDebugEnabled()) {
                logger.debug("Thumbnail Directory: {}", baseDir.getAbsolutePath());
            }
    
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 27K bytes
    - Click Count (0)
  6. impl/maven-core/src/main/java/org/apache/maven/artifact/repository/MavenArtifactRepository.java

            this.layout = layout;
            this.snapshots = snapshots;
            this.releases = releases;
            //
            // Derive these from the URL
            //
            this.protocol = protocol(url);
            this.basedir = basedir(url);
        }
    
        public MavenArtifactRepository(
                String id,
                Path path,
                ArtifactRepositoryLayout layout,
                ArtifactRepositoryPolicy snapshots,
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 12.1K bytes
    - Click Count (0)
  7. api/maven-api-model/pom.xml

          <plugin>
            <groupId>org.codehaus.modello</groupId>
            <artifactId>modello-maven-plugin</artifactId>
            <configuration>
              <version>4.2.0</version>
              <velocityBasedir>${project.basedir}/../../src/mdo</velocityBasedir>
              <models>
                <model>src/main/mdo/maven.mdo</model>
              </models>
              <templates>
                <template>model.vm</template>
              </templates>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Sep 16 12:39:59 GMT 2025
    - 3.2K bytes
    - Click Count (0)
  8. src/main/webapp/WEB-INF/env/suggest/resources/log4j2.xml

    		<Property name="log.file.basedir" value="${sys:fess.log.path:-target/logs}" />
    		<Property name="backup.date.suffix" value="_%d{yyyyMMdd}" />
    		<Property name="backup.max.history" value="10" />
    	</Properties>
    
    	<Appenders>
    		<RollingFile name="AppFile" fileName="${log.file.basedir}/${domain.name}.log"
    			filePattern="${log.file.basedir}/${domain.name}${backup.date.suffix}-%i.log.gz">
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Mon Feb 20 13:05:30 GMT 2023
    - 1.3K bytes
    - Click Count (0)
  9. src/main/webapp/WEB-INF/env/thumbnail/resources/log4j2.xml

    		<Property name="log.file.basedir" value="${sys:fess.log.path:-target/logs}" />
    		<Property name="backup.date.suffix" value="_%d{yyyyMMdd}" />
    		<Property name="backup.max.history" value="10" />
    	</Properties>
    
    	<Appenders>
    		<RollingFile name="AppFile" fileName="${log.file.basedir}/${domain.name}.log"
    			filePattern="${log.file.basedir}/${domain.name}${backup.date.suffix}-%i.log.gz">
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Mon Feb 20 13:05:30 GMT 2023
    - 1.3K bytes
    - Click Count (0)
  10. impl/maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4.java

            this.project = project;
    
            Path basedir = null;
    
            if (project != null) {
                Path projectFile = project.getBasedir();
                basedir = projectFile.toAbsolutePath();
            }
    
            if (basedir == null) {
                basedir = session.getTopDirectory();
            }
    
            if (basedir == null) {
                basedir = Paths.get(System.getProperty("user.dir"));
            }
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jan 24 17:29:44 GMT 2025
    - 9.8K bytes
    - Click Count (0)
Back to Top