Skip to content
Snippets Groups Projects
Commit 2916f72b authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

Moved extensions to new module

parent eceac8c1
No related branches found
No related tags found
No related merge requests found
Showing
with 41 additions and 2 deletions
...@@ -40,6 +40,11 @@ ...@@ -40,6 +40,11 @@
<artifactId>BiopetCore</artifactId> <artifactId>BiopetCore</artifactId>
<version>${project.version}</version> <version>${project.version}</version>
</dependency> </dependency>
<dependency>
<groupId>nl.lumc.sasc</groupId>
<artifactId>BiopetExtensions</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies> </dependencies>
</project> </project>
\ No newline at end of file
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
* license; For commercial users or users who do not want to follow the AGPL * license; For commercial users or users who do not want to follow the AGPL
* license, please contact us to obtain a separate license. * license, please contact us to obtain a separate license.
*/ */
package nl.lumc.sasc.biopet.extensions package nl.lumc.sasc.biopet.core.extensions
import java.io.File import java.io.File
......
...@@ -18,7 +18,7 @@ package nl.lumc.sasc.biopet.core.summary ...@@ -18,7 +18,7 @@ package nl.lumc.sasc.biopet.core.summary
import java.io.File import java.io.File
import nl.lumc.sasc.biopet.core._ import nl.lumc.sasc.biopet.core._
import nl.lumc.sasc.biopet.extensions.Md5sum import nl.lumc.sasc.biopet.core.extensions.Md5sum
import scala.collection.mutable import scala.collection.mutable
......
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>Biopet</artifactId>
<groupId>nl.lumc.sasc</groupId>
<version>0.5.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>BiopetExtensions</artifactId>
<dependencies>
<dependency>
<groupId>nl.lumc.sasc</groupId>
<artifactId>BiopetCore</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.8</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest_2.10</artifactId>
<version>2.2.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment