Skip to content

Commit

Permalink
Merge branch 'master' into Include-Branch
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesdooley4 committed Feb 15, 2020
2 parents 5630d57 + 1123af6 commit 8ac7d32
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,26 @@ deploy {
}
}

publishing {
group = 'com.robototes'

repositories {
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/robototes/2412RobotLibrary")
credentials {
username = project.findProperty("gpr.user") ?: System.getenv("GITHUB_ACTOR")
password = project.findProperty("gpr.key") ?: System.getenv("GITHUB_TOKEN")
}
}
}
publications {
gpr(MavenPublication) {
from(components.java)
}
}
}

// Set this to true to enable desktop support.
def includeDesktopSupport = false

Expand Down

0 comments on commit 8ac7d32

Please sign in to comment.