blob: 44c45b62800e8809792ed7960679c99b75f31073 [file] [log] [blame]
Larry Ruizb63b1f82010-08-20 12:32:14 -05001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Larry Ruiz1057e522011-04-05 16:52:02 -05003 Copyright 2011, TAUTUA
Larry Ruizb63b1f82010-08-20 12:32:14 -05004
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
Larry Ruiz1057e522011-04-05 16:52:02 -05009 http://www.apache.org/licenses/LICENSE-2.0
Larry Ruizb63b1f82010-08-20 12:32:14 -050010
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16 -->
17
Larry Ruiz7835bab2010-08-25 11:21:26 -050018<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Larry Ruizb63b1f82010-08-20 12:32:14 -050020 <modelVersion>4.0.0</modelVersion>
21 <groupId>org.tautua.markdownpapers</groupId>
22 <artifactId>markdownpapers-parent</artifactId>
Larry Ruizdca39382011-04-17 01:25:53 -050023 <version>1.0.0</version>
Larry Ruizb63b1f82010-08-20 12:32:14 -050024 <name>MarkdownPapers Parent POM</name>
Larry Ruiza48a9572010-09-03 11:18:10 -050025 <description>Markdown parser and transformer</description>
Larry Ruizb63b1f82010-08-20 12:32:14 -050026 <url>http://markdown.tautua.org</url>
27 <inceptionYear>2009</inceptionYear>
28 <packaging>pom</packaging>
29 <organization>
Larry Ruizc22689b2011-03-31 00:44:57 -060030 <name>Tautua</name>
31 <url>http://www.tautua.org</url>
Larry Ruizb63b1f82010-08-20 12:32:14 -050032 </organization>
33 <licenses>
34 <license>
35 <name>The Apache Software License, Version 2.0</name>
36 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
37 <distribution>repo</distribution>
38 </license>
39 </licenses>
40 <scm>
Larry Ruiz4f3eb8b2010-10-26 00:04:50 -050041 <connection>scm:git:git@github.com:lruiz/MarkdownPapers.git</connection>
Larry Ruizb63b1f82010-08-20 12:32:14 -050042 <developerConnection>scm:git:git@github.com:lruiz/MarkdownPapers.git</developerConnection>
43 <url>http://github.com/lruiz/MarkdownPapers</url>
44 </scm>
Larry Ruiz58e70f42010-10-27 17:58:29 -050045 <distributionManagement>
46 <snapshotRepository>
47 <id>Sonatype.snapshots</id>
48 <name>Sonatype Nexus Snapshots</name>
49 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
50 </snapshotRepository>
51 <repository>
52 <id>Sonatype.staging</id>
53 <name>Sonatype Nexus Staging</name>
54 <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
55 </repository>
56 </distributionManagement>
Larry Ruizb63b1f82010-08-20 12:32:14 -050057 <developers>
58 <developer>
59 <id>lruiz</id>
60 <name>Larry Ruiz</name>
Larry Ruiz86547f22011-04-05 00:27:13 -050061 <email>lruiz@tautua.org</email>
Larry Ruizb63b1f82010-08-20 12:32:14 -050062 <timezone>-6</timezone>
63 </developer>
64 </developers>
Larry Ruizc22689b2011-03-31 00:44:57 -060065 <contributors>
66 <contributor>
67 <name>Sabri Mahmud</name>
68 <timezone>-6</timezone>
69 </contributor>
70 </contributors>
Larry Ruizb63b1f82010-08-20 12:32:14 -050071 <profiles>
72 <profile>
73 <id>live</id>
74 <build>
75 <plugins>
76 <plugin>
77 <groupId>org.apache.maven.plugins</groupId>
Larry Ruiz58e70f42010-10-27 17:58:29 -050078 <artifactId>maven-enforcer-plugin</artifactId>
79 <version>1.0-beta-1</version>
80 <executions>
81 <execution>
82 <id>enforce-maven</id>
83 <goals>
84 <goal>enforce</goal>
85 </goals>
86 <configuration>
87 <rules>
88 <requireMavenVersion>
89 <version>(,2.1.0),(2.1.0,2.2.0),(2.2.0,)</version>
90 <message>Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and
91 checksums respectively.
92 </message>
93 </requireMavenVersion>
94 </rules>
95 </configuration>
96 </execution>
97 </executions>
98 </plugin>
99 <plugin>
100 <groupId>org.apache.maven.plugins</groupId>
Larry Ruizb63b1f82010-08-20 12:32:14 -0500101 <artifactId>maven-source-plugin</artifactId>
Larry Ruiz32ad3342010-10-28 16:17:32 -0500102 <version>2.1</version>
Larry Ruizb63b1f82010-08-20 12:32:14 -0500103 <executions>
104 <execution>
105 <id>attach-sources</id>
106 <phase>verify</phase>
107 <goals>
108 <goal>jar</goal>
109 </goals>
110 </execution>
111 </executions>
112 </plugin>
Larry Ruiz90b179b2010-10-26 15:35:18 -0500113 <plugin>
114 <groupId>org.apache.maven.plugins</groupId>
115 <artifactId>maven-javadoc-plugin</artifactId>
Larry Ruiz32ad3342010-10-28 16:17:32 -0500116 <version>2.6</version>
Larry Ruiz90b179b2010-10-26 15:35:18 -0500117 <executions>
118 <execution>
119 <id>attach-javadocs</id>
120 <phase>verify</phase>
121 <goals>
122 <goal>jar</goal>
123 </goals>
124 </execution>
125 </executions>
126 </plugin>
127 <plugin>
128 <groupId>org.apache.maven.plugins</groupId>
129 <artifactId>maven-gpg-plugin</artifactId>
Larry Ruiz32ad3342010-10-28 16:17:32 -0500130 <version>1.1</version>
Larry Ruiz90b179b2010-10-26 15:35:18 -0500131 <executions>
132 <execution>
133 <id>sign-artifacts</id>
134 <phase>verify</phase>
135 <goals>
136 <goal>sign</goal>
137 </goals>
138 </execution>
139 </executions>
140 </plugin>
Larry Ruizb63b1f82010-08-20 12:32:14 -0500141 </plugins>
142 </build>
143 </profile>
144 </profiles>
145 <build>
146 <plugins>
147 <plugin>
148 <groupId>org.apache.maven.plugins</groupId>
149 <artifactId>maven-compiler-plugin</artifactId>
Larry Ruiz32ad3342010-10-28 16:17:32 -0500150 <version>2.1</version>
Larry Ruizb63b1f82010-08-20 12:32:14 -0500151 <configuration>
152 <source>1.6</source>
153 <target>1.6</target>
154 <encoding>${project.build.sourceEncoding}</encoding>
155 </configuration>
156 </plugin>
157 </plugins>
158 </build>
159 <dependencies>
160 <dependency>
161 <groupId>junit</groupId>
162 <artifactId>junit</artifactId>
163 <version>4.8.1</version>
164 <scope>test</scope>
165 </dependency>
166 </dependencies>
Larry Ruizb63b1f82010-08-20 12:32:14 -0500167 <properties>
168 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
169 </properties>
170</project>