| 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
|---|
| 2 | <modelVersion>4.0.0</modelVersion> |
|---|
| 3 | <groupId>uk.ac.cardiff.raptor</groupId> |
|---|
| 4 | <artifactId>raptor-information-model</artifactId> |
|---|
| 5 | <version>0.1.7-SNAPSHOT</version> |
|---|
| 6 | |
|---|
| 7 | <dependencies> |
|---|
| 8 | <dependency> |
|---|
| 9 | <groupId>joda-time</groupId> |
|---|
| 10 | <artifactId>joda-time</artifactId> |
|---|
| 11 | <version>1.6</version> |
|---|
| 12 | <scope>compile</scope> |
|---|
| 13 | </dependency> |
|---|
| 14 | |
|---|
| 15 | <dependency> |
|---|
| 16 | <groupId>joda-time</groupId> |
|---|
| 17 | <artifactId>joda-time-hibernate</artifactId> |
|---|
| 18 | <version>1.2</version> |
|---|
| 19 | |
|---|
| 20 | </dependency> |
|---|
| 21 | <dependency> |
|---|
| 22 | <groupId>junit</groupId> |
|---|
| 23 | <artifactId>junit</artifactId> |
|---|
| 24 | <version>4.8.2</version> |
|---|
| 25 | </dependency> |
|---|
| 26 | <dependency> |
|---|
| 27 | <groupId>ch.qos.logback</groupId> |
|---|
| 28 | <artifactId>logback-classic</artifactId> |
|---|
| 29 | <version>0.9.27</version> |
|---|
| 30 | <scope>provided</scope> |
|---|
| 31 | </dependency> |
|---|
| 32 | </dependencies> |
|---|
| 33 | |
|---|
| 34 | <scm> |
|---|
| 35 | <developerConnection>scm:svn:http://iam.cf.ac.uk/repos/RAPTOR/raptor-information-model/trunk</developerConnection> |
|---|
| 36 | <url>http://iam.cf.ac.uk/repos/RAPTOR/raptor-information-model</url> |
|---|
| 37 | </scm> |
|---|
| 38 | <distributionManagement> |
|---|
| 39 | <repository> |
|---|
| 40 | <uniqueVersion>false</uniqueVersion> |
|---|
| 41 | <id>raptor-release</id> |
|---|
| 42 | <url>http://iam.cf.ac.uk/nexus-webapp-1.6.0/content/repositories/raptor-release</url> |
|---|
| 43 | </repository> |
|---|
| 44 | <snapshotRepository> |
|---|
| 45 | <uniqueVersion>false</uniqueVersion> |
|---|
| 46 | <id>raptor-snapshot</id> |
|---|
| 47 | <url>http://iam.cf.ac.uk/nexus-webapp-1.6.0/content/repositories/raptor-snapshot</url> |
|---|
| 48 | </snapshotRepository> |
|---|
| 49 | </distributionManagement> |
|---|
| 50 | |
|---|
| 51 | |
|---|
| 52 | <build> |
|---|
| 53 | <!-- |
|---|
| 54 | the aegis file is needed to exclude the JODA Time attribute from the |
|---|
| 55 | SOAP XML output |
|---|
| 56 | --> |
|---|
| 57 | <resources> |
|---|
| 58 | <resource> |
|---|
| 59 | <directory>src/main/java/</directory> |
|---|
| 60 | <includes> |
|---|
| 61 | <include>uk/ac/cardiff/model/event/Event.aegis.xml</include> |
|---|
| 62 | <include>uk/ac/cardiff/model/event/event.hbm.xml</include> |
|---|
| 63 | <include>uk/ac/cardiff/model/resource/resourcemetadata.hbm.xml</include> |
|---|
| 64 | <include>uk/ac/cardiff/model/wsmodel/StatisticParameters.aegis.xml</include> |
|---|
| 65 | <include>uk/ac/cardiff/model/wsmodel/StatisticalUnitInformation.aegis.xml</include> |
|---|
| 66 | <include>uk/ac/cardiff/model/wsmodel/Capabilities.aegis.xml</include> |
|---|
| 67 | <include>uk/ac/cardiff/model/wsmodel/SuggestionValues.aegis.xml</include> |
|---|
| 68 | </includes> |
|---|
| 69 | </resource> |
|---|
| 70 | <!-- DONE --> |
|---|
| 71 | </resources> |
|---|
| 72 | <plugins> |
|---|
| 73 | <plugin> |
|---|
| 74 | <groupId>org.apache.maven.plugins</groupId> |
|---|
| 75 | <artifactId>maven-compiler-plugin</artifactId> |
|---|
| 76 | <configuration> |
|---|
| 77 | <source>1.6</source> |
|---|
| 78 | <target>1.6</target> |
|---|
| 79 | |
|---|
| 80 | </configuration> |
|---|
| 81 | </plugin> |
|---|
| 82 | <plugin> |
|---|
| 83 | <artifactId>maven-release-plugin</artifactId> |
|---|
| 84 | <version>2.0</version> |
|---|
| 85 | <configuration> |
|---|
| 86 | <username>philsmart</username> |
|---|
| 87 | <password>nv75hh</password> |
|---|
| 88 | <tagBase> |
|---|
| 89 | http://iam.cf.ac.uk/repos/RAPTOR/raptor-information-model/tags |
|---|
| 90 | </tagBase> |
|---|
| 91 | <providerImplementations> |
|---|
| 92 | <svn>javasvn</svn> |
|---|
| 93 | </providerImplementations> |
|---|
| 94 | </configuration> |
|---|
| 95 | <dependencies> |
|---|
| 96 | <dependency> |
|---|
| 97 | <groupId>com.google.code.maven-scm-provider-svnjava</groupId> |
|---|
| 98 | <artifactId>maven-scm-provider-svnjava</artifactId> |
|---|
| 99 | <version>1.10</version> |
|---|
| 100 | </dependency> |
|---|
| 101 | </dependencies> |
|---|
| 102 | </plugin> |
|---|
| 103 | </plugins> |
|---|
| 104 | </build> |
|---|
| 105 | </project> |
|---|