1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
|
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz-parent</artifactId>
<version>1.8.6</version>
<packaging>pom</packaging>
<name>Quartz Parent POM</name>
<description>
Quartz is a full-featured, open source job scheduling system that
can be integrated with, or used along side virtually any J2EE or
J2SE application
</description>
<url>http://quartz-scheduler.org/</url>
<scm>
<connection>scm:svn:http://svn.terracotta.org/svn/quartz</connection>
<developerConnection>scm:svn:https://svn.terracotta.org/repo/quartz</developerConnection>
<url>http://svn.terracotta.org/svn/quartz</url>
</scm>
<developers>
<developer>
<id>jhouse</id>
<name>James House</name>
<email>jhouse@terracotta.org</email>
<organization>Terracotta</organization>
<organizationUrl>http://terracotta.org</organizationUrl>
<roles>
<role>Primary Developer</role>
</roles>
<timezone>-6</timezone>
</developer>
<developer>
<id>jvoegele</id>
<name>Jason Voegele</name>
<email>jvoegele@terracotta.org</email>
<organization>Terracotta</organization>
<organizationUrl>http://terracotta.org</organizationUrl>
<roles>
<role>Build Engineer</role>
<role>Release Engineer</role>
</roles>
<timezone>-5</timezone>
</developer>
</developers>
<licenses>
<license>
<name>Apache 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>quartz</module>
<module>quartz-jboss</module>
<module>examples</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.6</version>
<configuration>
<forkMode>always</forkMode>
<systemProperties>
<property>
<!-- skip update check in tests -->
<name>org.terracotta.quartz.skipUpdateCheck</name>
<value>true</value>
</property>
</systemProperties>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>checkstyle</goal>
</goals>
</execution>
</executions>
<configuration>
<skip>true</skip>
<configLocation>${basedir}/../src/checkstyle/checkstyle_checks.xml</configLocation>
<suppressionsLocation>${basedir}/../src/checkstyle/suppressions.xml</suppressionsLocation>
<headerLocation>${basedir}/../src/checkstyle/src-header.txt</headerLocation>
<enableRSS>false</enableRSS>
<linkXRef>false</linkXRef>
<consoleOutput>true</consoleOutput>
<failsOnError>true</failsOnError>
<failOnViolation>true</failOnViolation>
<includeTestSourceDirectory>false</includeTestSourceDirectory>
<enableRulesSummary>true</enableRulesSummary>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<findbugsXmlOutput>true</findbugsXmlOutput>
<findbugsXmlWithMessages>true</findbugsXmlWithMessages>
<xmlOutput>true</xmlOutput>
<excludeFilterFile>${basedir}/../src/findbugs/excludeFilter.xml</excludeFilterFile>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>2.5</version>
<configuration>
<aggregate>true</aggregate>
<targetJdk>1.5</targetJdk>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<!-- Profile to include the quartz-oracle module in the build. -->
<id>oracle</id>
<modules>
<module>quartz-oracle</module>
</modules>
</profile>
<profile>
<!-- Profile to include the quartz-weblogic and quartz-oracle modules in the build -->
<id>weblogic</id>
<modules>
<!-- quartz-weblogic depends on quartz-oracle so enable that module too -->
<module>quartz-oracle</module>
<module>quartz-weblogic</module>
</modules>
</profile>
<profile>
<!-- Profile to include the quartz-commonj module in the build -->
<id>commonj</id>
<modules>
<module>quartz-commonj</module>
</modules>
</profile>
<profile>
<!-- Profile to include the quartz-all module in the build. -->
<id>all</id>
<modules>
<module>quartz-all</module>
</modules>
</profile>
<profile>
<!--
Profile used to prepare the distribution, including generating JavaDocs and invoking the assembly
plugin to create the distribution archive files. To create the distribution, invoke the package phase
and the assembly:assembly plugin goal with this profile enabled, i.e.:
mvn -Pprepare-distribution package assembly:assembly
To include the quartz-oracle and quartz-weblogic artifacts in the distribution, make sure to enable the
respective profiles when assembling the package, i.e.:
mvn -Pprepare-distribution -Poracle,weblogic,all package assembly:assembly
-->
<id>prepare-distribution</id>
<build>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
<executions>
<execution>
<id>aggregate-javadocs</id>
<phase>prepare-package</phase>
<goals>
<goal>aggregate</goal>
<goal>jar</goal>
</goals>
<configuration>
<bottom><![CDATA[Copyright 2001-{currentYear}, <a href="http://www.terracotta.org">Terracotta, Inc.<a>]]></bottom>
<doctitle>Quartz Enterprise Job Scheduler ${project.version} API</doctitle>
<excludePackageNames>org.quartz.examples</excludePackageNames>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2.2</version>
<configuration>
<finalName>quartz-${project.version}</finalName>
<appendAssemblyId>false</appendAssemblyId>
<descriptors>
<descriptor>src/main/assembly/dist.xml</descriptor>
</descriptors>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<!-- Profile to sign artifacts with a PGP key (using GPG). -->
<id>sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<keyname>Terracotta Release Engineer</keyname>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<distributionManagement>
<snapshotRepository>
<id>quartz-snapshots</id>
<name>Quartz snapshots at Sonatype Nexus</name>
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>quartz-staging</id>
<name>Quartz release staging at Sonatype Nexus</name>
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>
|