- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 245 for COMPILE (0.04 sec)
-
impl/maven-core/src/test/projects/project-builder/mng-3023/dependency/pom.xml
<groupId>org.apache.maven.its.plugins</groupId> <artifactId>maven-it-plugin-artifact</artifactId> <version>2.1-SNAPSHOT</version> <executions> <execution> <id>compile</id> <phase>initialize</phase> <goals> <goal>set</goal> </goals> <configuration> <mainFile>dependency-classes</mainFile>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/PrunedTag.java
*/ public static PrunedTag[] parse(final String value) { return split(value, ",").get(stream -> stream.filter(StringUtil::isNotBlank).map(v -> { final Pattern pattern = Pattern.compile("(\\w+)(\\[[^\\]]+\\])?(\\.[\\w\\-]+)?(#[\\w\\-]+)?"); final Matcher matcher = pattern.matcher(v.trim()); if (matcher.matches()) { final PrunedTag tag = new PrunedTag(matcher.group(1));Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 04:23:08 UTC 2025 - 7.1K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifeCyclePluginAnalyzerStub.java
if ("JAR".equals(packaging)) { plugins = new LinkedHashSet<>(); plugins.add(newPlugin("maven-compiler-plugin", "compile", "testCompile")); plugins.add(newPlugin("maven-resources-plugin", "resources", "testResources")); plugins.add(newPlugin("maven-surefire-plugin", "test"));
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.5K bytes - Viewed (0) -
compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionIT.java
class ComparableVersionIT { @Test void test() throws Exception { Files.walkFileTree(Paths.get("target"), new SimpleFileVisitor<Path>() { Pattern mavenArtifactJar = Pattern.compile("maven-artifact-[\\d.]+(-SNAPSHOT)?\\.jar"); @Override public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/MemoryDataHelper.java
*/ public synchronized void addIncludeUrlPattern(final String sessionId, final String url) { final List<Pattern> patternList = getIncludeUrlPatternList(sessionId); patternList.add(Pattern.compile(url)); } /** * Returns the list of include URL patterns for the specified session. * Creates a new list if one doesn't exist. * @param sessionId the session IDRegistered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 8.1K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/EmptyLifecyclePluginAnalyzer.java
if ("JAR".equals(packaging)) { plugins = new LinkedHashSet<>(); plugins.add(newPlugin("maven-compiler-plugin", "compile", "testCompile")); plugins.add(newPlugin("maven-resources-plugin", "resources", "testResources")); plugins.add(newPlugin("maven-surefire-plugin", "test"));
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.4K bytes - Viewed (0) -
guava/src/com/google/common/reflect/Types.java
* has not added {@link AnnotatedType}. That means that we cannot implement that interface in * source code in a way that will compile on both Java and Android. If we include the {@code * getAnnotatedBounds()} method, then its return type means it won't compile on Android, while if * we don't include the method, then the compiler will complain that an abstract method isRegistered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Fri Oct 31 19:34:24 UTC 2025 - 24.3K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolverTest.java
new File("src/test/projects/lifecycle-dependency-resolver/pom.xml"), new Properties(), true); Collection<String> scopesToCollect = null; Collection<String> scopesToResolve = Collections.singletonList("compile"); boolean aggregating = false; Set<Artifact> reactorArtifacts = new HashSet<>(3); for (MavenProject reactorProject : session.getProjects()) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.1K bytes - Viewed (0) -
impl/maven-core/src/site/apt/plugin-execution-isolation.apt
the parent realm>>. Plugins are guaranteed to be provided the resources found in <<<plexus.core>>> and <<<plexus.core.maven>>> realms at run-time if required. Plugins can state compile-time dependencies on any of the resources found in the core realms listed above and these dependencies will be included in the plugin descriptor that is generated but when running within Maven these
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/MultilineMessageHelper.java
*/ public class MultilineMessageHelper { private static final int DEFAULT_MAX_SIZE = 65; private static final char BOX_CHAR = '*'; private static final Pattern S_FILTER = Pattern.compile("\\s+"); public static String separatorLine() { StringBuilder sb = new StringBuilder(DEFAULT_MAX_SIZE); repeat(sb, '*', DEFAULT_MAX_SIZE); return sb.toString(); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 2.8K bytes - Viewed (0)