Skip to content

Commit cfa5cd9

Browse files
committed
uses newest ug version which finally supports old 32bit systems again
1 parent 134f436 commit cfa5cd9

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/.nb-gradle/
22
/.idea/
33
/build/
4-
/.gradle/
4+
/.gradle/
5+
JCSG-MeshExtensions.iml

build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ tasks.withType(Javadoc) {
1818
}
1919

2020
task wrapper(type: Wrapper, description: 'Creates and deploys the Gradle wrapper to the current directory.') {
21-
gradleVersion = '3.3'
21+
gradleVersion = '4.0'
2222
}
2323

2424
repositories {
@@ -30,14 +30,14 @@ dependencies {
3030
testCompile group: 'junit', name: 'junit', version: '4.10'
3131

3232
// ug shell api
33-
compile group: 'eu.mihosoft.ugshell.vugshell', name: 'vugshell', version: '2016.1.7'
34-
compile group: 'eu.mihosoft.ugshell.vugshell', name: 'vugshell', version: '2016.1.7', classifier: 'sources'
33+
compile group: 'eu.mihosoft.ugshell.vugshell', name: 'vugshell', version: '2017.1.0'
34+
compile group: 'eu.mihosoft.ugshell.vugshell', name: 'vugshell', version: '2017.1.0', classifier: 'sources'
3535

3636
// binary ug distribution
37-
compile group: 'eu.mihosoft.ugshell.ugdist', name: 'ugshell-dist', version: '2016.1.5'
37+
compile group: 'eu.mihosoft.ugshell.ugdist', name: 'ugshell-dist', version: '2017.1.0'
3838

3939
// jcsg library
40-
compile group: 'eu.mihosoft.vrl.jcsg', name: 'jcsg', version: '0.5.2'
41-
compile group: 'eu.mihosoft.vrl.jcsg', name: 'jcsg', version: '0.5.2', classifier: 'sources'
42-
compile group: 'eu.mihosoft.vrl.jcsg', name: 'jcsg', version: '0.5.2', classifier: 'javadoc'
40+
compile group: 'eu.mihosoft.vrl.jcsg', name: 'jcsg', version: '0.5.6'
41+
compile group: 'eu.mihosoft.vrl.jcsg', name: 'jcsg', version: '0.5.6', classifier: 'sources'
42+
compile group: 'eu.mihosoft.vrl.jcsg', name: 'jcsg', version: '0.5.6', classifier: 'javadoc'
4343
}

0 commit comments

Comments
 (0)