@@ -27,27 +27,11 @@ apply plugin: 'java'
2727apply plugin : ' groovy'
2828apply plugin : ' application'
2929apply plugin : ' maven'
30- apply plugin : ' signing'
3130
3231mainClassName = ' io.github.javaconductor.gserv.Main'
3332group = " io.github.javaconductor"
3433version = " 0.9.5"
3534
36- //
37- // jar {
38- // from {
39- // configurations.compile.collect {
40- // it.isDirectory() ? it : zipTree(it)
41- // }
42- // configurations.runtime.collect {
43- // it.isDirectory() ? it : zipTree(it)
44- // }
45- // }
46- // exclude(['groovy/','org/codehaus/groovy/'])
47- // manifest.attributes("Main-Class": "io.github.javaconductor.gserv.Main")
48- // }
49-
50-
5135sourceSets {
5236 integrationTest {
5337 java. srcDir file(' src/integrationTest/groovy' )
@@ -70,21 +54,13 @@ repositories {
7054 mavenCentral()
7155// mavenLocal()
7256}
73- //
74- // <scm>
75- // <connection>scm:git:git@github.com:javaconductor/gserv.git</connection>
76- // <developerConnection>scm:git:git@github.com:javaconductor/gserv.git</developerConnection>
77- // <url>git@github.com:javaconductor/gserv.git</url>
78- // </scm>
7957
8058// In this section you declare the dependencies for your production and test code
8159dependencies {
8260 // The production code uses the SLF4J logging API at compile time
8361 compile ' org.slf4j:slf4j-api:1.7.5'
8462 compile ' log4j:log4j:1.2.17'
85-
8663 compile ' org.springframework.ldap:spring-ldap-core:2.0.2.RELEASE'
87- // compile('org.codehaus.groovy:groovy-all:2.3.0')
8864 compile ' org.codehaus.groovy:groovy-all:2.3.7'
8965 compile(' org.codehaus.gpars:gpars:1.1.0' )
9066 compile(' commons-io:commons-io:2.4' )
@@ -191,7 +167,6 @@ task standaloneJar(type: Jar, dependsOn: classes) {
191167 archiveName = " gservApp-${ version} .jar"
192168}
193169
194-
195170artifacts {
196171 archives standaloneJar
197172 archives sourcesJar
0 commit comments