Skip to content

Commit

Permalink
Moved sources into sub project. Cleaned build.gradle files to bare mi…
Browse files Browse the repository at this point in the history
…nimum.
  • Loading branch information
Oliver-Loeffler committed Aug 1, 2020
1 parent e9ee7c3 commit c7f2ea2
Show file tree
Hide file tree
Showing 89 changed files with 8 additions and 76 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ plugins {
allprojects {

repositories {
mavenCentral()
mavenCentral()
}

apply plugin: 'java'
apply plugin: 'java-library'
apply plugin: 'com.github.hierynomus.license-base'

version = '0.0.5-SNAPSHOT'
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
30 changes: 6 additions & 24 deletions image-registration/build.gradle
Original file line number Diff line number Diff line change
@@ -1,37 +1,19 @@
/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Java Library project to get you started.
* For more details take a look at the Java Libraries chapter in the Gradle
* User Manual available at https://docs.gradle.org/6.5.1/userguide/java_library_plugin.html
*/

plugins {
// Apply the java-library plugin to add support for Java Library
id 'java-library'
}

repositories {
// Use jcenter for resolving dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
}

dependencies {
// This dependency is exported to consumers, that is to say found on their compile classpath.
api 'org.apache.commons:commons-math3:3.6.1'

// This dependency is used internally, and not exposed to consumers on their own compile classpath.
implementation 'com.google.guava:guava:29.0-jre'

// Use JUnit Jupiter API for testing.
implementation 'org.apache.commons:commons-math3:3.6.1'
implementation 'org.la4j:la4j:0.6.0'
implementation 'gov.nist.math.jama:gov.nist.math.jama:1.1.1'
implementation 'org.ejml:ejml-simple:0.39'

testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.2'

// Use JUnit Jupiter Engine for testing.
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.6.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.6.2'
}

test {
// Use junit platform for unit tests
useJUnitPlatform()
}
25 changes: 0 additions & 25 deletions jama-solver/build.gradle
Original file line number Diff line number Diff line change
@@ -1,37 +1,12 @@
/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Java Library project to get you started.
* For more details take a look at the Java Libraries chapter in the Gradle
* User Manual available at https://docs.gradle.org/6.5.1/userguide/java_library_plugin.html
*/

plugins {
// Apply the java-library plugin to add support for Java Library
id 'java-library'
}

repositories {
// Use jcenter for resolving dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
}

dependencies {
// This dependency is exported to consumers, that is to say found on their compile classpath.
api 'org.apache.commons:commons-math3:3.6.1'

// This dependency is used internally, and not exposed to consumers on their own compile classpath.
implementation 'com.google.guava:guava:29.0-jre'

// Use JUnit Jupiter API for testing.
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.2'

// Use JUnit Jupiter Engine for testing.
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.6.2'
}

test {
// Use junit platform for unit tests
useJUnitPlatform()
}
25 changes: 0 additions & 25 deletions solver-api/build.gradle
Original file line number Diff line number Diff line change
@@ -1,37 +1,12 @@
/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Java Library project to get you started.
* For more details take a look at the Java Libraries chapter in the Gradle
* User Manual available at https://docs.gradle.org/6.5.1/userguide/java_library_plugin.html
*/

plugins {
// Apply the java-library plugin to add support for Java Library
id 'java-library'
}

repositories {
// Use jcenter for resolving dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
}

dependencies {
// This dependency is exported to consumers, that is to say found on their compile classpath.
api 'org.apache.commons:commons-math3:3.6.1'

// This dependency is used internally, and not exposed to consumers on their own compile classpath.
implementation 'com.google.guava:guava:29.0-jre'

// Use JUnit Jupiter API for testing.
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.2'

// Use JUnit Jupiter Engine for testing.
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.6.2'
}

test {
// Use junit platform for unit tests
useJUnitPlatform()
}

0 comments on commit c7f2ea2

Please sign in to comment.