|
11 | 11 | <version>2.0.0-SNAPSHOT</version>
|
12 | 12 | </parent>
|
13 | 13 |
|
14 |
| - <artifactId>pom-imglib2-examples</artifactId> |
15 |
| - <packaging>pom</packaging> |
| 14 | + <artifactId>imglib2-examples</artifactId> |
16 | 15 |
|
17 | 16 | <name>ImgLib2 Examples</name>
|
18 |
| - <description>Umbrella project for ImgLib2 example code.</description> |
| 17 | + <description>This project shows ten increasingly complex examples of how to program with ImgLib2. The intention of these examples are not to explain ImgLib2 concepts, but rather to give some practical hints how to work with the library and to grasp the principles in a learning-by-doing way. Also included is the Game of Death (similar to Conway's Game of Life): a cellular automaton, simulating competing life forms, which illustrates the generality of the ImgLib2 typing mechanism.</description> |
19 | 18 |
|
20 |
| - <modules> |
21 |
| - <module>GameOfDeath2</module> |
22 |
| - </modules> |
| 19 | + <url>http://fiji.sc/ImgLib2_Examples</url> |
| 20 | + |
| 21 | + <dependencies> |
| 22 | + <dependency> |
| 23 | + <groupId>${project.groupId}</groupId> |
| 24 | + <artifactId>imglib2</artifactId> |
| 25 | + <version>${project.version}</version> |
| 26 | + </dependency> |
| 27 | + <dependency> |
| 28 | + <groupId>${project.groupId}</groupId> |
| 29 | + <artifactId>imglib2-algorithms</artifactId> |
| 30 | + <version>${project.version}</version> |
| 31 | + </dependency> |
| 32 | + <dependency> |
| 33 | + <groupId>${project.groupId}</groupId> |
| 34 | + <artifactId>imglib2-algorithms-gpl</artifactId> |
| 35 | + <version>${project.version}</version> |
| 36 | + </dependency> |
| 37 | + <dependency> |
| 38 | + <groupId>${project.groupId}</groupId> |
| 39 | + <artifactId>imglib2-ij</artifactId> |
| 40 | + <version>${project.version}</version> |
| 41 | + </dependency> |
| 42 | + <dependency> |
| 43 | + <groupId>${project.groupId}</groupId> |
| 44 | + <artifactId>imglib2-io</artifactId> |
| 45 | + <version>${project.version}</version> |
| 46 | + </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>net.imagej</groupId> |
| 49 | + <artifactId>ij</artifactId> |
| 50 | + <version>${imagej1.version}</version> |
| 51 | + </dependency> |
| 52 | + </dependencies> |
| 53 | + |
| 54 | + <build> |
| 55 | + <plugins> |
| 56 | + <plugin> |
| 57 | + <artifactId>maven-jar-plugin</artifactId> |
| 58 | + <configuration> |
| 59 | + <archive> |
| 60 | + <manifest> |
| 61 | + <mainClass>game.Arena</mainClass> |
| 62 | + </manifest> |
| 63 | + </archive> |
| 64 | + </configuration> |
| 65 | + </plugin> |
| 66 | + </plugins> |
| 67 | + </build> |
23 | 68 |
|
24 | 69 | <!-- NB: for project parent, in case of partial checkout -->
|
25 | 70 | <repositories>
|
|
0 commit comments