java-tutorials/web-modules/apache-tapestry/pom.xml

152 lines
6.5 KiB
XML
Raw Normal View History

2019-12-05 09:56:52 -05:00
<?xml version="1.0" encoding="UTF-8"?>
2021-05-06 07:44:43 -04:00
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2019-11-09 08:32:22 -05:00
<modelVersion>4.0.0</modelVersion>
<artifactId>apache-tapestry</artifactId>
<version>0.0.1-SNAPSHOT</version>
2019-11-28 03:36:53 -05:00
<name>apache-tapestry</name>
2019-12-05 09:56:52 -05:00
<packaging>war</packaging>
2022-05-16 12:55:29 -04:00
<parent>
<groupId>com.baeldung</groupId>
[JAVA-13854] Half list moved (#12598) * [JAVA-13854] added parent module * [JAVA-13854] moved apache-tapestry(submodule) to web-modules(parent) * [JAVA-13854] moved bootique(submodule) to web-modules(parent) * [JAVA-13854] moved dropwizard(submodule) to web-modules(parent) * [JAVA-13854] moved blade(submodule) to web-modules(parent) * [JAVA-13854] moved java-lite(submodule) to web-modules(parent) * [JAVA-13854] moved jooby(submodule) to web-modules(parent) * [JAVA-13854] moved linkrest(submodule) to web-modules(parent) * [JAVA-13854] moved ninja(submodule) to web-modules(parent) * [JAVA-13854] moved ratpack(submodule) to web-modules(parent) * [JAVA-13854] moved resteasy(submodule) to web-modules(parent) * [JAVA-13854] moved restx(submodule) to web-modules(parent) * [JAVA-13854] moved spark-java(submodule) to web-modules(parent) * [JAVA-13854] moved vraptor(submodule) to web-modules(parent) * [JAVA-13854] delete modules that were moved * [JAVA-13854] * [JAVA-13854] * [JAVA-13854] delete ninja submodule + moved raml(submodule) to web-modules(parent) * [JAVA-13854] moved gwt(submodule) to web-modules(parent) * [JAVA-13854] moved jakarta-ee(submodule) to web-modules(parent) * [JAVA-13854] moved javax-servlets(submodule) to web-modules(parent) * [JAVA-13854] moved javax-servlets-2(submodule) to web-modules(parent) * [JAVA-13854] moved jee-7(submodule) to web-modules(parent) * [JAVA-13854] moved play-framework(not a module) to web-modules * [JAVA-13854] fix failing test * [JAVA-13854] moved struts-2(submodule) to web-modules(parent) * [JAVA-13854] moved wicket(submodule) to web-modules(parent) * [JAVA-13854] deleted modules that were moved to web-modules * JAVA-13854 Removed moved modules from the main pom.xml Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Dhawal Kapil <dhawalkapil@gmail.com>
2022-08-21 05:14:00 -04:00
<artifactId>web-modules</artifactId>
2022-05-16 12:55:29 -04:00
<version>1.0.0-SNAPSHOT</version>
</parent>
2019-12-05 09:56:52 -05:00
<dependencies>
<!-- To 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. -->
2019-11-09 08:32:22 -05:00
<dependency>
<groupId>org.apache.tapestry</groupId>
<artifactId>tapestry-core</artifactId>
<version>${tapestry.version}</version>
2019-11-09 08:32:22 -05:00
</dependency>
<!-- Include the Log4j implementation for the SLF4J logging framework -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slf4j-release-version}</version>
</dependency>
<dependency>
<groupId>org.apache.tapestry</groupId>
<artifactId>tapestry-webresources</artifactId>
<version>${tapestry.version}</version>
2019-11-09 08:32:22 -05:00
</dependency>
<!-- Uncomment this to add support for file uploads: -->
<!-- <dependency> -->
<!-- <groupId>org.apache.tapestry</groupId> -->
<!-- <artifactId>tapestry-upload</artifactId> -->
<!-- <version>${tapestry.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. -->
2019-11-09 08:32:22 -05:00
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${testng-release-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.tapestry</groupId>
<artifactId>tapestry-test</artifactId>
<version>${tapestry.version}</version>
2019-11-09 08:32:22 -05:00
<scope>test</scope>
</dependency>
2020-03-15 08:52:24 -04:00
<!-- Provided by the servlet container, but sometimes referenced in the application code. -->
2019-11-09 08:32:22 -05:00
<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.version}</version>
2019-11-09 08:32:22 -05:00
<scope>provided</scope>
</dependency>
</dependencies>
2019-12-05 09:56:52 -05:00
2019-11-09 08:32:22 -05:00
<build>
<finalName>apache-tapestry</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2020-01-15 15:23:26 -05:00
<version>${compiler.plugin.version}</version>
2019-11-09 08:32:22 -05:00
<configuration>
2020-01-15 15:23:26 -05:00
<source>${source.version}</source>
<target>${target.version}</target>
2019-11-09 08:32:22 -05:00
<optimize>true</optimize>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
2020-01-15 15:23:26 -05:00
<version>${compiler.surefire.version}</version>
2019-11-09 08:32:22 -05:00
<configuration>
<systemPropertyVariables>
<tapestry.execution-mode>Qa</tapestry.execution-mode>
</systemPropertyVariables>
</configuration>
</plugin>
<!-- Run the application using "mvn jetty:run" -->
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId>
2020-01-15 15:23:26 -05:00
<version>${compiler.jetty.version}</version>
2019-11-09 08:32:22 -05:00
<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. -->
2019-11-09 08:32:22 -05:00
<append>true</append>
</requestLog>
<systemProperties>
<systemProperty>
<name>tapestry.execution-mode</name>
<value>development</value>
</systemProperty>
</systemProperties>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.1</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
</manifest>
</archive>
</configuration>
</plugin>
2019-11-09 08:32:22 -05:00
</plugins>
</build>
<repositories>
<repository>
2019-11-09 08:32:22 -05:00
<id>jboss</id>
<url>http://repository.jboss.org/nexus/content/groups/public/</url>
</repository>
</repositories>
<properties>
2020-01-15 15:23:26 -05:00
<compiler.jetty.version>6.1.16</compiler.jetty.version>
<compiler.surefire.version>3.0.0-M5</compiler.surefire.version>
<compiler.plugin.version>3.8.1</compiler.plugin.version>
<source.version>11</source.version>
<target.version>11</target.version>
<tapestry.version>5.8.2</tapestry.version>
2019-11-09 08:32:22 -05:00
<servlet-api-release-version>2.5</servlet-api-release-version>
<testng-release-version>6.8.21</testng-release-version>
<slf4j-release-version>1.7.19</slf4j-release-version>
</properties>
2019-12-05 09:56:52 -05:00
2021-05-06 07:44:43 -04:00
</project>