123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- <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>ie.tcd.kdeg.jumainterlink</groupId>
- <artifactId>juma-interlink</artifactId>
- <packaging>war</packaging>
- <version>1.0-SNAPSHOT</version>
- <name>juma-interlink Maven Webapp</name>
- <url>http://maven.apache.org</url>
- <dependencies>
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <version>${mysql-connector-version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.jena</groupId>
- <artifactId>jena-arq</artifactId>
- <version>3.0.1</version>
- </dependency>
- <dependency>
- <groupId>org.apache.jena</groupId>
- <artifactId>jena-core</artifactId>
- <version>3.0.1</version>
- </dependency>
- <!-- Too set up an application with a database, change the artifactId below
- to tapestry-hibernate, and add a dependency on your JDBC driver. You'll also
- need to add Hibernate configuration files, such as hibernate.cfg.xml. -->
- <dependency>
- <groupId>org.apache.tapestry</groupId>
- <artifactId>tapestry-core</artifactId>
- <version>${tapestry-release-version}</version>
- </dependency>
- <!-- This adds automatic compression of JavaScript and CSS when in production
- mode. -->
- <dependency>
- <groupId>org.apache.tapestry</groupId>
- <artifactId>tapestry-yuicompressor</artifactId>
- <version>${tapestry-release-version}</version>
- </dependency>
- <!-- Uncomment this to add support for file uploads: <dependency> <groupId>org.apache.tapestry</groupId>
- <artifactId>tapestry-upload</artifactId> <version>${tapestry-release-version}</version>
- </dependency> -->
- <!-- A dependency on either JUnit or TestNG is required, or the surefire
- plugin (which runs the tests) will fail, preventing Maven from packaging
- the WAR. Tapestry includes a large number of testing facilities designed
- for use with TestNG (http://testng.org/), so it's recommended. -->
- <dependency>
- <groupId>org.testng</groupId>
- <artifactId>testng</artifactId>
- <version>${testng-release-version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.easymock</groupId>
- <artifactId>easymock</artifactId>
- <version>${easymock-release-version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.tapestry</groupId>
- <artifactId>tapestry-test</artifactId>
- <version>${tapestry-release-version}</version>
- <scope>test</scope>
- </dependency>
- <!-- Provided by the servlet container, but sometimes referenced in the
- application code. -->
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>${servlet-api-release-version}</version>
- <scope>provided</scope>
- </dependency>
- <!-- Provide dependency to the Tapestry javadoc taglet which replaces the
- Maven component report -->
- <dependency>
- <groupId>org.apache.tapestry</groupId>
- <artifactId>tapestry-javadoc</artifactId>
- <version>${tapestry-release-version}</version>
- <scope>provided</scope>
- </dependency>
- <!-- Hibernate dependencies -->
- <dependency>
- <groupId>org.apache.tapestry</groupId>
- <artifactId>tapestry-hibernate</artifactId>
- <version>${tapestry-release-version}</version>
- </dependency>
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-c3p0</artifactId>
- <version>3.6.0.Final</version>
- </dependency>
- <dependency>
- <groupId>c3p0</groupId>
- <artifactId>c3p0</artifactId>
- <version>0.9.1.2</version>
- </dependency>
- <dependency>
- <groupId>org.hsqldb</groupId>
- <artifactId>hsqldb</artifactId>
- <version>2.3.2</version>
- </dependency>
- <!-- Add security -->
- <dependency>
- <groupId>org.tynamo</groupId>
- <artifactId>tapestry-security</artifactId>
- <version>0.6.2</version>
- </dependency>
- <dependency>
- <groupId>org.got5</groupId>
- <artifactId>tapestry5-jquery</artifactId>
- <version>3.4.2</version>
- </dependency>
- </dependencies>
- <build>
- <finalName>juma-interlink</finalName>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>2.7.2</version>
- <configuration>
- <systemPropertyVariables>
- <tapestry.execution-mode>Qa</tapestry.execution-mode>
- </systemPropertyVariables>
- </configuration>
- </plugin>
- <!-- Jetty -->
- <!-- Run the application using "mvn jetty:run" -->
- <plugin>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>maven-jetty-plugin</artifactId>
- <version>6.1.16</version>
- <configuration>
- <!-- Log to the console. -->
- <requestLog implementation="org.mortbay.jetty.NCSARequestLog">
- <!-- This doesn't do anything for Jetty, but is a workaround for a
- Maven bug that prevents the requestLog from being set. -->
- <append>true</append>
- </requestLog>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <repositories>
- <!-- This repository is only needed when the Tapestry version is a preview
- release, rather than a final release. -->
- <repository>
- <id>apache-staging</id>
- <url>https://repository.apache.org/content/groups/staging/</url>
- </repository>
- <repository>
- <id>devlab722-repo</id>
- <url>http://nexus.devlab722.net/nexus/content/repositories/releases</url>
- </repository>
- </repositories>
- <properties>
- <tapestry-release-version>5.3.8</tapestry-release-version>
- <servlet-api-release-version>2.5</servlet-api-release-version>
- <testng-release-version>5.14.10</testng-release-version>
- <easymock-release-version>3.0</easymock-release-version>
- <mysql-connector-version>5.1.39</mysql-connector-version>
- </properties>
- </project>
|