Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: bb292266ba5d03877a5620630b5369ac27e6191c (plain) (tree)
1
2
3
4
5
6
7
8
9

                                             

 
                                                         

             

                                                               
                                    
                                    





                                                                                          
 
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'
	version = scmVersion.version
	
	repositories {
		maven {
			url 'https://repo.eclipse.org/content/repositories/maven_central/'
		}
	}
}

Back to the top