Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 268 for Catalog (0.23 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr1_gradle_init.adoc

    <1> Apply the application plugin to add support for building a CLI application in Java.
    <2> Use Maven Central for resolving dependencies.
    <3> Use JUnit Jupiter for testing (using the version catalog).
    <4> This dependency is used by the application (referred using the version catalog).
    <5> Define the toolchain version.
    <6> Define the main class for the application.
    <7> Use JUnit Platform for unit tests.
    =====
    [.multi-language-sample]
    =====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 22:50:45 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-javaPlatformCatalog/kotlin/catalog/settings.gradle.kts

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * 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: Mon Nov 27 17:53:42 UTC 2023
    - 646 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-versionCatalogPlugin/kotlin/settings.gradle.kts

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * 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: Mon Nov 27 17:53:42 UTC 2023
    - 646 bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/DefaultVersionCatalog.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.catalog;
    
    import java.io.Serializable;
    import java.util.List;
    import java.util.Map;
    import java.util.stream.Collectors;
    
    import static org.gradle.api.internal.catalog.AliasNormalizer.normalize;
    
    public class DefaultVersionCatalog implements Serializable {
        private final String name;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Dec 17 22:25:43 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    @NonNullApi
    package org.gradle.api.internal.catalog;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 705 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/ClassSource.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.catalog;
    
    public interface ClassSource {
        String getPackageName();
        String getSimpleClassName();
        String getSource();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 777 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-asprovider/kotlin/settings.gradle.kts

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    rootProject.name = "catalog"
    
    dependencyResolutionManagement {
        repositories {
            mavenCentral()
        }
    }
    
    // needed for 'use_version_asprovider' snippet
    dependencyResolutionManagement {
        versionCatalogs {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 961 bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/DefaultVersionCatalogBuilderTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.api.internal.catalog
    
    import org.gradle.api.InvalidUserDataException
    import org.gradle.api.internal.catalog.problems.VersionCatalogErrorMessages
    import org.gradle.api.internal.catalog.problems.VersionCatalogProblemId
    import org.gradle.api.internal.catalog.problems.VersionCatalogProblemTestFor
    import org.gradle.api.logging.StandardOutputListener
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Dec 17 22:25:43 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-asprovider/groovy/settings.gradle

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    rootProject.name = 'catalog'
    
    dependencyResolutionManagement {
        repositories {
            mavenCentral()
        }
    }
    
    // needed for 'use_version_asprovider' snippet
    dependencyResolutionManagement {
        versionCatalogs {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 951 bytes
    - Viewed (0)
  10. platforms/software/plugins-version-catalog/src/integTest/groovy/org/gradle/api/plugins/VersionCatalogPluginGoodBehaviourIntegTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.plugins
    
    import org.gradle.api.plugins.catalog.VersionCatalogPlugin
    import org.gradle.integtests.fixtures.WellBehavedPluginTest
    
    class VersionCatalogPluginGoodBehaviourIntegTest extends WellBehavedPluginTest {
        @Override
        String getMainTask() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 959 bytes
    - Viewed (0)
Back to top