|
@@ -9,16 +9,17 @@
|
|
|
|
|
|
<properties>
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
- <maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
- <maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
- <tapestry-release-version>5.4.3</tapestry-release-version>
|
|
|
|
- <servlet-api-release-version>2.5</servlet-api-release-version>
|
|
|
|
|
|
+ <maven.compiler.source>11</maven.compiler.source>
|
|
|
|
+ <maven.compiler.target>11</maven.compiler.target>
|
|
|
|
+ <tapestry-release-version>5.5.0-beta-2</tapestry-release-version>
|
|
|
|
+ <servlet-api-release-version>3.1.0</servlet-api-release-version>
|
|
|
|
+ <jaxb.version>2.4.0-b180830.0438</jaxb.version>
|
|
<testng-release-version>5.14.10</testng-release-version>
|
|
<testng-release-version>5.14.10</testng-release-version>
|
|
<easymock-release-version>3.0</easymock-release-version>
|
|
<easymock-release-version>3.0</easymock-release-version>
|
|
</properties>
|
|
</properties>
|
|
|
|
|
|
<dependencies>
|
|
<dependencies>
|
|
- <!-- Too set up an application with a database, change the artifactId below to
|
|
|
|
|
|
+ <!-- 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
|
|
tapestry-hibernate, and add a dependency on your JDBC driver. You'll also
|
|
need to add Hibernate configuration files, such as hibernate.cfg.xml. -->
|
|
need to add Hibernate configuration files, such as hibernate.cfg.xml. -->
|
|
<dependency>
|
|
<dependency>
|
|
@@ -45,13 +46,11 @@
|
|
-->
|
|
-->
|
|
|
|
|
|
<!-- Uncomment this to add support for file uploads:
|
|
<!-- Uncomment this to add support for file uploads:
|
|
-
|
|
|
|
<dependency>
|
|
<dependency>
|
|
<groupId>org.apache.tapestry</groupId>
|
|
<groupId>org.apache.tapestry</groupId>
|
|
<artifactId>tapestry-upload</artifactId>
|
|
<artifactId>tapestry-upload</artifactId>
|
|
<version>${tapestry-release-version}</version>
|
|
<version>${tapestry-release-version}</version>
|
|
</dependency>
|
|
</dependency>
|
|
-
|
|
|
|
-->
|
|
-->
|
|
|
|
|
|
<!-- A dependency on either JUnit or TestNG is required, or the surefire plugin (which runs the tests)
|
|
<!-- A dependency on either JUnit or TestNG is required, or the surefire plugin (which runs the tests)
|
|
@@ -78,11 +77,10 @@ of testing facilities designed for use with TestNG (http://testng.org/), so it's
|
|
<scope>test</scope>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
|
- <!-- Provided by the servlet container, but sometimes referenced in the application
|
|
|
|
- code. -->
|
|
|
|
|
|
+ <!-- Provided by the servlet container, but sometimes referenced in the application code. -->
|
|
<dependency>
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<groupId>javax.servlet</groupId>
|
|
- <artifactId>servlet-api</artifactId>
|
|
|
|
|
|
+ <artifactId>javax.servlet-api</artifactId>
|
|
<version>${servlet-api-release-version}</version>
|
|
<version>${servlet-api-release-version}</version>
|
|
<scope>provided</scope>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependency>
|
|
@@ -97,9 +95,13 @@ of testing facilities designed for use with TestNG (http://testng.org/), so it's
|
|
<dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
- <version>2.9.7</version>
|
|
|
|
|
|
+ <version>2.9.8</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.glassfish.jaxb</groupId>
|
|
|
|
+ <artifactId>jaxb-runtime</artifactId>
|
|
|
|
+ <version>${jaxb.version}</version>
|
|
</dependency>
|
|
</dependency>
|
|
-
|
|
|
|
</dependencies>
|
|
</dependencies>
|
|
<build>
|
|
<build>
|
|
<finalName>tapestry</finalName>
|
|
<finalName>tapestry</finalName>
|
|
@@ -151,9 +153,9 @@ of testing facilities designed for use with TestNG (http://testng.org/), so it's
|
|
</repository>
|
|
</repository>
|
|
<!-- This repository is only needed when the Tapestry version is a preview release, rather
|
|
<!-- This repository is only needed when the Tapestry version is a preview release, rather
|
|
than a final release. -->
|
|
than a final release. -->
|
|
-<!-- <repository> -->
|
|
|
|
-<!-- <id>apache-staging</id> -->
|
|
|
|
-<!-- <url>https://repository.apache.org/content/groups/staging/</url> -->
|
|
|
|
-<!-- </repository> -->
|
|
|
|
|
|
+<!-- --><repository>
|
|
|
|
+ <id>apache-staging</id>
|
|
|
|
+ <url>https://repository.apache.org/content/groups/staging/</url>
|
|
|
|
+ </repository>
|
|
</repositories>
|
|
</repositories>
|
|
</project>
|
|
</project>
|