Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 545 Bytes

README.md

File metadata and controls

27 lines (23 loc) · 545 Bytes

abstract-bnet-api

Basis for other bnet-api projects. Can be included in other projects as source dependency via gradle.

Other projects:
settings.gradle.kts

sourceControl {
    gitRepository(uri("https://github.com/FH3095/abstract-bnet-api.git")) {
        producesModule("eu.4fh:abstract-bnet-api")
    }
}

build.gradle.kts

dependencies {
	implementation("eu.4fh:abstract-bnet-api") {
		version {
			branch = "main"
		}
	}
}

To use this in eclipse, this project has to be checked out with the name abstract-bnet-api.