blob: 94a9e4cff541419f149d652adbc3ce86dae40cad [file] [log] [blame]
vinayakb21580152011-06-03 02:33:21 +00001<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>
vinayakb9537eef2011-06-03 02:38:00 +00006 <version>0.0.1-SNAPSHOT</version>
vinayakb21580152011-06-03 02:33:21 +00007
8 <build>
9 <plugins>
10 <plugin>
11 <groupId>org.apache.maven.plugins</groupId>
vinayakb9537eef2011-06-03 02:38:00 +000012 <artifactId>maven-release-plugin</artifactId>
13 <version>2.0</version>
14 <configuration>
15 <goals>package source:jar javadoc:jar deploy:deploy</goals>
16 </configuration>
17 </plugin>
18 <plugin>
19 <groupId>org.apache.maven.plugins</groupId>
vinayakb21580152011-06-03 02:33:21 +000020 <artifactId>maven-compiler-plugin</artifactId>
21 <version>2.0.2</version>
22 <configuration>
23 <source>1.6</source>
24 <target>1.6</target>
25 </configuration>
26 </plugin>
27 </plugins>
28 </build>
vinayakb9537eef2011-06-03 02:38:00 +000029
30 <scm>
31 <connection>scm:svn:https://hyracks.googlecode.com/svn/trunk/hyracks-maven-plugin</connection>
32 <developerConnection>scm:svn:https://hyracks.googlecode.com/svn/trunk/hyracks-maven-plugin</developerConnection>
33 <url>http://code.google.com/p/hyracks/source/browse/#svn/trunk/hyracks-maven-plugin</url>
34 </scm>
35
36 <distributionManagement>
37 <repository>
38 <id>hyracks-releases</id>
39 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-releases/</url>
40 </repository>
41 <snapshotRepository>
42 <id>hyracks-snapshots</id>
43 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-snapshots/</url>
44 </snapshotRepository>
45 </distributionManagement>
46
47 <reporting>
48 <plugins>
49 <plugin>
50 <groupId>org.apache.maven.plugins</groupId>
51 <artifactId>maven-changelog-plugin</artifactId>
52 </plugin>
53 </plugins>
54 </reporting>
55
56 <repositories>
57 <repository>
58 <id>hyracks-public</id>
59 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
60 </repository>
61 </repositories>
62
vinayakb21580152011-06-03 02:33:21 +000063 <dependencies>
64 <dependency>
65 <groupId>org.apache.maven</groupId>
66 <artifactId>maven-plugin-api</artifactId>
67 <version>2.2.1</version>
68 <type>jar</type>
69 <scope>compile</scope>
70 </dependency>
71 </dependencies>
72</project>