Skip to main content
summaryrefslogtreecommitdiffstats
blob: 8eea3b54b5c8bfb9d89e5a8659bccfb2a46f1987 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
subprojects {
	apply plugin: 'maven-publish'
	
	publishing {
		publications {
			mavenJava(MavenPublication) {
				from components.java
			}
		}
		repositories {
			maven {
				name 'snapshots'
				url 'https://repo.eclipse.org/content/repositories/etrice-snapshots'
				credentials {
					username project.properties.eclipseRepoUsername
					password project.properties.eclipseRepoPassword
				}
			}
			maven {
				name 'releases'
				url 'https://repo.eclipse.org/content/repositories/etrice-releases'
				credentials {
					username project.properties.eclipseRepoUsername
					password project.properties.eclipseRepoPassword
				}
			}
		}
	}
}

Back to the top