| <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>4.1.4-SNAPSHOT</version> | |
| <!-- This should change to tapestry-project --> | |
| <parent> | |
| <groupId>org.apache.tapestry</groupId> | |
| <artifactId>tapestry-project</artifactId> | |
| <version>4.1.4-SNAPSHOT</version> | |
| </parent> | |
| <name>Tapestry Core Library - ${version}</name> | |
| <inceptionYear>2006</inceptionYear> | |
| <dependencies> | |
| <dependency> | |
| <groupId>jboss</groupId> | |
| <artifactId>javassist</artifactId> | |
| <!-- Override parent pom --> | |
| <scope>compile</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>hivemind</groupId> | |
| <artifactId>hivemind</artifactId> | |
| </dependency> | |
| <dependency> | |
| <groupId>hivemind</groupId> | |
| <artifactId>hivemind-lib</artifactId> | |
| </dependency> | |
| <!-- Really, a transitive dependency of hivemind. --> | |
| <dependency> | |
| <groupId>oro</groupId> | |
| <artifactId>oro</artifactId> | |
| </dependency> | |
| <dependency> | |
| <groupId>commons-logging</groupId> | |
| <artifactId>commons-logging</artifactId> | |
| </dependency> | |
| <!-- Override parent pom: needed at compile time. --> | |
| <dependency> | |
| <groupId>org.easymock</groupId> | |
| <artifactId>easymock</artifactId> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.easymock</groupId> | |
| <artifactId>easymockclassextension</artifactId> | |
| </dependency> | |
| <!-- Override parent pom: needed at compile time. --> | |
| <dependency> | |
| <groupId>commons-codec</groupId> | |
| <artifactId>commons-codec</artifactId> | |
| </dependency> | |
| <dependency> | |
| <groupId>ognl</groupId> | |
| <artifactId>ognl</artifactId> | |
| </dependency> | |
| <dependency> | |
| <groupId>javax.servlet</groupId> | |
| <artifactId>servlet-api</artifactId> | |
| </dependency> | |
| <dependency> | |
| <groupId>commons-fileupload</groupId> | |
| <artifactId>commons-fileupload</artifactId> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.apache.commons</groupId> | |
| <artifactId>commons-io</artifactId> | |
| </dependency> | |
| <dependency> | |
| <groupId>commons-beanutils</groupId> | |
| <artifactId>commons-beanutils</artifactId> | |
| </dependency> | |
| <dependency> | |
| <groupId>commons-lang</groupId> | |
| <artifactId>commons-lang</artifactId> | |
| </dependency> | |
| <dependency> | |
| <groupId>commons-pool</groupId> | |
| <artifactId>commons-pool</artifactId> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.testng</groupId> | |
| <artifactId>testng</artifactId> | |
| <version>5.1</version> | |
| <classifier>jdk15</classifier> | |
| <scope>test</scope> | |
| <exclusions> | |
| <exclusion> | |
| <groupId>junit</groupId> | |
| <artifactId>junit</artifactId> | |
| </exclusion> | |
| </exclusions> | |
| </dependency> | |
| <dependency> | |
| <groupId>jdom</groupId> | |
| <artifactId>jdom</artifactId> | |
| <version>1.0</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>log4j</groupId> | |
| <artifactId>log4j</artifactId> | |
| <version>1.2.8</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.apache.tapestry</groupId> | |
| <artifactId>tapestry-test</artifactId> | |
| <exclusions> | |
| <exclusion> | |
| <groupId>tapestry</groupId> | |
| <artifactId>tapestry</artifactId> | |
| </exclusion> | |
| </exclusions> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.openqa.selenium.client-drivers</groupId> | |
| <artifactId>selenium-java-client-driver</artifactId> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.openqa.selenium.server</groupId> | |
| <artifactId>selenium-server</artifactId> | |
| </dependency> | |
| <dependency> | |
| <groupId>backport-util-concurrent</groupId> | |
| <artifactId>backport-util-concurrent</artifactId> | |
| </dependency> | |
| </dependencies> | |
| <build> | |
| <sourceDirectory>src/java</sourceDirectory> | |
| <resources> | |
| <resource> | |
| <directory>src/descriptor/META-INF</directory> | |
| <includes> | |
| <include>**</include> | |
| </includes> | |
| <targetPath>META-INF</targetPath> | |
| </resource> | |
| <resource> | |
| <directory>src/java</directory> | |
| <includes> | |
| <include>**/*</include> | |
| </includes> | |
| <excludes> | |
| <exclude>**/*.java</exclude> | |
| </excludes> | |
| </resource> | |
| <resource> | |
| <directory>src/js/dojo-0.4.3/</directory> | |
| <includes> | |
| <include>**/*</include> | |
| </includes> | |
| <targetPath>dojo-0.4.3</targetPath> | |
| </resource> | |
| <resource> | |
| <directory>src/js/scriptaculous-1.7.1/</directory> | |
| <includes> | |
| <include>**/*</include> | |
| </includes> | |
| <targetPath>scriptaculous-1.7.1</targetPath> | |
| </resource> | |
| <resource> | |
| <directory>src/js/tapestry</directory> | |
| <includes> | |
| <include>**/*</include> | |
| </includes> | |
| <targetPath>tapestry</targetPath> | |
| </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> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-antrun-plugin</artifactId> | |
| <version>1.1</version> | |
| <inherited>true</inherited> | |
| <executions> | |
| <execution> | |
| <phase>site</phase> | |
| <configuration> | |
| <tasks> | |
| <ant antfile="../support/build.xml" inheritRefs="true"> | |
| <property name="target.dir" value="../target/site/tapestry-framework" /> | |
| <target name="build" /> | |
| </ant> | |
| </tasks> | |
| </configuration> | |
| <goals> | |
| <goal>run</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| <dependencies> | |
| <dependency> | |
| <groupId>hivemind</groupId> | |
| <artifactId>hivemind</artifactId> | |
| <version>1.1.1</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>xerces</groupId> | |
| <artifactId>xercesImpl</artifactId> | |
| <version>2.6.2</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>commons-logging</groupId> | |
| <artifactId>commons-logging</artifactId> | |
| <version>1.0.4</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>log4j</groupId> | |
| <artifactId>log4j</artifactId> | |
| <version>1.2.13</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>oro</groupId> | |
| <artifactId>oro</artifactId> | |
| <version>2.0.8</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>ant</groupId> | |
| <artifactId>ant-xslp</artifactId> | |
| <version>1.6.5</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>ant</groupId> | |
| <artifactId>ant-trax</artifactId> | |
| <version>1.6.5</version> | |
| </dependency> | |
| </dependencies> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.codehaus.mojo</groupId> | |
| <artifactId>clirr-maven-plugin</artifactId> | |
| <configuration> | |
| <comparisonVersion>4.1.2</comparisonVersion> | |
| <minSeverity>info</minSeverity> | |
| <textOutputFile>${project.build.directory}/clirr.txt</textOutputFile> | |
| <excludes> | |
| <exclude>**/internal/**</exclude> | |
| <exclude>**/spi/**</exclude> | |
| <exclude>**/impl/**</exclude> | |
| <exclude>**/*Impl</exclude> | |
| <exclude>**/*Impl$*</exclude> | |
| </excludes> | |
| </configuration> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| <reporting> | |
| <outputDirectory>../target/site/tapestry-framework</outputDirectory> | |
| </reporting> | |
| </project> |