vinayakb | 2158015 | 2011-06-03 02:33:21 +0000 | [diff] [blame] | 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>edu.uci.ics.hyracks</groupId> |
| 4 | <artifactId>hyracks-maven-plugin</artifactId> |
| 5 | <packaging>maven-plugin</packaging> |
vinayakb | f5db16e | 2011-06-03 02:40:37 +0000 | [diff] [blame^] | 6 | <version>0.0.1</version> |
vinayakb | 76baeed | 2011-06-03 02:39:18 +0000 | [diff] [blame] | 7 | <name>Hyracks Maven Plugin</name> |
vinayakb | 2158015 | 2011-06-03 02:33:21 +0000 | [diff] [blame] | 8 | |
| 9 | <build> |
| 10 | <plugins> |
| 11 | <plugin> |
| 12 | <groupId>org.apache.maven.plugins</groupId> |
vinayakb | 9537eef | 2011-06-03 02:38:00 +0000 | [diff] [blame] | 13 | <artifactId>maven-release-plugin</artifactId> |
| 14 | <version>2.0</version> |
| 15 | <configuration> |
| 16 | <goals>package source:jar javadoc:jar deploy:deploy</goals> |
| 17 | </configuration> |
| 18 | </plugin> |
| 19 | <plugin> |
| 20 | <groupId>org.apache.maven.plugins</groupId> |
vinayakb | 2158015 | 2011-06-03 02:33:21 +0000 | [diff] [blame] | 21 | <artifactId>maven-compiler-plugin</artifactId> |
| 22 | <version>2.0.2</version> |
| 23 | <configuration> |
| 24 | <source>1.6</source> |
| 25 | <target>1.6</target> |
| 26 | </configuration> |
| 27 | </plugin> |
| 28 | </plugins> |
| 29 | </build> |
vinayakb | 9537eef | 2011-06-03 02:38:00 +0000 | [diff] [blame] | 30 | |
| 31 | <scm> |
vinayakb | f5db16e | 2011-06-03 02:40:37 +0000 | [diff] [blame^] | 32 | <connection>scm:svn:https://hyracks.googlecode.com/svn/tags/hyracks-maven-plugin-0.0.1</connection> |
| 33 | <developerConnection>scm:svn:https://hyracks.googlecode.com/svn/tags/hyracks-maven-plugin-0.0.1</developerConnection> |
| 34 | <url>http://code.google.com/p/hyracks/source/browse/#svn/tags/hyracks-maven-plugin-0.0.1</url> |
vinayakb | 9537eef | 2011-06-03 02:38:00 +0000 | [diff] [blame] | 35 | </scm> |
| 36 | |
| 37 | <distributionManagement> |
| 38 | <repository> |
| 39 | <id>hyracks-releases</id> |
| 40 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-releases/</url> |
| 41 | </repository> |
| 42 | <snapshotRepository> |
| 43 | <id>hyracks-snapshots</id> |
| 44 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-snapshots/</url> |
| 45 | </snapshotRepository> |
| 46 | </distributionManagement> |
| 47 | |
| 48 | <reporting> |
| 49 | <plugins> |
| 50 | <plugin> |
| 51 | <groupId>org.apache.maven.plugins</groupId> |
| 52 | <artifactId>maven-changelog-plugin</artifactId> |
| 53 | </plugin> |
| 54 | </plugins> |
| 55 | </reporting> |
| 56 | |
| 57 | <repositories> |
| 58 | <repository> |
| 59 | <id>hyracks-public</id> |
| 60 | <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url> |
| 61 | </repository> |
| 62 | </repositories> |
| 63 | |
vinayakb | 2158015 | 2011-06-03 02:33:21 +0000 | [diff] [blame] | 64 | <dependencies> |
| 65 | <dependency> |
| 66 | <groupId>org.apache.maven</groupId> |
| 67 | <artifactId>maven-plugin-api</artifactId> |
| 68 | <version>2.2.1</version> |
| 69 | <type>jar</type> |
| 70 | <scope>compile</scope> |
| 71 | </dependency> |
| 72 | </dependencies> |
| 73 | </project> |