Skip to content

Commit

Permalink
added new dependency commons-math3 in version 3.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
astrapi69 committed Mar 7, 2019
1 parent 95da6c6 commit 1403114
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ ADDED:
- initial version of project
- new CHANGELOG.md file created
- new eclipse launch scripts created
- added new dependency commons-math3 in version 3.6.1

Notable links:
[keep a changelog](http://keepachangelog.com/en/1.0.0/) Don’t let your friends dump git logs into changelogs
19 changes: 16 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<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">
<modelVersion>4.0.0</modelVersion>

Expand Down Expand Up @@ -34,6 +35,8 @@
<jobject-evaluate.version>${jobject-extensions.version}</jobject-evaluate.version>
<!-- TEST-OBJECTS version -->
<test-objects.version>5.0.1</test-objects.version>
<!-- COMMONS-MATH3 version -->
<commons-math3.version>3.6.1</commons-math3.version>
</properties>

<scm>
Expand Down Expand Up @@ -68,13 +71,23 @@
<artifactId>test-objects</artifactId>
<version>${test-objects.version}</version>
</dependency>
<!-- COMMONS-MATH3 DEPENDENCY -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
<version>${commons-math3.version}</version>
</dependency>

</dependencies>

</dependencyManagement>

<dependencies>

<!-- COMMONS-MATH3 DEPENDENCY -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
</dependency>
<!-- MEANBEAN DEPENDENCY -->
<dependency>
<groupId>org.meanbean</groupId>
Expand All @@ -88,7 +101,7 @@
<artifactId>jobject-evaluate</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>de.alpharogroup</groupId>
<artifactId>test-objects</artifactId>
Expand Down

0 comments on commit 1403114

Please sign in to comment.