aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
blob: 858b4d018ad51779dfa466def488095743f218b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
allprojects {
    apply plugin: 'maven'

    repositories {
        mavenCentral()
    }

    version = '21.0-SNAPSHOT'

	uploadArchives {
	    repositories {
	        mavenDeployer {
	            repository(url: uri("$rootDir/../out/host/repo"))
	        }
	    }
	}

}