Skip to content
This repository was archived by the owner on Aug 24, 2023. It is now read-only.

Commit 92ba02f

Browse files
committed
updated installer
1 parent f34476f commit 92ba02f

4 files changed

Lines changed: 1 addition & 26 deletions

File tree

build.gradle

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -27,27 +27,11 @@ apply plugin: 'java'
2727
apply plugin: 'groovy'
2828
apply plugin: 'application'
2929
apply plugin: 'maven'
30-
apply plugin: 'signing'
3130

3231
mainClassName = 'io.github.javaconductor.gserv.Main'
3332
group = "io.github.javaconductor"
3433
version = "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-
5135
sourceSets {
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
8159
dependencies {
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-
195170
artifacts {
196171
archives standaloneJar
197172
archives sourcesJar

dist/windows/gserv.zip

-47.3 MB
Binary file not shown.

gservInstaller/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'application'
44

55
defaultTasks 'clean', 'assemble'
66
sourceCompatibility = 1.7
7-
version = '0.9.0'
7+
version = '0.9.5'
88
mainClassName="io.github.javaconductor.gserv.installer.Installer"
99

1010
//copyInstallerToParent.mustRunAfter assemble

0 commit comments

Comments
 (0)