Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 488 for excludes (0.27 sec)

  1. guava-gwt/pom.xml

            </configuration>
          </plugin>
          <plugin>
            <artifactId>maven-jar-plugin</artifactId>
            <configuration>
              <excludes>
                <!-- 2. Don't include the source in the jar (since that would let users depend on it from GWT client code, which is compiled from source). -->
                <exclude>**/ForceGuavaCompilation*</exclude>
                <exclude>**/DummyJavadocClass*</exclude>
              </excludes>
    XML
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Apr 11 15:00:55 GMT 2024
    - 19.8K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java

            return (List<?>) session.getData().computeIfAbsent(PLUGIN_EXCLUDES_KEY, () -> parsePluginExcludes(session));
        }
    
        private List<String> parsePluginExcludes(RepositorySystemSession session) {
            String excludes = ConfigUtils.getString(session, null, MAVEN_PLUGIN_VALIDATION_EXCLUDES_KEY);
            if (excludes == null || excludes.isEmpty()) {
                return Collections.emptyList();
            }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Nov 19 21:11:13 GMT 2023
    - 17.4K bytes
    - Viewed (0)
  3. pom.xml

    					<webappDirectory>${project.build.directory}/${project.build.finalName}-compress</webappDirectory>
    					<excludes>
    						<exclude>**/*min.js</exclude>
    						<exclude>**/*min.css</exclude>
    						<exclude>**/plugins/**/*.js</exclude>
    						<exclude>**/WEB-INF/site/**</exclude>
    					</excludes>
    				</configuration>
    			</plugin>
    			<plugin>
    				<groupId>org.dbflute</groupId>
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Apr 22 12:06:58 GMT 2024
    - 48.7K bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/AllTests.java

                    }
                }
            }
        }
    
    
        /**
         * @param excludes
         * @param mutate
         * @return
         */
        private static boolean shouldSkip ( Set<String> excludes, String mutate ) {
            boolean skip = false;
            for ( String exclude : excludes ) {
                if ( mutate.startsWith(exclude) ) {
                    skip = true;
                    break;
                }
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 14.4K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/beans/util/CopyOptionsTest.java

        @Test
        public void testIsTargetProperty_excludes() throws Exception {
            final CopyOptions option = new CopyOptions().exclude(BeanNames.hoge());
            assertThat(option.isTargetProperty("hoge"), is(not(true)));
            assertThat(option.isTargetProperty("hoge2"), is(true));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testIsTargetProperty_excludes_prefix() throws Exception {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 12K bytes
    - Viewed (0)
  6. android/pom.xml

          <resource>
            <directory>../..</directory>
            <includes>
              <include>LICENSE</include>
            </includes>
            <targetPath>META-INF</targetPath>
          </resource>
        </resources>
        <testResources>
          <testResource>
            <directory>test</directory>
            <excludes>
              <exclude>**/*.java</exclude>
            </excludes>
          </testResource>
        </testResources>
        <plugins>
    XML
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Mar 12 20:26:18 GMT 2024
    - 19.4K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingHelper.java

                Set<String> exclusions = new LinkedHashSet<>();
    
                for (ClassRealm extensionRealm : extensionRealms) {
                    List<String> excludes = exportedArtifacts.get(extensionRealm);
    
                    if (excludes != null) {
                        exclusions.addAll(excludes);
                    }
    
                    List<String> exports = exportedPackages.get(extensionRealm);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 10.7K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/MavenModelMerger.java

            if (!src.isEmpty()) {
                List<String> tgt = target.getFilters();
                Set<String> excludes = new LinkedHashSet<>(tgt);
                List<String> merged = new ArrayList<>(tgt.size() + src.size());
                merged.addAll(tgt);
                for (String s : src) {
                    if (!excludes.contains(s)) {
                        merged.add(s);
                    }
                }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 22.8K bytes
    - Viewed (0)
  9. maven-core/pom.xml

                  <exclude>org.apache.maven.repository.LocalArtifactRepository</exclude>
                  <exclude>org.apache.maven.repository.LocalRepositoryNotAccessibleException</exclude>
                  <exclude>org.apache.maven.repository.RepositorySystem</exclude>
                  <exclude>org.apache.maven.settings.DefaultMavenSettingsBuilder</exclude>
                  <exclude>org.apache.maven.settings.MavenSettingsBuilder</exclude>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 15.4K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java

                        // don't stop processing in case a future segment explicitly excludes this repo
                    }
                    // check for external:http:*
                    else if (EXTERNAL_HTTP_WILDCARD.equals(repo) && isExternalHttpRepo(originalRepository)) {
                        result = true;
                        // don't stop processing in case a future segment explicitly excludes this repo
                    } else if (WILDCARD.equals(repo)) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 32.6K bytes
    - Viewed (0)
Back to top