You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by sh...@apache.org on 2015/11/19 08:43:50 UTC

svn commit: r1715118 - in /manifoldcf/trunk: CHANGES.txt framework/jetty-runner/pom.xml pom.xml

Author: shinichiro
Date: Thu Nov 19 07:43:50 2015
New Revision: 1715118

URL: http://svn.apache.org/viewvc?rev=1715118&view=rev
Log:
Fix for CONNECTORS-1254

Modified:
    manifoldcf/trunk/CHANGES.txt
    manifoldcf/trunk/framework/jetty-runner/pom.xml
    manifoldcf/trunk/pom.xml

Modified: manifoldcf/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/CHANGES.txt?rev=1715118&r1=1715117&r2=1715118&view=diff
==============================================================================
--- manifoldcf/trunk/CHANGES.txt (original)
+++ manifoldcf/trunk/CHANGES.txt Thu Nov 19 07:43:50 2015
@@ -3,6 +3,9 @@ $Id$
 
 ======================= 2.3-dev =====================
 
+CONNECTORS-1254: Some Jetty dependencies are missing in jetty-runner.
+(Shinichiro Abe)
+
 CONNECTORS-1255: Ignore CheckObjectIDTest.
 (Shinichiro Abe)
 

Modified: manifoldcf/trunk/framework/jetty-runner/pom.xml
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/jetty-runner/pom.xml?rev=1715118&r1=1715117&r2=1715118&view=diff
==============================================================================
--- manifoldcf/trunk/framework/jetty-runner/pom.xml (original)
+++ manifoldcf/trunk/framework/jetty-runner/pom.xml Thu Nov 19 07:43:50 2015
@@ -260,6 +260,22 @@
       <artifactId>jetty-xml</artifactId>
       <version>${jetty.version}</version>
     </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.toolchain</groupId>
+      <artifactId>jetty-jsp-jdt</artifactId>
+      <version>${jetty-jsp-jdt.version}</version>
+      <exclusions>
+        <exclusion>
+          <groupId>*</groupId>
+          <artifactId>*</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.toolchain</groupId>
+      <artifactId>jetty-schemas</artifactId>
+      <version>${jetty-schemas.version}</version>
+    </dependency>
 
     <dependency>
       <groupId>org.slf4j</groupId>

Modified: manifoldcf/trunk/pom.xml
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/pom.xml?rev=1715118&r1=1715117&r2=1715118&view=diff
==============================================================================
--- manifoldcf/trunk/pom.xml (original)
+++ manifoldcf/trunk/pom.xml Thu Nov 19 07:43:50 2015
@@ -48,6 +48,7 @@
     <mysql.version>5.1.33</mysql.version>
     <hsqldb.version>2.3.2</hsqldb.version>
     <jetty.version>9.2.3.v20140905</jetty.version>
+    <jetty-jsp-jdt.version>2.3.3</jetty-jsp-jdt.version>
     <jetty-schemas.version>3.1.M0</jetty-schemas.version>
     <mail.version>1.4.5</mail.version>
     <activation.version>1.1.1</activation.version>