mirror of
				https://github.com/mik3y/usb-serial-for-android
				synced 2025-10-30 18:07:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			488 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			488 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
| apply plugin: 'maven-publish'
 | |
| 
 | |
| publishing {
 | |
|     publications {
 | |
|         maven(MavenPublication) {
 | |
|             groupId 'com.github.mik3y'
 | |
|             artifactId 'usb-serial-for-android'
 | |
|             version '2.2.2a'
 | |
|             afterEvaluate {
 | |
|                 artifact androidSourcesJar
 | |
|                 artifact bundleReleaseAar
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 | |
| task androidSourcesJar(type: Jar) {
 | |
|     classifier 'sources'
 | |
|     from android.sourceSets.main.java.srcDirs
 | |
| }
 |