| <!--suppress ALL --> |
| <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.apache.tapestry</groupId> |
| <artifactId>tapestry-framework</artifactId> |
| <packaging>jar</packaging> |
| <version>3.0.5-SNAPSHOT</version> |
| <!-- This should change to tapestry-project --> |
| <parent> |
| <groupId>org.apache.tapestry</groupId> |
| <artifactId>tapestry-project</artifactId> |
| <version>3.0.5-SNAPSHOT</version> |
| </parent> |
| <name>Tapestry Core Library - ${version}</name> |
| <inceptionYear>2003</inceptionYear> |
| |
| <dependencies> |
| <dependency> |
| <groupId>jdom</groupId> |
| <artifactId>jdom</artifactId> |
| <scope>runtime</scope> |
| </dependency> |
| <dependency> |
| <groupId>jboss</groupId> |
| <artifactId>javassist</artifactId> |
| <!-- Override parent pom --> |
| <scope>compile</scope> |
| </dependency> |
| <dependency> |
| <groupId>ognl</groupId> |
| <artifactId>ognl</artifactId> |
| <scope>compile</scope> |
| </dependency> |
| <dependency> |
| <groupId>javax.servlet</groupId> |
| <artifactId>servlet-api</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>jdom</groupId> |
| <artifactId>jdom</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>log4j</groupId> |
| <artifactId>log4j</artifactId> |
| <version>1.2.13</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>commons-logging</groupId> |
| <artifactId>commons-logging</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>commons-lang</groupId> |
| <artifactId>commons-lang</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>commons-pool</groupId> |
| <artifactId>commons-pool</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>commons-beanutils</groupId> |
| <artifactId>commons-beanutils</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>commons-digester</groupId> |
| <artifactId>commons-digester</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>bsf</groupId> |
| <artifactId>bsf</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>oro</groupId> |
| <artifactId>oro</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>commons-codec</groupId> |
| <artifactId>commons-codec</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>commons-fileupload</groupId> |
| <artifactId>commons-fileupload</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>backport-util-concurrent</groupId> |
| <artifactId>backport-util-concurrent</artifactId> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <sourceDirectory>src</sourceDirectory> |
| <resources> |
| <resource> |
| <directory>META-INF</directory> |
| <includes> |
| <include>**</include> |
| </includes> |
| <targetPath>META-INF</targetPath> |
| </resource> |
| <resource> |
| <directory>src</directory> |
| <includes> |
| <include>**/*</include> |
| </includes> |
| <excludes> |
| <exclude>**/*.java</exclude> |
| <exclude>**/build.xml</exclude> |
| <exclude>**/.cvsignore</exclude> |
| </excludes> |
| </resource> |
| </resources> |
| <!-- |
| <testSourceDirectory>src/test</testSourceDirectory> |
| <testResources> |
| <testResource> |
| <directory>src/test</directory> |
| <includes> |
| <include>**/*</include> |
| </includes> |
| <excludes> |
| <exclude>**/*.java</exclude> |
| </excludes> |
| </testResource> |
| <testResource> |
| <directory>src/conf</directory> |
| <includes> |
| <include>log4j.properties</include> |
| </includes> |
| </testResource> |
| </testResources> |
| --> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-jar-plugin</artifactId> |
| <version>2.1</version> |
| <configuration> |
| <archive> |
| <compress>true</compress> |
| <index>true</index> |
| </archive> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-source-plugin</artifactId> |
| <executions> |
| <execution> |
| <goals> |
| <goal>jar</goal> |
| </goals> |
| </execution> |
| </executions> |
| <configuration> |
| <archive> |
| <compress>true</compress> |
| <index>true</index> |
| </archive> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <reporting> |
| <outputDirectory>../target/site/tapestry-framework</outputDirectory> |
| </reporting> |
| |
| </project> |