Skip to content

Commit

Permalink
Merge pull request #13 from igor-kupczynski/fix-the-build-process
Browse files Browse the repository at this point in the history
Workarounds for building the project
  • Loading branch information
agbeltran authored Feb 23, 2017
2 parents b24a736 + 5936a9f commit f273b7e
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 15 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
7 changes: 3 additions & 4 deletions isa-graphparser/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
<name>isa-graphparser</name>

<build>
<sourceDirectory>src/main</sourceDirectory>
<testSourceDirectory>src/test</testSourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -41,12 +39,13 @@

</repositories>

<dependencies>


<dependencies>
<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
13 changes: 3 additions & 10 deletions linkedISA-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,6 @@
<name>Apaches's Maven repository</name>
<url>https://repository.apache.org/content/repositories/releases/</url>
</repository>

<repository>
<id>Aduna repository</id>
<name>Sesame's Maven repository</name>
<url>http://repo.aduna-software.org/maven2/releases/</url>
</repository>

</repositories>

<dependencies>
Expand All @@ -76,8 +69,8 @@

<dependency>
<groupId>org.isatools</groupId>
<artifactId>ISacreator</artifactId>
<version>1.7.8</version>
<artifactId>ISAcreator</artifactId>
<version>1.7.7</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -289,4 +282,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 f273b7e

Please sign in to comment.