Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for maven_central (0.1 sec)

  1. .teamcity/pom.xml

                <snapshots>
                    <enabled>true</enabled>
                </snapshots>
            </repository>
            <repository>
                <id>maven_central</id>
                <name>Maven Central</name>
                <url>https://repo.maven.apache.org/maven2/</url>
            </repository>
        </repositories>
    
        <pluginRepositories>
            <pluginRepository>
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Thu Oct 31 02:38:07 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.repositories.gradle.kts

            }
        }
        maven {
            name = "CHAMP libs"
            url = uri("https://releases.usethesource.io/maven/")
            mavenContent {
                includeGroup("io.usethesource")
            }
        }
        mavenCentral()
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Fri Oct 11 18:49:54 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. build-logic-settings/settings.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    dependencyResolutionManagement {
        repositories {
            mavenCentral()
            gradlePluginPortal()
        }
    }
    
    plugins {
        id("com.gradle.develocity").version("3.18.1") // Run `java build-logic-settings/UpdateDevelocityPluginVersion.java <new-version>` to update
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Fri Oct 11 06:42:50 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top