spelhelper/pom.xml

76 lines
2.2 KiB
XML
Raw Normal View History

2010-05-26 19:00:31 +05:30
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2010-05-27 01:51:03 +05:30
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
2010-05-26 19:00:31 +05:30
2010-05-27 01:51:03 +05:30
<groupId>net.abhinavsarkar.spelhelper</groupId>
<artifactId>SpelHelper</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
2010-05-26 19:00:31 +05:30
2010-05-27 01:51:03 +05:30
<name>SpelHelper</name>
<url>http://maven.apache.org</url>
2010-05-26 19:00:31 +05:30
2010-05-27 01:51:03 +05:30
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
2010-05-26 19:00:31 +05:30
2010-05-27 01:51:03 +05:30
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
<executions>
<execution>
<id>javadoc</id>
<phase>process-sources</phase>
<goals>
<goal>javadoc</goal>
</goals>
</execution>
</executions>
<configuration>
2010-05-27 02:25:06 +05:30
<reportOutputDirectory>${basedir}/../apidocs</reportOutputDirectory>
2010-05-27 01:51:03 +05:30
<footer>Code hosted at &lt;a target='_blank' href='http://github.com/abhin4v/spelhelper/'&gt;github&lt;/a&gt;</footer>
<links>
<link>http://static.springsource.org/spring/docs/3.0.x/javadoc-api/</link>
</links>
<show>protected</show>
<stylesheetfile>spring-javadoc.css</stylesheetfile>
<doclet>com.visural.doclets.markdown.standard.Standard</doclet>
<docletPath>${basedir}/lib/markdown-doclet-3.0.jar</docletPath>
<useStandardDocletOptions>true</useStandardDocletOptions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.1</version>
<configuration>
<source>1.6</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>3.0.2.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
<version>3.0.2.RELEASE</version>
</dependency>
</dependencies>
2010-05-26 19:00:31 +05:30
</project>