Fix runtime issue of not finding ant-launcher.

This commit is contained in:
Alexander Kurtakov 2010-08-31 09:56:30 +03:00
parent 582b3ca0bf
commit 2d0aea34db
2 changed files with 10 additions and 2 deletions

View File

@ -1,6 +1,6 @@
--- pom.xml.sav 2010-05-25 19:35:37.000000000 +0300 --- pom.xml.sav 2010-05-25 19:35:37.000000000 +0300
+++ pom.xml 2010-08-31 06:29:27.741235987 +0300 +++ pom.xml 2010-08-31 06:29:27.741235987 +0300
@@ -75,6 +75,16 @@ under the License. @@ -75,6 +75,21 @@ under the License.
<artifactId>ant-nodeps</artifactId> <artifactId>ant-nodeps</artifactId>
<version>1.8.1</version> <version>1.8.1</version>
</dependency> </dependency>
@ -13,6 +13,11 @@
+ <groupId>org.apache.maven</groupId> + <groupId>org.apache.maven</groupId>
+ <artifactId>maven-model</artifactId> + <artifactId>maven-model</artifactId>
+ <version>1.0</version> + <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-launcher</artifactId>
+ <version>1.8.1</version>
+ </dependency> + </dependency>
</dependencies> </dependencies>

View File

@ -1,6 +1,6 @@
Name: maven-antrun-plugin Name: maven-antrun-plugin
Version: 1.4 Version: 1.4
Release: 3%{?dist} Release: 4%{?dist}
Summary: Maven AntRun Plugin Summary: Maven AntRun Plugin
Group: Development/Libraries Group: Development/Libraries
@ -104,6 +104,9 @@ rm -rf %{buildroot}
%{_javadocdir}/%{name} %{_javadocdir}/%{name}
%changelog %changelog
* Tue Aug 31 2010 Alexander Kurtakov <akurtako@redhat.com> 1.4-4
- Fix runtime issue of not finding ant-launcher.
* Tue Aug 31 2010 Alexander Kurtakov <akurtako@redhat.com> 1.4-3 * Tue Aug 31 2010 Alexander Kurtakov <akurtako@redhat.com> 1.4-3
- Add patch to fix build. - Add patch to fix build.