You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ta...@apache.org on 2020/04/29 11:40:39 UTC

[myfaces] branch 3.0.x updated: fixed maven warnings

This is an automated email from the ASF dual-hosted git repository.

tandraschko pushed a commit to branch 3.0.x
in repository https://gitbox.apache.org/repos/asf/myfaces.git


The following commit(s) were added to refs/heads/3.0.x by this push:
     new e27b891  fixed maven warnings
e27b891 is described below

commit e27b891dc101552f86c857e566580d5e8902c07d
Author: Thomas Andraschko <ta...@apache.org>
AuthorDate: Wed Apr 29 13:40:32 2020 +0200

    fixed maven warnings
---
 api/pom.xml  |  1 +
 impl/pom.xml | 31 +++++++------------------------
 2 files changed, 8 insertions(+), 24 deletions(-)

diff --git a/api/pom.xml b/api/pom.xml
index 52ae83e..866e5ff 100644
--- a/api/pom.xml
+++ b/api/pom.xml
@@ -325,6 +325,7 @@
             <plugin>
                 <groupId>de.berlios.jsunit</groupId>
                 <artifactId>jsunit-maven2-plugin</artifactId>
+                <version>1.3</version>
                 <executions>
                     <!-- TODO currently deactivated -->
                     <!--execution>
diff --git a/impl/pom.xml b/impl/pom.xml
index cf19ac7..3b1f456 100644
--- a/impl/pom.xml
+++ b/impl/pom.xml
@@ -619,33 +619,22 @@
             </plugin>
 
 
-            <!-- generate a -tests.jar too -->
             <plugin>
                 <artifactId>maven-jar-plugin</artifactId>
                 <version>2.2</version>
+                <configuration>
+                    <archive>
+                        <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
+                    </archive>
+                </configuration>
+                <!-- generate a -tests.jar too -->
                 <executions>
                     <execution>
                         <goals>
                             <goal>test-jar</goal>
                         </goals>
-                      </execution>
+                    </execution>
                 </executions>
-                <configuration>
-                    <archive>
-                        <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
-                    </archive>
-                </configuration>
-            </plugin>
-
-            <!-- configure manifest.mf for jar -->
-            <plugin>
-                <artifactId>maven-jar-plugin</artifactId>
-                <version>2.2</version>
-                <configuration>
-                    <archive>
-                        <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
-                    </archive>
-                </configuration>
             </plugin>
 
             <!-- run test-cases -->
@@ -1109,12 +1098,6 @@
             <artifactId>myfaces-api</artifactId>
         </dependency>
 
-        <dependency>
-            <groupId>org.apache.myfaces.core</groupId>
-            <artifactId>myfaces-test</artifactId>
-            <version>${project.version}</version>
-            <scope>test</scope>
-        </dependency>
 
         <!-- this dependency will be packed together with the main artifact of this pom -->
         <!--