|
7 | 7 |
|
8 | 8 | <groupId>ome</groupId> |
9 | 9 | <artifactId>bio-formats-matlab</artifactId> |
10 | | - <version>5.7.4-SNAPSHOT</version> |
| 10 | + <version>5.8.1-SNAPSHOT</version> |
11 | 11 | <packaging>pom</packaging> |
12 | 12 |
|
13 | 13 | <name>Bio-Formats bundle collection</name> |
14 | 14 | <description>Create matlab of Bio-Formats jars and tools for distribution.</description> |
15 | 15 | <url>https://www.openmicroscopy.org/bio-formats</url> |
16 | 16 | <inceptionYear>2005</inceptionYear> |
17 | 17 |
|
18 | | - <dependencies> |
19 | | - <dependency> |
20 | | - <groupId>${project.groupId}</groupId> |
21 | | - <artifactId>bio-formats_plugins</artifactId> |
22 | | - <version>${bio-formats_plugins.version}</version> |
23 | | - </dependency> |
24 | | - <dependency> |
25 | | - <groupId>${project.groupId}</groupId> |
26 | | - <artifactId>bio-formats-tools</artifactId> |
27 | | - <version>${bio-formats-tools.version}</version> |
28 | | - </dependency> |
29 | | - </dependencies> |
30 | | - |
31 | 18 | <properties> |
32 | 19 | <!-- If two artifacts on the classpath use two different versions of the |
33 | 20 | same dependency, behavior is inconsistent at best, and often broken. |
|
39 | 26 | <date>${maven.build.timestamp}</date> |
40 | 27 | <year>2018</year> |
41 | 28 | <project.rootdir>${basedir}</project.rootdir> |
42 | | - <bioformats.version>5.7.3</bioformats.version> |
43 | | - <bio-formats_plugins.version>${bioformats.version}</bio-formats_plugins.version> |
44 | | - <bio-formats-tools.version>${bioformats.version}</bio-formats-tools.version> |
| 29 | + <bioformats.version>5.8.1-SNAPSHOT</bioformats.version> |
| 30 | + <bio-formats_package.version>${bioformats.version}</bio-formats_package.version> |
45 | 31 | <imagej1.version>1.48s</imagej1.version> |
46 | 32 | <log4j.version>1.2.17</log4j.version> |
47 | 33 | <slf4j.version>1.7.6</slf4j.version> |
|
147 | 133 | <version>2.5</version> |
148 | 134 | </plugin> |
149 | 135 |
|
| 136 | + <plugin> |
| 137 | + <groupId>org.apache.maven.plugins</groupId> |
| 138 | + <artifactId>maven-dependency-plugin</artifactId> |
| 139 | + <executions> |
| 140 | + <execution> |
| 141 | + <id>unpack-ome-xml</id> |
| 142 | + <phase>generate-resources</phase> |
| 143 | + <goals> |
| 144 | + <goal>copy</goal> |
| 145 | + </goals> |
| 146 | + <configuration> |
| 147 | + <artifactItems> |
| 148 | + <artifactItem> |
| 149 | + <groupId>${project.groupId}</groupId> |
| 150 | + <artifactId>bioformats_package</artifactId> |
| 151 | + <version>${bio-formats_package.version}</version> |
| 152 | + <type>jar</type> |
| 153 | + <outputDirectory>${project.build.directory}/package-jars</outputDirectory> |
| 154 | + <destFileName>bioformats_package.jar</destFileName> |
| 155 | + </artifactItem> |
| 156 | + </artifactItems> |
| 157 | + </configuration> |
| 158 | + </execution> |
| 159 | + </executions> |
| 160 | + </plugin> |
| 161 | + |
150 | 162 | <plugin> |
151 | 163 | <artifactId>maven-assembly-plugin</artifactId> |
152 | 164 | <version>3.1.0</version> |
|
0 commit comments