Project

General

Profile

Download (3.15 KB) Statistics
| Branch: | Tag: | Revision:
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/maven-v4_0_0.xsd"
5
    >
6
  <parent>
7
 		<groupId>eu.etaxonomy</groupId>
8
		<artifactId>cdmlib-parent</artifactId>
9
		<version>1.1.0-SNAPSHOT</version>
10
  </parent>
11
  <modelVersion>4.0.0</modelVersion>
12
  <artifactId>musiclib</artifactId>
13
  <name>Markus Music Test</name>
14
  <version>0.1.0</version>
15
  <description>EDIT cdm library</description>
16
  <scm>
17
    <connection>scm:svn:http://ww2.biocase.org/svn/edit/trunk/cdmlib/musiclib/</connection>
18
    <developerConnection>scm:svn:https://ww2.biocase.org/svn/edit/trunk/cdmlib/musiclib/</developerConnection>
19
    <url>http://ww2.biocase.org/svn/edit/trunk/cdmlib/musiclib/</url>
20
  </scm>
21
  <build>
22
    <plugins>
23
      <plugin>
24
        <artifactId>maven-compiler-plugin</artifactId>
25
        <configuration>
26
          <source>1.5</source>
27
          <target>1.5</target>
28
        </configuration>
29
      </plugin>
30
      <plugin>
31
        <artifactId>maven-surefire-plugin</artifactId>
32
        <configuration>
33
          <includes>
34
            <include>**/*Test.java</include>
35
          </includes>
36
        </configuration>
37
      </plugin>
38
    </plugins>
39
  </build>
40
  <dependencies>
41
    <dependency>
42
      <groupId>javax.persistence</groupId>
43
      <artifactId>ejb</artifactId>
44
      <version>3</version>
45
    </dependency>
46
    <dependency>
47
      <groupId>javax.xml</groupId>
48
      <artifactId>jaxrpc-api</artifactId>
49
      <version>1.1</version>
50
    </dependency>
51
    <dependency>
52
      <groupId>javax.xml.bind</groupId>
53
      <artifactId>jaxb-api</artifactId>
54
      <version>2.0</version>
55
    </dependency>
56
    <dependency>
57
      <groupId>mysql</groupId>
58
      <artifactId>mysql-connector-java</artifactId>
59
      <version>5.0.5</version>
60
    </dependency>
61
    <dependency>
62
      <groupId>org.hibernate</groupId>
63
      <artifactId>hibernate-commons-annotations</artifactId>
64
      <version>3.3.0.ga</version>
65
    </dependency>
66
    <dependency>
67
      <groupId>org.hibernate</groupId>
68
      <artifactId>hibernate-annotations</artifactId>
69
      <version>3.3.0.ga</version>
70
    </dependency>
71
    <dependency>
72
      <groupId>org.hibernate</groupId>
73
      <artifactId>hibernate</artifactId>
74
      <version>3.2.5.ga</version>
75
    </dependency>
76
    
77
    <dependency>
78
      <groupId>org.springframework</groupId>
79
      <artifactId>spring</artifactId>
80
      <version>2.5</version>
81
    </dependency>
82
    <dependency>
83
      <groupId>org.springframework</groupId>
84
      <artifactId>spring-beans</artifactId>
85
      <version>2.5</version>
86
    </dependency>
87
    <dependency>
88
      <groupId>org.springframework</groupId>
89
      <artifactId>spring-orm</artifactId>
90
      <version>2.5</version>
91
    </dependency>
92
    <dependency>
93
      <groupId>org.springframework</groupId>
94
      <artifactId>spring-jdbc</artifactId>
95
      <version>2.5</version>
96
    </dependency>    
97
    <dependency>
98
      <groupId>org.springframework</groupId>
99
      <artifactId>spring-test</artifactId>
100
      <version>2.5</version>
101
    </dependency>
102
  </dependencies>
103
</project>
104

    
(2-2/2)