Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Shared build logic for bb4 projects

License

NotificationsYou must be signed in to change notification settings

bb4/bb4-gradle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Shared build logic for bb4 projects. There are 3 main components:

  • bb4.gradle - general build configuration for scala or java projects.
  • bb4-deploy - used to deploy projects to a website.
  • bb4-publish - used to deploy projects to sonatype, and from there release to a maven repository so that they can be shared.

To deploy, udpate the versoin inbuild.gradle, and run
./gradlew publishArtifacts
To use, include something like the following in your projects build.gradle file.

buildscript {    repositories {        // retrieve the shared gradle build scripts from here        maven { url "https://oss.sonatype.org/content/repositories/releases" }    }    dependencies {        classpath 'com.barrybecker4:bb4-gradle:1.6.5'    }}apply from: project.buildscript.classLoader.getResource('bb4.gradle').toURI():: <your build logic here>:apply from: project.buildscript.classLoader.getResource('bb4-publish.gradle').toURI()apply from: project.buildscript.classLoader.getResource('bb4-deploy.gradle').toURI()

About

Shared build logic for bb4 projects

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp