Skip to content

Commit

Permalink
svn merge -c1814484 ^/tiles/framework/branches/TILES_3_0_X
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/tiles/framework/trunk@1814486 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
michaelsembwever committed Nov 7, 2017
1 parent 500ecaf commit 9051c57
Show file tree
Hide file tree
Showing 13 changed files with 64 additions and 40 deletions.
59 changes: 25 additions & 34 deletions assembly/pom.xml
Expand Up @@ -58,13 +58,6 @@
</configuration>
</plugin>
</plugins>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>2.5</version>
</extension>
</extensions>
</build>
<profiles>
<profile>
Expand All @@ -74,12 +67,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2-beta-4</version>
<version>3.1.0</version>
<executions>
<execution>
<id>make-assembly</id>
<goals>
<goal>attached</goal>
<goal>single</goal>
</goals>
<phase>package</phase>
</execution>
Expand All @@ -100,10 +93,32 @@
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>net.nicoulaj.maven.plugins</groupId>
<artifactId>checksum-maven-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<goals>
<goal>artifacts</goal>
</goals>
</execution>
</executions>
<configuration>
<attachChecksums>true</attachChecksums>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<configuration>
<ascDirectory>${project.build.directory}/..</ascDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.3</version>
<version>1.8</version>
<executions>
<execution>
<phase>deploy</phase>
Expand All @@ -127,26 +142,6 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>wagon-maven-plugin</artifactId>
<version>1.0-beta-4</version>
<executions>
<execution>
<phase>deploy</phase>
<goals>
<goal>upload</goal>
</goals>
<configuration>
<fromDir>${project.build.directory}/assemblies</fromDir>
<includes>**</includes>
<toDir>${project.version}</toDir>
<serverId>tiles.build</serverId>
<url>scp://people.apache.org/www/people.apache.org/builds/tiles</url>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
Expand All @@ -158,19 +153,16 @@
<dependency>
<groupId>org.apache.tiles</groupId>
<artifactId>tiles-api</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.apache.tiles</groupId>
<artifactId>tiles-core</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.apache.tiles</groupId>
<artifactId>tiles-servlet</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -203,7 +195,6 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>1.7.6</version>
<scope>runtime</scope>
</dependency>

Expand Down
3 changes: 2 additions & 1 deletion pom.xml
Expand Up @@ -171,7 +171,7 @@
<dependency>
<groupId>org.mvel</groupId>
<artifactId>mvel2</artifactId>
<version>2.0.11</version>
<version>2.3.2.Final</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
Expand Down Expand Up @@ -311,6 +311,7 @@
</build>

<properties>
<maven.javadoc.failOnError>false</maven.javadoc.failOnError> <!-- remove with master-8 -->
<tiles.osgi.symbolicName>org.apache.${project.artifactId}</tiles.osgi.symbolicName>
<tiles.osgi.export>org.apache.tiles.*;version=${project.version}</tiles.osgi.export>
<tiles.osgi.import>*</tiles.osgi.import>
Expand Down
10 changes: 5 additions & 5 deletions src/site/apt/dev/release.apt
Expand Up @@ -29,11 +29,11 @@ Prerequisites

To create a release you have to install:

* {{{http://www.oracle.com/technetwork/java/javase/overview/index.html}Java 7}}. If you are using a newer
* {{{http://www.oracle.com/technetwork/java/javase/overview/index.html}Java 9}}. If you are using a newer
version of Java <<change JAVA_HOME environment variable>>
when calling Maven, so it points to an instance of Java 7;
when calling Maven, so it points to an instance of Java 9;

* {{{http://maven.apache.org/}Maven 3.0.5+}};
* {{{http://maven.apache.org/}Maven 3.2.2+}};

* {{{http://www.gnupg.org/}GnuPG}};

Expand Down Expand Up @@ -135,7 +135,7 @@ mvn release:perform -Duser.name=YOUR_PEOPLE_APACHE_SSH_USER -Darguments="-Duser.
cd target/
svn co https://dist.apache.org/repos/dist/dev/tiles tiles-dist-dev
mkdir tiles-dist-dev/request/${version}
cp checkout/assembly/target/assemblies/* tiles-dist-dev/${version}/
cp checkout/assembly/target/assembly/* tiles-dist-dev/${version}/
svn add tiles-dist-dev/${version}
svn ci tiles-dist-dev/${version}
-----------------------------------
Expand Down Expand Up @@ -308,7 +308,7 @@ The 3.0.x series of the Apache Tiles framework has a minimum
requirement of the following specification versions:

* Java Servlet 2.5 and JavaServer Pages (JSP) 2.1
* Java Standard Edition (Java SE) 1.7
* Java Standard Edition (Java SE) 1.8

The release notes are available online at:

Expand Down
2 changes: 2 additions & 0 deletions tiles-api/pom.xml
Expand Up @@ -38,6 +38,8 @@

<properties>
<tiles.osgi.symbolicName>org.apache.tiles.api</tiles.osgi.symbolicName>
<!-- decrease this whenever possible -->
<checkstyle.maxAllowedViolations>5</checkstyle.maxAllowedViolations>
</properties>

<build>
Expand Down
2 changes: 2 additions & 0 deletions tiles-core/pom.xml
Expand Up @@ -38,6 +38,8 @@

<properties>
<tiles.osgi.symbolicName>org.apache.tiles.core</tiles.osgi.symbolicName>
<!-- decrease this whenever possible -->
<checkstyle.maxAllowedViolations>25</checkstyle.maxAllowedViolations>
</properties>

<build>
Expand Down
2 changes: 2 additions & 0 deletions tiles-extras/pom.xml
Expand Up @@ -38,6 +38,8 @@

<properties>
<tiles.osgi.symbolicName>org.apache.tiles.extras</tiles.osgi.symbolicName>
<!-- decrease this whenever possible -->
<checkstyle.maxAllowedViolations>21</checkstyle.maxAllowedViolations>
</properties>

<build>
Expand Down
2 changes: 2 additions & 0 deletions tiles-mvel/pom.xml
Expand Up @@ -37,6 +37,8 @@

<properties>
<tiles.osgi.symbolicName>org.apache.tiles.mvel</tiles.osgi.symbolicName>
<!-- decrease this whenever possible -->
<checkstyle.maxAllowedViolations>4</checkstyle.maxAllowedViolations>
</properties>

<build>
Expand Down
4 changes: 4 additions & 0 deletions tiles-template/pom.xml
Expand Up @@ -32,6 +32,10 @@
<groupId>org.apache.tiles</groupId>
<version>3.1-SNAPSHOT</version>
</parent>
<properties>
<!-- decrease this whenever possible -->
<checkstyle.maxAllowedViolations>2</checkstyle.maxAllowedViolations>
</properties>
<build>
<plugins>
<plugin>
Expand Down
4 changes: 4 additions & 0 deletions tiles-test-pom/tiles-test-alt/pom.xml
Expand Up @@ -31,6 +31,10 @@
<artifactId>tiles-test-alt</artifactId>
<name>Tiles - Test webapp alternate configuration</name>
<description>Alternate configuration for the test webapp.</description>
<properties>
<!-- decrease this whenever possible -->
<checkstyle.maxAllowedViolations>3</checkstyle.maxAllowedViolations>
</properties>

<build>
<plugins>
Expand Down
4 changes: 4 additions & 0 deletions tiles-test-pom/tiles-test-common/pom.xml
Expand Up @@ -33,6 +33,10 @@
<version>3.1-SNAPSHOT</version>
<name>Tiles - Test webapp common classes</name>
<description>Common classes between modules of the test webapp.</description>
<properties>
<!-- decrease this whenever possible -->
<checkstyle.maxAllowedViolations>2</checkstyle.maxAllowedViolations>
</properties>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
Expand Down
4 changes: 4 additions & 0 deletions tiles-test-pom/tiles-test-db/pom.xml
Expand Up @@ -31,6 +31,10 @@
<artifactId>tiles-test-db</artifactId>
<name>Tiles - Test webapp database configuration</name>
<description>Tiles configuration that uses a database.</description>
<properties>
<!-- decrease this whenever possible -->
<checkstyle.maxAllowedViolations>2</checkstyle.maxAllowedViolations>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.tiles</groupId>
Expand Down
4 changes: 4 additions & 0 deletions tiles-test-pom/tiles-test/pom.xml
Expand Up @@ -35,6 +35,10 @@
<name>Tiles - Apps - Test</name>
<description>Tiles Test web application: tests Tiles functionality.
</description>
<properties>
<!-- decrease this whenever possible -->
<checkstyle.maxAllowedViolations>8</checkstyle.maxAllowedViolations>
</properties>

<dependencies>
<dependency>
Expand Down
4 changes: 4 additions & 0 deletions tiles-velocity/pom.xml
Expand Up @@ -33,6 +33,10 @@
<packaging>jar</packaging>
<description>Velocity Support in Tiles</description>
<name>Tiles - Velocity Support</name>
<properties>
<!-- decrease this whenever possible -->
<checkstyle.maxAllowedViolations>1</checkstyle.maxAllowedViolations>
</properties>
<build>
<plugins>
<plugin>
Expand Down

0 comments on commit 9051c57

Please sign in to comment.