Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5699 from dennishendriksen/feature/rowlevelsecurity
Browse files Browse the repository at this point in the history
Fix #4926 Building MOLGENIS with empty local Maven repository fails
fdlk authored Dec 5, 2016
2 parents 1fd059c + 64c568a commit faf998b
Showing 4 changed files with 25 additions and 15 deletions.
4 changes: 2 additions & 2 deletions molgenis-core-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "MOLGENIS",
"version": "1.22.2-ROW-LEVEL-SECURITY",
"version": "1.22.3-ROW-LEVEL-SECURITY",
"description": "Dependencies for the MOLGENIS UI",
"scripts": {
"watch": "webpack -d --watch",
@@ -80,4 +80,4 @@
"stage-0"
]
}
}
}
36 changes: 23 additions & 13 deletions molgenis-das/pom.xml
Original file line number Diff line number Diff line change
@@ -9,15 +9,6 @@
<artifactId>molgenis-das</artifactId>
<packaging>jar</packaging>

<repositories>
<repository>
<id>google-code-mydas</id>
<name>google-code-mydas</name>
<layout>default</layout>
<url>http://mydas.googlecode.com/svn/repository/</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>org.molgenis</groupId>
@@ -34,10 +25,24 @@
<artifactId>molgenis-data-elasticsearch</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>uk.ac.ebi.mydas</groupId>
<artifactId>mydas</artifactId>
<version>1.6.7</version>
<dependency>
<groupId>xmlpull</groupId>
<artifactId>xmlpull</artifactId>
<version>1.1.3.1</version>
</dependency>
<dependency>
<groupId>uk.ac.ebi.das</groupId>
<artifactId>jdas</artifactId>
<version>1.0.4</version>
<scope>system</scope>
<systemPath>${basedir}/src/main/resources/jdas-1.0.4.jar</systemPath>
</dependency>
<dependency>
<groupId>uk.ac.ebi.mydas</groupId>
<artifactId>mydas</artifactId>
<version>1.6.7</version>
<scope>system</scope>
<systemPath>${basedir}/src/main/resources/mydas-1.6.7.jar</systemPath>
<exclusions>
<exclusion>
<groupId>junit</groupId>
@@ -73,5 +78,10 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>xpp3</groupId>
<artifactId>xpp3</artifactId>
<version>1.1.3.4.O</version>
</dependency>
</dependencies>
</project>
Binary file added molgenis-das/src/main/resources/jdas-1.0.4.jar
Binary file not shown.
Binary file added molgenis-das/src/main/resources/mydas-1.6.7.jar
Binary file not shown.

0 comments on commit faf998b

Please sign in to comment.