Skip to content

Commit

Permalink
Workarounds for building the project
Browse files Browse the repository at this point in the history
  • Loading branch information
igor-kupczynski committed Jul 27, 2016
1 parent b24a736 commit 436e20b
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 4 deletions.
11 changes: 11 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash -ex

# FIXME: this is a workaround for out-of-date transitive dependencies
# See: https://github.com/ISA-tools/linkedISA/issues/11
mvn dependency:get -Dartifact=xalan:xalan:2.4.0

mvn install:install-file -Dfile="$HOME/.m2/repository/xalan/xalan/2.4.0/xalan-2.4.0.jar" -DgroupId=xalan -DartifactId=xalan -Dversion=2.4 -Dpackaging=jar

# FIXME: some tests are failing
# See: https://github.com/ISA-tools/linkedISA/issues/12
mvn clean install -DskipTests=true
10 changes: 9 additions & 1 deletion isa-graphparser/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,20 @@

</repositories>



<dependencies>

<dependency>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
<version>2.4</version>
</dependency>

<dependency>
<groupId>org.isatools</groupId>
<artifactId>ISAcreator</artifactId>
<version>1.7.8</version>
<version>1.7.7</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
Expand Down
4 changes: 2 additions & 2 deletions linkedISA-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
<dependency>
<groupId>org.isatools</groupId>
<artifactId>ISacreator</artifactId>
<version>1.7.8</version>
<version>1.7.7</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -289,4 +289,4 @@

</distributionManagement>

</project>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -1095,4 +1095,4 @@ private void addComments(NodeWithComments nodeWithComments, int row, OWLNamedInd
}


}
}

0 comments on commit 436e20b

Please sign in to comment.