Author: gk
Date: Mon Oct 22 12:25:11 2018
New Revision: 1844547
URL: http://svn.apache.org/viewvc?rev=1844547&view=rev
Log:
- Update plugins with commons-parent-47
Added:
turbine/maven/turbine-parent/trunk/README.txt (with props)
Modified:
turbine/maven/turbine-parent/trunk/NOTICE.txt
turbine/maven/turbine-parent/trunk/pom.xml
Modified: turbine/maven/turbine-parent/trunk/NOTICE.txt
URL:
http://svn.apache.org/viewvc/turbine/maven/turbine-parent/trunk/NOTICE.txt?rev=1844547&r1=1844546&r2=1844547&view=diff
==============================================================================
--- turbine/maven/turbine-parent/trunk/NOTICE.txt (original)
+++ turbine/maven/turbine-parent/trunk/NOTICE.txt Mon Oct 22 12:25:11 2018
@@ -1,5 +1,26 @@
+--------------------------------------------------------------------------
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership. The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations
+ under the License.
+
+ $Id$
+--------------------------------------------------------------------------
+
Turbine Parent POM
-Copyright 2006-2016 The Apache Software Foundation
+Copyright 2006-2018 The Apache Software Foundation
This product includes software developed by
The Apache Software Foundation (http://www.apache.org/).
Added: turbine/maven/turbine-parent/trunk/README.txt
URL:
http://svn.apache.org/viewvc/turbine/maven/turbine-parent/trunk/README.txt?rev=1844547&view=auto
==============================================================================
--- turbine/maven/turbine-parent/trunk/README.txt (added)
+++ turbine/maven/turbine-parent/trunk/README.txt Mon Oct 22 12:25:11 2018
@@ -0,0 +1,38 @@
+--------------------------------------------------------------------------
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership. The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations
+ under the License.
+
+ $Id$
+--------------------------------------------------------------------------
+
+This is the parent for Turbine-Core, Site and most of Fulcrum components.
+
+USAGE
+
+- Parent module to align dependencies in Fulcrum nand Turbine
+
+- Based on last released commons parent versions
+
+- cft. http://svn.apache.org/repos/asf/commons/proper/commons-parent/trunk
+
+CAVEAT
+
+- Check turbine-parent-assembly module dependency, which overwrites Apache
module (still needed, 2017)
+
+RELEASE
+
+- Normally, this module could be released lazily.
Propchange: turbine/maven/turbine-parent/trunk/README.txt
------------------------------------------------------------------------------
svn:eol-style = native
Modified: turbine/maven/turbine-parent/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/turbine/maven/turbine-parent/trunk/pom.xml?rev=1844547&r1=1844546&r2=1844547&view=diff
==============================================================================
--- turbine/maven/turbine-parent/trunk/pom.xml (original)
+++ turbine/maven/turbine-parent/trunk/pom.xml Mon Oct 22 12:25:11 2018
@@ -22,7 +22,7 @@
<parent>
<groupId>org.apache</groupId>
<artifactId>apache</artifactId>
- <version>18</version>
+ <version>19</version>
</parent>
<groupId>org.apache.turbine</groupId>
<artifactId>turbine-parent</artifactId>
@@ -121,7 +121,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
- <version>${turbine.site.version}</version>
<configuration>
<!-- don't deploy site with maven-site-plugin -->
<skipDeploy>true</skipDeploy>
@@ -226,7 +225,6 @@
</plugin>
</plugins>
</build>
-
<reporting>
<!-- N.B. plugins defined here in the <reporting> section ignore what's
defined in <pluginManagement>
in the <build> section above, so we have to define the versions here.
-->
@@ -325,7 +323,7 @@
<!-- get test coverage for regression tests -->
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
- <version>2.6</version>
+ <version>2.7</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
@@ -382,7 +380,7 @@
<dependency>
<groupId>org.apache.turbine</groupId>
<artifactId>turbine-parent-assembly</artifactId>
- <version>1.0.0</version>
+ <version>1.0.1-SNAPSHOT</version>
</dependency>
</dependencies>
<!-- Disable Apache Parent POM built-in source assembly -->
@@ -469,26 +467,26 @@
<properties>
<!-- Default configuration for compiler source and target JVM -->
- <maven.compiler.source>1.6</maven.compiler.source>
- <maven.compiler.target>1.6</maven.compiler.target>
+ <maven.compiler.source>1.8</maven.compiler.source>
+ <maven.compiler.target>1.8</maven.compiler.target>
<!-- Compiler and surefire plugin settings for "java" profiles -->
<turbine.compiler.fork>false</turbine.compiler.fork>
- <turbine.compiler.compilerVersion>1.6</turbine.compiler.compilerVersion>
+ <turbine.compiler.compilerVersion>1.8</turbine.compiler.compilerVersion>
<turbine.compiler.javac>${JAVA_HOME}/bin/javac</turbine.compiler.javac>
<turbine.surefire.java>${JAVA_HOME}/bin/java</turbine.surefire.java>
<!-- Plugin versions (allows same value in reporting and build sections)
-->
- <turbine.surefire.version>2.19.1</turbine.surefire.version>
- <turbine.surefire-report.version>2.19.1</turbine.surefire-report.version>
- <turbine.javadoc.version>2.10.4</turbine.javadoc.version>
+ <turbine.surefire.version>2.22.0</turbine.surefire.version>
+ <turbine.surefire-report.version>2.22.0</turbine.surefire-report.version>
+ <turbine.javadoc.version>3.0.1</turbine.javadoc.version>
<turbine.rat.version>0.12</turbine.rat.version>
- <turbine.changes.version>2.12</turbine.changes.version>
- <turbine.jxr.version>2.5</turbine.jxr.version>
- <turbine.project-info.version>2.9</turbine.project-info.version>
- <turbine.wagon-ssh.version>2.10</turbine.wagon-ssh.version>
- <turbine.site.version>3.4</turbine.site.version>
- <turbine.findbugs.version>2.5.5</turbine.findbugs.version>
+ <turbine.changes.version>2.12.1</turbine.changes.version>
+ <turbine.jxr.version>3.0.0</turbine.jxr.version>
+ <turbine.project-info.version>3.0.0</turbine.project-info.version>
+ <turbine.wagon-ssh.version>3.1.0</turbine.wagon-ssh.version>
+ <turbine.site.version>3.7.1</turbine.site.version>
+ <turbine.findbugs.version>3.0.5</turbine.findbugs.version>
<!--
Encoding of Java source files: Make sure, that the compiler and
@@ -523,5 +521,4 @@
<test>**/*Test</test>
</properties>
-
-</project>
+</project>
\ No newline at end of file