source: java/main/pom.xml @ 79

Last change on this file since 79 was 78, checked in by psniegowski, 11 years ago

Add f0 parsing and f0->Model transformation.

File size: 1.9 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
3         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5    <modelVersion>4.0.0</modelVersion>
6
7    <groupId>framsticks</groupId>
8    <artifactId>framsticks</artifactId>
9    <version>1.0</version>
10
11        <repositories>
12                <repository>
13                        <id>maven.imagej.net</id>
14                        <url>http://maven.imagej.net/content/repositories/public/</url>
15                </repository>
16        </repositories>
17        <properties>
18                <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19        </properties>
20        <build>
21                <plugins>
22                        <plugin>
23                                <groupId>org.apache.maven.plugins</groupId>
24                                <artifactId>maven-compiler-plugin</artifactId>
25                                <version>3.0</version>
26                                <configuration>
27                                        <source>1.6</source>
28                                        <target>1.6</target>
29                                </configuration>
30                        </plugin>
31                </plugins>
32        </build>
33
34        <dependencies>
35                <dependency>
36                        <groupId>log4j</groupId>
37                        <artifactId>log4j</artifactId>
38                        <version>1.2.16</version>
39                        <scope>compile</scope>
40                </dependency>
41                <dependency>
42                        <groupId>commons-configuration</groupId>
43                        <artifactId>commons-configuration</artifactId>
44                        <version>1.7</version>
45                        <scope>compile</scope>
46                </dependency>
47                <dependency>
48                        <groupId>java3d</groupId>
49                        <artifactId>j3d-core</artifactId>
50                        <version>1.5.2</version>
51                </dependency>
52                <dependency>
53                        <groupId>java3d</groupId>
54                        <artifactId>vecmath</artifactId>
55                        <version>1.5.2</version>
56                </dependency>
57                <dependency>
58                        <groupId>java3d</groupId>
59                        <artifactId>j3d-core-utils</artifactId>
60                        <version>1.5.2</version>
61                </dependency>
62
63        <dependency>
64            <groupId>junit</groupId>
65            <artifactId>junit</artifactId>
66            <version>4.8.1</version>
67            <scope>test</scope>
68        </dependency>
69                <!--dependency>
70                </dependency>
71                <dependency>
72                </dependency-->
73        </dependencies>
74</project>
Note: See TracBrowser for help on using the repository browser.