Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b52ba603fd6341237041b431e222dd58cf04aca7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
ext {
	core_runtime_version = '3.12.0'
	core_resources_version = '3.11.1'
	xtext_version = '2.12.0'
	commons_io_version = '2.5'
}

allprojects {
	group = 'org.eclipse.etrice'
	version = '1.1.1-SNAPSHOT'
	
	repositories {
		maven {
			url 'https://repo.eclipse.org/content/repositories/maven_central/'
		}
	}
}

Back to the top