Merge pull request #8906 from sampada07/JAVA-626
JAVA-626: Split or move java-math module
This commit is contained in:
commit
3a358c5cb4
|
@ -1,6 +1,6 @@
|
||||||
## Java Math
|
=========
|
||||||
|
|
||||||
This module contains articles about math in Java.
|
## Core Java 8 Cookbooks and Examples - Part 2
|
||||||
|
|
||||||
### Relevant articles:
|
### 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)
|
- [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)
|
- [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)
|
- [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)
|
- [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)
|
- [Debugging with Eclipse](https://www.baeldung.com/eclipse-debugging)
|
||||||
- [Matrix Multiplication in Java](https://www.baeldung.com/java-matrix-multiplication)
|
- [Matrix Multiplication in Java](https://www.baeldung.com/java-matrix-multiplication)
|
||||||
- [Calculating Logarithms in Java](https://www.baeldung.com/java-logarithms)
|
- More articles: [[<-- prev]](/../core-java-lang-math)
|
||||||
- [Finding Greatest Common Divisor in Java](https://www.baeldung.com/java-greatest-common-divisor)
|
|
|
@ -2,14 +2,15 @@
|
||||||
<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">
|
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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<artifactId>java-math</artifactId>
|
<artifactId>core-java-lang-math-2</artifactId>
|
||||||
<version>0.0.1-SNAPSHOT</version>
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
<name>java-math</name>
|
<name>core-java-lang-math-2</name>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>com.baeldung</groupId>
|
<groupId>com.baeldung</groupId>
|
||||||
<artifactId>parent-modules</artifactId>
|
<artifactId>parent-java</artifactId>
|
||||||
<version>1.0.0-SNAPSHOT</version>
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
|
<relativePath>../../parent-java</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
|
@ -10,3 +10,7 @@
|
||||||
- [Basic Calculator in Java](https://www.baeldung.com/java-basic-calculator)
|
- [Basic Calculator in Java](https://www.baeldung.com/java-basic-calculator)
|
||||||
- [Overflow and Underflow in Java](https://www.baeldung.com/java-overflow-underflow)
|
- [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)
|
- [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)
|
||||||
|
|
|
@ -76,6 +76,7 @@
|
||||||
<module>core-java-lang</module>
|
<module>core-java-lang</module>
|
||||||
<module>core-java-lang-2</module>
|
<module>core-java-lang-2</module>
|
||||||
<module>core-java-lang-math</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</module>
|
||||||
<module>core-java-lang-oop-2</module>
|
<module>core-java-lang-oop-2</module>
|
||||||
<module>core-java-lang-oop-3</module>
|
<module>core-java-lang-oop-3</module>
|
||||||
|
|
|
@ -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)
|
|
|
@ -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>
|
|
|
@ -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>
|
|
4
pom.xml
4
pom.xml
|
@ -461,8 +461,6 @@
|
||||||
<module>javafx</module>
|
<module>javafx</module>
|
||||||
<module>java-jdi</module>
|
<module>java-jdi</module>
|
||||||
<module>java-lite</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</module>
|
||||||
<module>java-numbers-2</module>
|
<module>java-numbers-2</module>
|
||||||
<module>java-numbers-3</module>
|
<module>java-numbers-3</module>
|
||||||
|
@ -974,8 +972,6 @@
|
||||||
<module>javafx</module>
|
<module>javafx</module>
|
||||||
<module>java-jdi</module>
|
<module>java-jdi</module>
|
||||||
<module>java-lite</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</module>
|
||||||
<module>java-numbers-2</module>
|
<module>java-numbers-2</module>
|
||||||
<module>java-numbers-3</module>
|
<module>java-numbers-3</module>
|
||||||
|
|
Loading…
Reference in New Issue