You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@marmotta.apache.org by wi...@apache.org on 2013/07/22 12:45:42 UTC

git commit: assembled codemirror js files in the right order to avoid runtime errors (actual cause for MARMOTTA-275)

Updated Branches:
  refs/heads/develop 857c77b8f -> 3af07e3d1


assembled codemirror js files in the right order to avoid runtime errors (actual cause for MARMOTTA-275)


Project: http://git-wip-us.apache.org/repos/asf/incubator-marmotta/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-marmotta/commit/3af07e3d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-marmotta/tree/3af07e3d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-marmotta/diff/3af07e3d

Branch: refs/heads/develop
Commit: 3af07e3d166d8d75d5a0bd19c15b69178a3c5901
Parents: 857c77b
Author: Sergio Fernández <wi...@apache.org>
Authored: Mon Jul 22 12:26:07 2013 +0200
Committer: Sergio Fernández <wi...@apache.org>
Committed: Mon Jul 22 12:26:07 2013 +0200

----------------------------------------------------------------------
 extras/webjars/codemirror/pom.xml | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/3af07e3d/extras/webjars/codemirror/pom.xml
----------------------------------------------------------------------
diff --git a/extras/webjars/codemirror/pom.xml b/extras/webjars/codemirror/pom.xml
index 4498287..07e912b 100644
--- a/extras/webjars/codemirror/pom.xml
+++ b/extras/webjars/codemirror/pom.xml
@@ -14,12 +14,10 @@
         <webjar.version>2.24</webjar.version>
     </properties>
 
-
     <groupId>org.apache.marmotta.webjars</groupId>
     <artifactId>codemirror</artifactId>
     <packaging>jar</packaging>
 
-
     <build>
         <plugins>
             <plugin>
@@ -35,6 +33,11 @@
                         <configuration>
                             <sourceDirectory>${project.basedir}/src/main/resources</sourceDirectory>
                             <output>${project.build.outputDirectory}/META-INF/resources/webjars/${project.artifactId}/${webjar.version}/codemirror.js</output>
+                            <includes>
+                                <include>codemirror.js</include>
+                                <include>sparql.js</include>
+                                <include>ldpath.js</include>
+                            </includes>
                         </configuration>
                     </execution>
                     <execution>
@@ -63,4 +66,4 @@
         </resources>
     </build>
 
-</project>
\ No newline at end of file
+</project>