33 lines
		
	
	
		
			815 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			815 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
uploadArchives {
 | 
						|
    repositories {
 | 
						|
        mavenDeployer {
 | 
						|
            pom.project {
 | 
						|
                name 'Jabit Core'
 | 
						|
                artifactId = 'jabit-core'
 | 
						|
                description 'A Java implementation of the Bitmessage protocol. This is the core part. You\'ll either need the networking and repositories modules, too, or implement your own.'
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
configurations {
 | 
						|
    testArtifacts.extendsFrom testRuntime
 | 
						|
}
 | 
						|
 | 
						|
task testJar(type: Jar) {
 | 
						|
    classifier = 'test'
 | 
						|
    from sourceSets.test.output
 | 
						|
}
 | 
						|
 | 
						|
artifacts {
 | 
						|
    testArtifacts testJar
 | 
						|
}
 | 
						|
 | 
						|
dependencies {
 | 
						|
    compile 'org.slf4j:slf4j-api:1.7.12'
 | 
						|
    testCompile 'junit:junit:4.12'
 | 
						|
    testCompile 'org.hamcrest:hamcrest-library:1.3'
 | 
						|
    testCompile 'org.mockito:mockito-core:1.10.19'
 | 
						|
    testCompile project(':cryptography-bc')
 | 
						|
}
 |