blob: 35afbae16c0aba0f408619e15440b64bdbcc8ae3 [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>
vinayakb76baeed2011-06-03 02:39:18 +00007 <name>Hyracks Maven Plugin</name>
vinayakb21580152011-06-03 02:33:21 +00008
9 <build>
10 <plugins>
11 <plugin>
12 <groupId>org.apache.maven.plugins</groupId>
vinayakb9537eef2011-06-03 02:38:00 +000013 <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>
vinayakb21580152011-06-03 02:33:21 +000021 <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>
vinayakb9537eef2011-06-03 02:38:00 +000030
31 <scm>
32 <connection>scm:svn:https://hyracks.googlecode.com/svn/trunk/hyracks-maven-plugin</connection>
33 <developerConnection>scm:svn:https://hyracks.googlecode.com/svn/trunk/hyracks-maven-plugin</developerConnection>
34 <url>http://code.google.com/p/hyracks/source/browse/#svn/trunk/hyracks-maven-plugin</url>
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
vinayakb21580152011-06-03 02:33:21 +000064 <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>