Skip to content

Commit

Permalink
Merge pull request #15 from dHannasch/gradle-7
Browse files Browse the repository at this point in the history
Gradle 7
  • Loading branch information
jitpack-io authored Jan 23, 2022
2 parents f129fbd + cbe2132 commit 3cbc3ab
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'maven-publish'

group = 'com.github.jitpack'

Expand Down Expand Up @@ -30,21 +30,22 @@ artifacts {
}

// To specify a license in the pom:
install {
repositories.mavenInstaller {
pom.project {
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'repo'
publishing {
publications {
mavenJava(MavenPublication) {
pom {
licenses {
license {
name = 'The Apache License, Version 2.0'
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
}
}
}
}
}
}

wrapper {
gradleVersion = "6.1.1"
gradleVersion = "7.3.3"
distributionType = Wrapper.DistributionType.ALL
}

0 comments on commit 3cbc3ab

Please sign in to comment.