1 |
<project> |
2 |
<parent> |
3 |
<artifactId>math</artifactId> |
4 |
<groupId>org.freehep</groupId> |
5 |
<version>3</version> |
6 |
</parent> |
7 |
|
8 |
<name>FreeHEP Java Minuit for JDK 1.4</name> |
9 |
<description>FreeHEP Minuit Implementation in Java.</description> |
10 |
<modelVersion>4.0.0</modelVersion> |
11 |
<groupId>org.freehep</groupId> |
12 |
<artifactId>freehep-jminuit-jdk1.4</artifactId> |
13 |
<version>1.0</version> |
14 |
|
15 |
<scm> |
16 |
<connection>scm:svn://svn.freehep.org/svn/freehep/branches/freehep-jminuit-jdk1.4</connection> |
17 |
<developerConnection>scm:svn://svn.freehep.org/svn/freehep/branches/freehep-jminuit-jdk1.4</developerConnection> |
18 |
</scm> |
19 |
|
20 |
<build> |
21 |
<plugins> |
22 |
<plugin> |
23 |
<groupId>org.apache.maven.plugins</groupId> |
24 |
<artifactId>maven-compiler-plugin</artifactId> |
25 |
<configuration> |
26 |
<source>1.4</source> |
27 |
<target>1.4</target> |
28 |
</configuration> |
29 |
</plugin> |
30 |
|
31 |
<plugin> |
32 |
<groupId>org.apache.maven.plugins</groupId> |
33 |
<artifactId>maven-javadoc-plugin</artifactId> |
34 |
<configuration> |
35 |
<source>1.4</source> |
36 |
</configuration> |
37 |
</plugin> |
38 |
|
39 |
<plugin> |
40 |
<groupId>org.apache.maven.plugins</groupId> |
41 |
<artifactId>maven-surefire-plugin</artifactId> |
42 |
<configuration> |
43 |
<testFailureIgnore>true</testFailureIgnore> |
44 |
</configuration> |
45 |
</plugin> |
46 |
</plugins> |
47 |
</build> |
48 |
|
49 |
<dependencies> |
50 |
|
51 |
<dependency> |
52 |
<groupId>junit</groupId> |
53 |
<artifactId>junit</artifactId> |
54 |
<version>3.8.2</version> |
55 |
<scope>test</scope> |
56 |
</dependency> |
57 |
|
58 |
</dependencies> |
59 |
|
60 |
</project> |