Skip to content

Commit

Permalink
Issue #48 Split Mandelbrot-Tab into Mandelbrot-Julia and Mandelbrot-Zoom
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaswoehlke committed Oct 11, 2020
1 parent ca730a8 commit 82187dc
Show file tree
Hide file tree
Showing 53 changed files with 14 additions and 4 deletions.
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<module>computer-kurzweil-app</module>
<module>research-and-education</module>
<module>single-apps</module>
<module>insourcing-mandelbrot-common</module>
</modules>

<name>Computer Kurzweil</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<relativePath>..</relativePath>
</parent>

<artifactId>insourcing-mandelbrot2julia</artifactId>
<artifactId>insourcing-mandelbrot-julia</artifactId>
<packaging>jar</packaging>

<name>single-apps :: insourcing :: Mandelbrot :: Julia</name>
Expand All @@ -20,7 +20,11 @@
</properties>

<dependencies>

<dependency>
<groupId>org.woehlke.computer.kurzweil</groupId>
<artifactId>insourcing-mandelbrot-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
Expand Down
6 changes: 5 additions & 1 deletion single-apps/insourcing/insourcing-mandelbrot-zoom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@
</properties>

<dependencies>

<dependency>
<groupId>org.woehlke.computer.kurzweil</groupId>
<artifactId>insourcing-mandelbrot-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
Expand Down
3 changes: 2 additions & 1 deletion single-apps/insourcing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
<modules>
<module>insourcing-cyclic-cellular-automaton</module>
<module>insourcing-diffusion-limited-aggregation</module>
<module>insourcing-mandelbrot2julia</module>
<module>insourcing-mandelbrot-common</module>
<module>insourcing-mandelbrot-julia</module>
<module>insourcing-mandelbrot-zoom</module>
<module>insourcing-simulated-evolution</module>
</modules>
Expand Down

0 comments on commit 82187dc

Please sign in to comment.