Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for JavaTestFixturesPlugin (0.26 sec)

  1. platforms/jvm/plugins-jvm-test-fixtures/src/main/java/org/gradle/api/plugins/JavaTestFixturesPlugin.java

     *
     * @since 5.6
     * @see <a href="https://docs.gradle.org/current/userguide/java_testing.html#sec:java_test_fixtures">Java Test Fixtures reference</a>
     */
    public abstract class JavaTestFixturesPlugin implements Plugin<Project> {
    
        @Inject
        public JavaTestFixturesPlugin() { }
    
        @Override
        public void apply(Project project) {
    
            project.getPlugins().apply(JavaBasePlugin.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-jvm-test-fixtures/src/main/resources/META-INF/gradle-plugins/org.gradle.java-test-fixtures.properties

    # See the License for the specific language governing permissions and
    # limitations under the License.
    #
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 13 11:38:02 UTC 2023
    - 668 bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipsePlugin.java

                        }
                    });
                }
            });
    
            project.getPlugins().withType(JavaTestFixturesPlugin.class, new Action<JavaTestFixturesPlugin>() {
                @Override
                public void execute(JavaTestFixturesPlugin javaTestFixturesPlugin) {
                    model.getClasspath().getContainsTestFixtures().convention(true);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  4. build-logic/integration-testing/src/main/kotlin/gradlebuild.test-fixtures.gradle.kts

    sourceSets.matching { it.name.endsWith("Test") }.all {
        // the 'test' (with lower case 't') source set is already configured to use test fixtures by the JavaTestFixturesPlugin
        configurations[implementationConfigurationName].dependencies.add(
            dependencies.testFixtures(project)
        )
    }
    
    val testFixturesApi by configurations
    val testFixturesImplementation by configurations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 12 13:19:06 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top