Skip to main content
summaryrefslogtreecommitdiffstats
blob: c453c1e9984279249a6f80e72cb417c4fb3a5f51 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
plugins {
	id 'org.xtext.xtend' version '1.0.21'
}

apply from: new File(rootDir, 'gradle/scmVersion.gradle')

allprojects {
	apply from: new File(rootDir, 'gradle/versions.gradle')

	group = 'org.eclipse.etrice'
	
	// TODO scmVersion does not support milestone releases + issue with invalid tag that cannot be deleted
//	version = scmVersion.version
	version = '2.0.0-SNAPSHOT'
	
	repositories {
		maven {
			url 'https://repo.eclipse.org/content/repositories/maven_central/'
		}
	}
}

Back to the top