root/pom.xml

Revision 68:86db3c936527, 2.4 kB (checked in by ryan@…, 3 days ago)

[maven-release-plugin] prepare for next development iteration

Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<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">
3    <modelVersion>4.0.0</modelVersion>
4    <groupId>com.thimbleware.jmemcached</groupId>
5    <artifactId>jmemcached-parent</artifactId>
6    <packaging>pom</packaging>
7    <version>0.7-SNAPSHOT</version>
8    <name>jmemcached Parent Project</name>
9    <url>http://www.thimbleware.com/projects/jmemcached</url>
10
11    <modules>
12        <module>core</module>
13        <module>cli</module>
14        <module>test</module>
15    </modules>
16
17
18    <build>
19        <plugins>
20            <plugin>
21                <groupId>org.apache.maven.plugins</groupId>
22                <artifactId>maven-compiler-plugin</artifactId>
23                <configuration>
24                    <source>1.5</source>
25                    <target>1.5</target>
26                </configuration>
27            </plugin>
28        </plugins>
29    </build>
30   
31    <inceptionYear>2008</inceptionYear>
32
33    <licenses>
34        <license>
35            <name>Apache 2</name>
36            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
37        </license>
38    </licenses>
39
40    <organization>
41        <name>ThimbleWare</name>
42        <url>http://thimbleware.com/</url>
43    </organization>
44
45    <developers>
46        <developer>
47            <email>ryan@thimbleware.com</email>
48            <name>Ryan Daum</name>
49            <organization>ThimbleWare Inc</organization>
50            <organizationUrl>http://www.thimbleware.com/</organizationUrl>
51            <roles>
52                <role>maintainer</role>
53            </roles>
54        </developer>
55    </developers>
56
57    <distributionManagement>
58        <repository>
59            <id>thimbleware.repo</id>
60            <name>ThimbleWare Repository</name>
61            <url>scp://ryan@thimbleware.com//var/www/maven</url>
62        </repository>
63        <snapshotRepository>
64            <id>thimbleware.repo</id>
65            <name>ThimbleWare Repository</name>
66            <url>scp://ryan@thimbleware.com//var/www/maven</url>
67        </snapshotRepository>
68    </distributionManagement>
69
70    <scm>
71        <connection>
72            scm:hg:http://thimbleware.com/hg/jmemcached
73        </connection>
74        <developerConnection>
75            scm:hg:file:///var/hg/jmemcached
76        </developerConnection>
77    </scm>
78</project>
Note: See TracBrowser for help on using the browser.