Merge pull request #8906 from sampada07/JAVA-626

JAVA-626: Split or move java-math module
This commit is contained in:
Josh Cummings 2020-03-24 23:20:24 -06:00 committed by GitHub
commit 3a358c5cb4
49 changed files with 13 additions and 49 deletions

View File

@ -1,6 +1,6 @@
## Java Math
=========
This module contains articles about math in Java.
## Core Java 8 Cookbooks and Examples - Part 2
### Relevant articles:
@ -10,9 +10,7 @@ This module contains articles about math in Java.
- [Calculate the Distance Between Two Points in Java](https://www.baeldung.com/java-distance-between-two-points)
- [Find the Intersection of Two Lines in Java](https://www.baeldung.com/java-intersection-of-two-lines)
- [Round Up to the Nearest Hundred](https://www.baeldung.com/java-round-up-nearest-hundred)
- [Calculate Percentage in Java](https://www.baeldung.com/java-calculate-percentage)
- [Convert Latitude and Longitude to a 2D Point in Java](https://www.baeldung.com/java-convert-latitude-longitude)
- [Debugging with Eclipse](https://www.baeldung.com/eclipse-debugging)
- [Matrix Multiplication in Java](https://www.baeldung.com/java-matrix-multiplication)
- [Calculating Logarithms in Java](https://www.baeldung.com/java-logarithms)
- [Finding Greatest Common Divisor in Java](https://www.baeldung.com/java-greatest-common-divisor)
- More articles: [[<-- prev]](/../core-java-lang-math)

View File

@ -2,14 +2,15 @@
<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>
<artifactId>java-math</artifactId>
<artifactId>core-java-lang-math-2</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>java-math</name>
<name>core-java-lang-math-2</name>
<parent>
<groupId>com.baeldung</groupId>
<artifactId>parent-modules</artifactId>
<version>1.0.0-SNAPSHOT</version>
<artifactId>parent-java</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../../parent-java</relativePath>
</parent>
<dependencies>

View File

@ -10,3 +10,7 @@
- [Basic Calculator in Java](https://www.baeldung.com/java-basic-calculator)
- [Overflow and Underflow in Java](https://www.baeldung.com/java-overflow-underflow)
- [Obtaining a Power Set of a Set in Java](https://www.baeldung.com/java-power-set-of-a-set)
- [Calculating Logarithms in Java](https://www.baeldung.com/java-logarithms)
- [Finding Greatest Common Divisor in Java](https://www.baeldung.com/java-greatest-common-divisor)
- [Calculate Percentage in Java](https://www.baeldung.com/java-calculate-percentage)
- More articles: [[<-- next]](/../core-java-lang-math-2)

View File

@ -76,6 +76,7 @@
<module>core-java-lang</module>
<module>core-java-lang-2</module>
<module>core-java-lang-math</module>
<module>core-java-lang-math-2</module>
<module>core-java-lang-oop</module>
<module>core-java-lang-oop-2</module>
<module>core-java-lang-oop-3</module>

View File

@ -1,8 +0,0 @@
## Java Math
This module contains articles about math in Java.
### Relevant articles:
- [Basic Calculator in Java](https://www.baeldung.com/basic-calculator-in-java)
- More articles: [[<-- prev]](/../java-math)

View File

@ -1,15 +0,0 @@
<?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">
<modelVersion>4.0.0</modelVersion>
<artifactId>java-math-2</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>java-math-2</name>
<parent>
<groupId>com.baeldung</groupId>
<artifactId>parent-modules</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
</project>

View File

@ -1,13 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n
</pattern>
</encoder>
</appender>
<root level="INFO">
<appender-ref ref="STDOUT" />
</root>
</configuration>

View File

@ -461,8 +461,6 @@
<module>javafx</module>
<module>java-jdi</module>
<module>java-lite</module>
<module>java-math</module>
<module>java-math-2</module> <!-- Added for BAEL-3506 -->
<module>java-numbers</module>
<module>java-numbers-2</module>
<module>java-numbers-3</module>
@ -974,8 +972,6 @@
<module>javafx</module>
<module>java-jdi</module>
<module>java-lite</module>
<module>java-math</module>
<module>java-math-2</module> <!-- Added for BAEL-3506 -->
<module>java-numbers</module>
<module>java-numbers-2</module>
<module>java-numbers-3</module>