source: java/main/pom.xml @ 77

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

Add new java codebase.

File size: 1.6 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
18        <build>
19                <plugins>
20                        <plugin>
21                                <groupId>org.apache.maven.plugins</groupId>
22                                <artifactId>maven-compiler-plugin</artifactId>
23                                <version>3.0</version>
24                                <configuration>
25                                        <source>1.6</source>
26                                        <target>1.6</target>
27                                </configuration>
28                        </plugin>
29                </plugins>
30        </build>
31
32        <dependencies>
33                <dependency>
34                        <groupId>log4j</groupId>
35                        <artifactId>log4j</artifactId>
36                        <version>1.2.16</version>
37                        <scope>compile</scope>
38                </dependency>
39                <dependency>
40                        <groupId>commons-configuration</groupId>
41                        <artifactId>commons-configuration</artifactId>
42                        <version>1.7</version>
43                        <scope>compile</scope>
44                </dependency>
45                <dependency>
46                        <groupId>java3d</groupId>
47                        <artifactId>j3d-core</artifactId>
48                        <version>1.5.2</version>
49                </dependency>
50                <dependency>
51                        <groupId>java3d</groupId>
52                        <artifactId>vecmath</artifactId>
53                        <version>1.5.2</version>
54                </dependency>
55                <dependency>
56                        <groupId>java3d</groupId>
57                        <artifactId>j3d-core-utils</artifactId>
58                        <version>1.5.2</version>
59                </dependency>
60                <!--dependency>
61                </dependency>
62                <dependency>
63                </dependency-->
64        </dependencies>
65</project>
Note: See TracBrowser for help on using the repository browser.