1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
---|
2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
---|
3 | <modelVersion>4.0.0</modelVersion> |
---|
4 | <groupId>ndg.services</groupId> |
---|
5 | <artifactId>jboss</artifactId> |
---|
6 | <version>1.1.0</version> |
---|
7 | <dependencies> |
---|
8 | <dependency> |
---|
9 | <groupId>jboss</groupId> |
---|
10 | <artifactId>jbosssx</artifactId> |
---|
11 | <version>3.2.3</version> |
---|
12 | </dependency> |
---|
13 | |
---|
14 | <!-- <dependency> <groupId>javax</groupId> <artifactId>javaee-api</artifactId> |
---|
15 | <version>6.0</version> <scope>provided</scope> </dependency> --> |
---|
16 | <dependency> |
---|
17 | <groupId>org.jboss.javaee</groupId> |
---|
18 | <artifactId>jboss-javaee</artifactId> |
---|
19 | <version>5.0.1.GA</version> |
---|
20 | <scope>provided</scope> |
---|
21 | </dependency> |
---|
22 | |
---|
23 | <dependency> |
---|
24 | <groupId>org.hibernate</groupId> |
---|
25 | <artifactId>hibernate</artifactId> |
---|
26 | <version>3.2.5.ga</version> |
---|
27 | </dependency> |
---|
28 | |
---|
29 | <dependency> |
---|
30 | <groupId>ndg.services</groupId> |
---|
31 | <artifactId>common</artifactId> |
---|
32 | <version>1.1.1</version> |
---|
33 | <scope>provided</scope> |
---|
34 | </dependency> |
---|
35 | </dependencies> |
---|
36 | |
---|
37 | <build> |
---|
38 | <plugins> |
---|
39 | <plugin> |
---|
40 | <groupId>org.apache.maven.plugins</groupId> |
---|
41 | <artifactId>maven-compiler-plugin</artifactId> |
---|
42 | <configuration> |
---|
43 | <source>1.6</source> |
---|
44 | <target>1.6</target> |
---|
45 | </configuration> |
---|
46 | </plugin> |
---|
47 | </plugins> |
---|
48 | </build> |
---|
49 | |
---|
50 | <distributionManagement> |
---|
51 | <snapshotRepository> |
---|
52 | <id>triton.badc.rl.ac.uk</id> |
---|
53 | <name>triton.badc.rl.ac.uk-snapshots</name> |
---|
54 | <url>http://triton.badc.rl.ac.uk:8180/artifactory/libs-snapshots-local</url> |
---|
55 | </snapshotRepository> |
---|
56 | <repository> |
---|
57 | <id>triton.badc.rl.ac.uk</id> |
---|
58 | <name>triton.badc.rl.ac.uk-release</name> |
---|
59 | <url>http://triton.badc.rl.ac.uk:8180/artifactory/libs-releases-local</url> |
---|
60 | </repository> |
---|
61 | </distributionManagement> |
---|
62 | </project> |
---|