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/07/14 08:59:59 UTC

[myfaces] branch master updated: fixed POM warning

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

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


The following commit(s) were added to refs/heads/master by this push:
     new d6a3e1a  fixed POM warning
d6a3e1a is described below

commit d6a3e1a9f2cb263aacd574c2bf6be36c722ccd1d
Author: Thomas Andraschko <ta...@apache.org>
AuthorDate: Tue Jul 14 10:59:38 2020 +0200

    fixed POM warning
---
 api/pom.xml | 20 ++++----------------
 1 file changed, 4 insertions(+), 16 deletions(-)

diff --git a/api/pom.xml b/api/pom.xml
index a77211e..727507b 100644
--- a/api/pom.xml
+++ b/api/pom.xml
@@ -96,12 +96,10 @@
 
             <!-- compilation and compression of our javascripts -->
             <plugin>
-                <artifactId>myfaces-javascript-plugin</artifactId>
                 <groupId>org.apache.myfaces.buildtools</groupId>
-                <version>1.0.1</version>
+                <artifactId>myfaces-javascript-plugin</artifactId>
                 <extensions>true</extensions>
                 <executions>
-
                      <execution>
                         <id>compile</id>
                         <goals>
@@ -132,6 +130,7 @@
                             </excludes>
                         </configuration>
                     </execution>
+
                     <execution>
                         <id>compile-minimal</id>
                         <goals>
@@ -160,7 +159,6 @@
                             <outputDirectory>${basedir}/target/classes/META-INF/resources/myfaces/</outputDirectory>
                             <excludes>
                                 <exclude>**/myfaces/_impl/core/jsf-uncompressed.js</exclude>
-
                             </excludes>
                         </configuration>
                     </execution>
@@ -171,55 +169,45 @@
                             <goal>compress</goal>
                         </goals>
                         <phase>process-resources</phase>
-
                         <configuration>
                             <scripts>target/classes/META-INF/resources/javax.faces/</scripts>
                             <excludes>
                                 <exclude>jsf-uncompressed.js</exclude>
                                 <exclude>jsf-uncompressed-full.js</exclude>
-
                             </excludes>
                             <compressor>yahooUI</compressor>
-
                         </configuration>
                     </execution>
+
                     <execution>
                         <id>compress-extended</id>
                         <goals>
                             <goal>compress</goal>
                         </goals>
                         <phase>process-resources</phase>
-
                         <configuration>
                             <scripts>target/classes/META-INF/resources/myfaces/</scripts>
                             <excludes>
                                 <exclude>jsf-uncompressed.js</exclude>
                                 <exclude>jsf-uncompressed-full.js</exclude>
-
                             </excludes>
                             <compressor>yahooUI</compressor>
-
                         </configuration>
                     </execution>
 
-
-
-                <execution>
+                    <execution>
                         <id>compress-alternatives</id>
                         <goals>
                             <goal>compress</goal>
                         </goals>
                         <phase>process-resources</phase>
-
                         <configuration>
                             <scripts>target/classes/META-INF/internal-resources/javax.faces/</scripts>
                             <excludes>
                                 <exclude>jsf-uncompressed-full.js</exclude>
                                 <exclude>META-INF/**/*.js</exclude>
-
                             </excludes>
                             <compressor>yahooUI</compressor>
-
                         </configuration>
                     </execution>
                 </executions>