Skip to content

Commit 11b4cff

Browse files
committed
* fixed #11 remove JApplet and integrate SimulatedEvolutionApplet into SimulatedEvolutionTab extends JFrame
* fixed #13 add application properties as Java and yml File * fixed #14 remove ObjectRegistry
1 parent 7ca5a11 commit 11b4cff

File tree

1 file changed

+29
-14
lines changed

1 file changed

+29
-14
lines changed

pom.xml

Lines changed: 29 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<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">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45

56
<groupId>org.woehlke.computer.kurzweil</groupId>
@@ -8,19 +9,23 @@
89
<packaging>jar</packaging>
910

1011
<name>Cyclic Cellular Automaton (Demon)</name>
11-
<description>The cyclic cellular automaton is a cellular automaton rule developed by David Griffeath and studied by several other cellular automaton researchers.
12-
In this system, each cell remains unchanged until some neighboring cell has a modular value exactly one unit larger than that of the cell itself, at which point it copies its neighbor's value.
13-
One-dimensional cyclic cellular automata can be interpreted as systems of interacting particles, while cyclic cellular automata in higher dimensions exhibit complex spiraling behavior.
12+
<description>The cyclic cellular automaton is a cellular automaton rule developed by David Griffeath and studied by
13+
several other cellular automaton researchers.
14+
In this system, each cell remains unchanged until some neighboring cell has a modular value exactly one unit
15+
larger than that of the cell itself, at which point it copies its neighbor's value.
16+
One-dimensional cyclic cellular automata can be interpreted as systems of interacting particles, while cyclic
17+
cellular automata in higher dimensions exhibit complex spiraling behavior.
1418
</description>
15-
<url>https://woehlke.org/p/cyclic-cellular-automaton</url>
19+
<url>https://java.woehlke.org/cyclic-cellular-automaton</url>
1620
<inceptionYear>2013</inceptionYear>
1721

1822
<scm>
1923
<url>https://github.com/Computer-Kurzweil/cyclic-cellular-automaton.git</url>
2024
<connection>scm:git:[email protected]:Computer-Kurzweil/cyclic-cellular-automaton.git</connection>
21-
<developerConnection>scm:git:[email protected]:Computer-Kurzweil/cyclic-cellular-automaton.git</developerConnection>
22-
<tag>HEAD</tag>
23-
</scm>
25+
<developerConnection>scm:git:[email protected]:Computer-Kurzweil/cyclic-cellular-automaton.git
26+
</developerConnection>
27+
<tag>HEAD</tag>
28+
</scm>
2429

2530
<issueManagement>
2631
<url>https://github.com/Computer-Kurzweil/cyclic-cellular-automaton/issues/</url>
@@ -35,7 +40,7 @@
3540
<snapshotRepository>
3641
<id>snapshots</id>
3742
<name>tw-thinkpad-snapshots</name>
38-
<url>file://${user.home}/public_html/java/libs-release-local/</url>
43+
<url>file://${user.home}/public_html/java/libs-snapshots-local/</url>
3944
</snapshotRepository>
4045
<repository>
4146
<id>central</id>
@@ -264,7 +269,9 @@
264269
<version.lombok>1.18.24</version.lombok>
265270
<version.lombok-maven-plugin>1.18.20.0</version.lombok-maven-plugin>
266271

267-
<applicationMainClass>org.woehlke.computer.kurzweil.cyclic.cellular.automaton.CyclicCellularAutomatonApplication</applicationMainClass>
272+
<applicationMainClass>
273+
org.woehlke.computer.kurzweil.cyclic.cellular.automaton.CyclicCellularAutomatonApplication
274+
</applicationMainClass>
268275

269276
</properties>
270277

@@ -808,7 +815,9 @@
808815

809816
<build>
810817
<finalName>${project.artifactId}</finalName>
811-
<defaultGoal>clean dependency:resolve dependency:resolve-plugins dependency:sources install site site:deploy exec:java</defaultGoal>
818+
<defaultGoal>clean dependency:resolve dependency:resolve-plugins dependency:sources install site site:deploy
819+
exec:java
820+
</defaultGoal>
812821
<pluginManagement>
813822
<plugins>
814823
<plugin>
@@ -1024,7 +1033,9 @@
10241033
<groupId>org.codehaus.mojo</groupId>
10251034
<artifactId>exec-maven-plugin</artifactId>
10261035
<configuration>
1027-
<mainClass>org.woehlke.computer.kurzweil.cyclic.cellular.automaton.CyclicCellularAutomatonApplication</mainClass>
1036+
<mainClass>
1037+
org.woehlke.computer.kurzweil.cyclic.cellular.automaton.CyclicCellularAutomatonApplication
1038+
</mainClass>
10281039
</configuration>
10291040
</plugin>
10301041
<plugin>
@@ -1175,7 +1186,9 @@
11751186
</properties>
11761187
<build>
11771188
<finalName>${project.artifactId}</finalName>
1178-
<defaultGoal>clean dependency:resolve dependency:resolve-plugins dependency:sources install site site:deploy exec:java</defaultGoal>
1189+
<defaultGoal>clean dependency:resolve dependency:resolve-plugins dependency:sources install site
1190+
site:deploy exec:java
1191+
</defaultGoal>
11791192
</build>
11801193
</profile>
11811194

@@ -1189,7 +1202,9 @@
11891202
</properties>
11901203
<build>
11911204
<finalName>${project.artifactId}</finalName>
1192-
<defaultGoal>clean dependency:resolve dependency:resolve-plugins dependency:sources install site site:deploy</defaultGoal>
1205+
<defaultGoal>clean dependency:resolve dependency:resolve-plugins dependency:sources install site
1206+
site:deploy
1207+
</defaultGoal>
11931208
</build>
11941209
</profile>
11951210

0 commit comments

Comments
 (0)