jbuild 0.1.8

High-performance Java build tool supporting Maven and Gradle
Documentation
1
2
3
4
5
6
7
8
9
10
//! Build System bounded context
//!
//! Responsible for detecting and abstracting different build systems (Maven, Gradle, JBuild).
//! Provides anti-corruption layers for translating between build system concepts.

pub mod services;
pub mod value_objects;

pub use services::*;
pub use value_objects::*;