Skip to content

Commit

Permalink
added details to appease Maven central
Browse files Browse the repository at this point in the history
  • Loading branch information
hhuynh committed Jun 29, 2013
1 parent 1ddc06e commit 90ba81c
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 1 deletion.
25 changes: 24 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,30 @@
<version>2.2.1-SNAPSHOT</version>
<name>quartz-parent</name>
<packaging>pom</packaging>


<description>Enterprise Job Scheduler Parent pom</description>
<organization>
<name>Terracotta, Inc.</name>
<url>http://www.terracotta.org</url>
</organization>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:svn:http://svn.terracotta.org/svn/quartz</connection>
<developerConnection>scm:svn:https://svn.terracotta.org/repo/quartz</developerConnection>
<tag/>
<url>http://svn.terracotta.org/svn/quartz</url>
</scm>
<issueManagement>
<system>Terracotta's JIRA</system>
<url>http://jira.terracotta.org/jira/browse/QTZ</url>
</issueManagement>

<modules>
<module>checkstyle</module>
<module>quartz-core</module>
Expand Down
22 changes: 22 additions & 0 deletions quartz-jobs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz-jobs</artifactId>
<name>quartz-jobs</name>
<description>Quartz utility jobs</description>

<dependencies>
<dependency>
Expand Down Expand Up @@ -76,6 +77,27 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<configuration>
<skip>${skipJavadoc}</skip>
<quiet>true</quiet>
<doctitle>Quartz Enterprise Job Scheduler ${project.version} - Utility jobs</doctitle>
<windowtitle>Quartz Enterprise Job Scheduler ${project.version} - Utility jobs</windowtitle>
<bottom>Copyright 2001-{currentYear}, Terracotta, Inc.</bottom>
</configuration>
<executions>
<execution>
<id>create-javadoc</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
Expand Down

0 comments on commit 90ba81c

Please sign in to comment.