You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2014/05/21 00:01:25 UTC

[2/2] git commit: ISIS-776: fixing incompatibility between Reflections usage and the mvn antrun:run / jettyconsole war

ISIS-776: fixing incompatibility between Reflections usage and the mvn antrun:run / jettyconsole war

- Reflections does not expect to be given a .war file as a URL on the classpath, so instead rename to .jar.


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

Branch: refs/heads/master
Commit: b8d4afcf93a0a6880be64ba0d1d12ff69b456727
Parents: add5fff
Author: Dan Haywood <da...@haywood-associates.co.uk>
Authored: Tue May 20 22:55:42 2014 +0100
Committer: Dan Haywood <da...@haywood-associates.co.uk>
Committed: Tue May 20 22:55:42 2014 +0100

----------------------------------------------------------------------
 example/application/quickstart_wicket_restful_jdo/webapp/pom.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/isis/blob/b8d4afcf/example/application/quickstart_wicket_restful_jdo/webapp/pom.xml
----------------------------------------------------------------------
diff --git a/example/application/quickstart_wicket_restful_jdo/webapp/pom.xml b/example/application/quickstart_wicket_restful_jdo/webapp/pom.xml
index 1381579..9a3fc62 100644
--- a/example/application/quickstart_wicket_restful_jdo/webapp/pom.xml
+++ b/example/application/quickstart_wicket_restful_jdo/webapp/pom.xml
@@ -54,6 +54,7 @@
                         </goals>
                         <configuration>
                             <backgroundImage>${basedir}/src/main/jettyconsole/isis-banner.png</backgroundImage>
+                            <destinationFile>${project.build.directory}/${project.build.finalName}-jetty-console.jar</destinationFile>
                         </configuration>
                         <phase>package</phase>
                     </execution>
@@ -286,7 +287,7 @@
                             <tasks>
                                 <exec executable="java" failonerror="true">
                                     <arg value="-jar" />
-                                    <arg value="${project.build.directory}/${project.build.finalName}-jetty-console.war" />
+                                    <arg value="${project.build.directory}/${project.build.finalName}-jetty-console.jar" />
                                 </exec>
                             </tasks>
                         </configuration>