Skip to content

Commit 016036a

Browse files
committed
Merge remote-tracking branch 'origin/gradle' into gradle
2 parents 1b1df9f + 86807e6 commit 016036a

File tree

117 files changed

+1591
-284
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+1591
-284
lines changed

.travis/ci.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def package_conda():
5858

5959
subprocess.check_call(['mv', 'dist/sciview', exe_name])
6060

61-
package_conda()
61+
#package_conda()
6262

6363
# Update sites
6464
print('')
@@ -84,8 +84,8 @@ def package_conda():
8484
## - release
8585

8686
# TODO: check branch == <pom-release-version>
87-
if ( not is_PR and travis_secure and release_properties_exists ) or \
88-
( '[SV_IJ_DEPLOY_PRIMARY]' in commit_message ):
89-
print('Upload to SciView')
90-
subprocess.check_call(['sh', 'sciview_deploy.sh'])
87+
# if ( not is_PR and travis_secure and release_properties_exists ) or \
88+
# ( '[SV_IJ_DEPLOY_PRIMARY]' in commit_message ):
89+
# print('Upload to SciView')
90+
# subprocess.check_call(['sh', 'sciview_deploy.sh'])
9191

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2016 - 2020, SciView developers.
1+
Copyright (c) 2016 - 2021, SciView developers.
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without modification,

pom.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
<parent>
66
<groupId>org.scijava</groupId>
77
<artifactId>pom-scijava</artifactId>
8-
<version>29.2.1</version>
8+
<version>30.0.0</version>
99
<relativePath />
1010
</parent>
1111

1212
<groupId>sc.iview</groupId>
1313
<artifactId>sciview</artifactId>
14-
<version>0.2.0-beta-9-SNAPSHOT</version>
14+
<version>0.2.0-beta-10-SNAPSHOT</version>
1515

1616
<name>SciView</name>
1717
<description>Scenery-backed 3D visualization package for ImageJ.</description>
@@ -104,6 +104,7 @@
104104

105105
<license.licenseName>bsd_2</license.licenseName>
106106
<license.copyrightOwners>SciView developers.</license.copyrightOwners>
107+
<license.excludes>**/com/intellij/**,**/gnu/newtrove/**</license.excludes>
107108

108109
<!-- NB: Deploy releases to the SciJava Maven repository. -->
109110
<releaseProfiles>deploy-to-scijava</releaseProfiles>
@@ -168,7 +169,7 @@
168169
<dependency>
169170
<groupId>com.formdev</groupId>
170171
<artifactId>flatlaf</artifactId>
171-
<version>0.38</version>
172+
<version>1.1</version>
172173
</dependency>
173174

174175
<!-- SciJava dependencies -->

populate_fiji.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,11 @@ chmod +x $FijiDirectory/ImageJ-win64
138138
rm $FijiDirectory/jars/miglayout-3.7.4-swing.jar
139139
install "com.miglayout:miglayout-swing:5.2" $FijiDirectory/jars
140140

141+
# -- Fix imagej-mesh versions with jitpack version clashing (temporary)
142+
143+
rm $FijiDirectory/jars/imagej-mesh-*
144+
install "net.imagej:imagej-mesh:0.8.1" $FijiDirectory/jars
145+
141146
# -- Get the list of native libraries --
142147

143148
# [NB] dependency:list emits G:A:P:C:V but dependency:copy needs G:A:V:P:C.

src/main/java/sc/iview/ActiveSciViewPreprocessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* #%L
33
* Scenery-backed 3D visualization package for ImageJ.
44
* %%
5-
* Copyright (C) 2016 - 2020 SciView developers.
5+
* Copyright (C) 2016 - 2021 SciView developers.
66
* %%
77
* Redistribution and use in source and binary forms, with or without
88
* modification, are permitted provided that the following conditions are met:

src/main/java/sc/iview/DefaultSciViewService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* #%L
33
* Scenery-backed 3D visualization package for ImageJ.
44
* %%
5-
* Copyright (C) 2016 - 2020 SciView developers.
5+
* Copyright (C) 2016 - 2021 SciView developers.
66
* %%
77
* Redistribution and use in source and binary forms, with or without
88
* modification, are permitted provided that the following conditions are met:

src/main/java/sc/iview/SciViewService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* #%L
33
* Scenery-backed 3D visualization package for ImageJ.
44
* %%
5-
* Copyright (C) 2016 - 2020 SciView developers.
5+
* Copyright (C) 2016 - 2021 SciView developers.
66
* %%
77
* Redistribution and use in source and binary forms, with or without
88
* modification, are permitted provided that the following conditions are met:

src/main/java/sc/iview/Version.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* #%L
33
* Scenery-backed 3D visualization package for ImageJ.
44
* %%
5-
* Copyright (C) 2016 - 2020 SciView developers.
5+
* Copyright (C) 2016 - 2021 SciView developers.
66
* %%
77
* Redistribution and use in source and binary forms, with or without
88
* modification, are permitted provided that the following conditions are met:

src/main/java/sc/iview/commands/demo/ResourceLoader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* #%L
33
* Scenery-backed 3D visualization package for ImageJ.
44
* %%
5-
* Copyright (C) 2016 - 2020 SciView developers.
5+
* Copyright (C) 2016 - 2021 SciView developers.
66
* %%
77
* Redistribution and use in source and binary forms, with or without
88
* modification, are permitted provided that the following conditions are met:

src/main/java/sc/iview/commands/demo/advanced/ShowSegmentationDemo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* #%L
33
* Scenery-backed 3D visualization package for ImageJ.
44
* %%
5-
* Copyright (C) 2016 - 2020 SciView developers.
5+
* Copyright (C) 2016 - 2021 SciView developers.
66
* %%
77
* Redistribution and use in source and binary forms, with or without
88
* modification, are permitted provided that the following conditions are met:

0 commit comments

Comments
 (0)