- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for surefire (0.08 sec)
-
android/pom.xml
However, I think that our -Djava.security.manager=allow profile is based on the *Maven* JDK. If we want to use overrides here, we should change that profile to also be based on surefire.toolchain.version. --> <surefire.toolchain.version>${java.specification.version}</surefire.toolchain.version> <!-- Override this with -Dtest.include="**/SomeTest.java" on the CLI --> <test.include>%regex[.*.class]</test.include>
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 31 14:51:04 UTC 2024 - 21K bytes - Viewed (0) -
pom.xml
However, I think that our -Djava.security.manager=allow profile is based on the *Maven* JDK. If we want to use overrides here, we should change that profile to also be based on surefire.toolchain.version. --> <surefire.toolchain.version>${java.specification.version}</surefire.toolchain.version> <!-- Override this with -Dtest.include="**/SomeTest.java" on the CLI --> <test.include>%regex[.*.class]</test.include>
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 31 14:51:04 UTC 2024 - 20.6K bytes - Viewed (0) -
apache-maven/pom.xml
</goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemPropertyVariables> <basedir>${basedir}</basedir> </systemPropertyVariables> </configuration> <executions>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 13:41:46 UTC 2024 - 13.4K bytes - Viewed (0) -
fess-crawler/pom.xml
<build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes> <exclude>**/JodExtractorTest.java</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId>
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:13 UTC 2024 - 11.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java
ArtifactResolutionRequest request = new ArtifactResolutionRequest() .setArtifact(originatingArtifact) .setResolveRoot(false) . // This is required by the surefire plugin setArtifactDependencies(artifacts) .setManagedVersionMap(managedVersions) .setLocalRepository(localRepository) .setRemoteRepositories(remoteRepositories)
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 24.8K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/ClassPath.java
* File Specification</a>. Even though the specification only talks about relative urls, absolute * urls are actually supported too (for example, in Maven surefire plugin). */ @VisibleForTesting static URL getClassPathEntry(File jarFile, String path) throws MalformedURLException { return new URL(jarFile.toURI().toURL(), path); } @VisibleForTesting
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jan 05 17:43:40 UTC 2022 - 24.9K bytes - Viewed (0)