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

                                             

 
                                               
                                             

             
                            
 
                                    
                                    





                                                                                          
 
plugins {
	id 'org.xtext.xtend' version '1.0.21'
}

apply from: "$rootDir/gradle/scmVersion.gradle"
apply from: "$rootDir/gradle/versions.gradle"

allprojects {
	apply plugin: 'base'

	group = 'org.eclipse.etrice'
	version = scmVersion.version
	
	repositories {
		maven {
			url 'https://repo.eclipse.org/content/repositories/maven_central/'
		}
	}
}

Back to the top