Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for mavenCentral (1.05 sec)

  1. build.gradle.kts

        classpath(libs.gradlePlugin.spotless)
        classpath(libs.gradlePlugin.mavenPublish)
        classpath(libs.gradlePlugin.binaryCompatibilityValidator)
      }
    
      repositories {
        mavenCentral()
        gradlePluginPortal()
        google()
      }
    }
    
    apply(plugin = "org.jetbrains.dokka")
    apply(plugin = "com.diffplug.spotless")
    
    configure<SpotlessExtension> {
      kotlin {
        target("**/*.kt")
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Thu Apr 18 01:32:42 GMT 2024
    - 8.9K bytes
    - Viewed (0)
  2. buildSrc/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        `kotlin-dsl`
    }
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
      implementation("biz.aQute.bnd:biz.aQute.bnd.gradle:6.4.0")
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Oct 18 20:40:57 GMT 2023
    - 746 bytes
    - Viewed (0)
Back to top