You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by jm...@apache.org on 2014/09/21 22:35:59 UTC

[12/50] [abbrv] git commit: [flex-utilities] [refs/heads/master] - - Fixed some ClassNotFound Exceptions

- Fixed some ClassNotFound Exceptions


Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/d2f7b9cf
Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/d2f7b9cf
Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/d2f7b9cf

Branch: refs/heads/master
Commit: d2f7b9cf2019ee083be7bd0ba4074e877a537e9b
Parents: e749c88
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Mon Sep 1 22:03:39 2014 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Mon Sep 1 22:03:39 2014 +0200

----------------------------------------------------------------------
 FlexPMD/flex-pmd-java/flex-pmd-maven-plugin/pom.xml | 15 +++++----------
 FlexPMD/pom.xml                                     |  5 +++++
 2 files changed, 10 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/d2f7b9cf/FlexPMD/flex-pmd-java/flex-pmd-maven-plugin/pom.xml
----------------------------------------------------------------------
diff --git a/FlexPMD/flex-pmd-java/flex-pmd-maven-plugin/pom.xml b/FlexPMD/flex-pmd-java/flex-pmd-maven-plugin/pom.xml
index 049ef0c..639ff1e 100644
--- a/FlexPMD/flex-pmd-java/flex-pmd-maven-plugin/pom.xml
+++ b/FlexPMD/flex-pmd-java/flex-pmd-maven-plugin/pom.xml
@@ -74,42 +74,37 @@
             <type>zip</type>
             <classifier>resources</classifier>
             <scope>provided</scope>
-            <optional>false</optional>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.maven</groupId>
+            <artifactId>maven-core</artifactId>
+            <version>${maven-plugin-api.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.maven</groupId>
             <artifactId>maven-plugin-api</artifactId>
             <version>${maven-plugin-api.version}</version>
-            <type>jar</type>
-            <optional>false</optional>
         </dependency>
         <dependency>
             <groupId>org.apache.maven.reporting</groupId>
             <artifactId>maven-reporting-impl</artifactId>
             <version>${maven-reporting-impl.version}</version>
-            <type>jar</type>
-            <optional>false</optional>
         </dependency>
         <dependency>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-pmd-plugin</artifactId>
             <version>${maven-pmd-plugin.version}</version>
             <type>maven-plugin</type>
-            <optional>false</optional>
         </dependency>
         <dependency>
             <groupId>${project.parent.groupId}</groupId>
             <artifactId>flex-pmd-core</artifactId>
             <version>${project.parent.version}</version>
-            <type>jar</type>
-            <optional>false</optional>
         </dependency>
         <dependency>
             <groupId>${project.parent.groupId}</groupId>
             <artifactId>flex-pmd-ruleset</artifactId>
             <version>${project.parent.version}</version>
-            <type>jar</type>
-            <optional>false</optional>
         </dependency>
     </dependencies>
 

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/d2f7b9cf/FlexPMD/pom.xml
----------------------------------------------------------------------
diff --git a/FlexPMD/pom.xml b/FlexPMD/pom.xml
index 19173c4..f38e055 100644
--- a/FlexPMD/pom.xml
+++ b/FlexPMD/pom.xml
@@ -166,6 +166,11 @@ limitations under the License.
     <dependencyManagement>
         <dependencies>
             <dependency>
+                <groupId>org.apache.maven</groupId>
+                <artifactId>maven-core</artifactId>
+                <version>${maven-plugin-api.version}</version>
+            </dependency>
+            <dependency>
                 <groupId>pmd</groupId>
                 <artifactId>pmd</artifactId>
                 <version>${pmd.version}</version>